Compare commits

...

4 Commits

Author SHA1 Message Date
b0dddd48a2 1.0.5 2018-08-04 16:04:12 +02:00
65dda322c5 fix(ci): switch to https for cloning ci dependencies 2018-08-04 16:04:11 +02:00
8db6e5e6f1 1.0.4 2018-08-04 15:55:49 +02:00
d1e60ad4ab fix(ci): remove globally required tools 2018-08-04 15:55:48 +02:00
3 changed files with 4 additions and 7 deletions

View File

@ -1,9 +1,6 @@
{ {
"npmci": { "npmci": {
"npmGlobalTools": [ "npmGlobalTools": [],
"@gitzone/npmts",
"ts-node"
],
"npmAccessLevel": "public" "npmAccessLevel": "public"
} }
} }

2
package-lock.json generated
View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/tstest", "name": "@pushrocks/tstest",
"version": "1.0.3", "version": "1.0.5",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View File

@ -1,6 +1,6 @@
{ {
"name": "@pushrocks/tstest", "name": "@pushrocks/tstest",
"version": "1.0.3", "version": "1.0.5",
"private": false, "private": false,
"description": "a test utility to run tests that match test/**/*.ts", "description": "a test utility to run tests that match test/**/*.ts",
"main": "dist/index.js", "main": "dist/index.js",
@ -12,7 +12,7 @@
}, },
"scripts": { "scripts": {
"test": "(npm run prepareTest && npm run tstest && npm run cleanUp)", "test": "(npm run prepareTest && npm run tstest && npm run cleanUp)",
"prepareTest": "git clone git@gitlab.com:sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install", "prepareTest": "git clone https://gitlab.com/sandboxzone/sandbox-npmts.git .nogit/sandbox-npmts && cd .nogit/sandbox-npmts && npm install",
"tstest": "cd .nogit/sandbox-npmts && node ../../cli.ts.js test/", "tstest": "cd .nogit/sandbox-npmts && node ../../cli.ts.js test/",
"cleanUp": "rm -rf .nogit/sandbox-npmts", "cleanUp": "rm -rf .nogit/sandbox-npmts",
"format": "(gitzone format)", "format": "(gitzone format)",