Try to make travis happy (again)

This commit is contained in:
Godzil 2017-12-27 05:16:58 +01:00
parent 8060b1b73b
commit 621df26b58
2 changed files with 2 additions and 2 deletions

View File

@ -9,5 +9,5 @@ node_js:
before_install: before_install:
- npm install --only=dev - npm install --only=dev
script: script:
- npm run prepare - npm run build
- npm test - npm test

View File

@ -39,7 +39,7 @@
"typescript": "^2.6.2" "typescript": "^2.6.2"
}, },
"scripts": { "scripts": {
"prepare": "tsc", "build": "tsc",
"test": "tslint -c ./tslint.json --project ./tsconfig.json ./src/**/*.ts", "test": "tslint -c ./tslint.json --project ./tsconfig.json ./src/**/*.ts",
"start": "node ./bin/crunchy" "start": "node ./bin/crunchy"
}, },