File tree 1 file changed +5
-2
lines changed 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 19
19
"lint" : " tslint --force --format verbose \" src/**/*.ts\" " ,
20
20
"prepublish" : " npm run build" ,
21
21
"prebuild" : " npm run clean && npm run format && npm run lint && echo Using TypeScript && tsc --version" ,
22
- "build" : " tsc --pretty" ,
22
+ "build" : " tsc --pretty && tsc -p tsconfig.test.json --pretty " ,
23
23
"test" : " npm run clean && tsc -p tsconfig.test.json --pretty && nyc --exclude \" **/*-spec.js\" ava \" **/*-spec.js\" --verbose" ,
24
24
"coverage" : " nyc report --reporter=lcov --reporter=text --reporter=html" ,
25
25
"watch" : " npm run build -- --watch" ,
26
- "watch:test" : " npm run test -- --watch"
26
+ "watch:test:ts" : " tsc -p tsconfig.test.json --pretty --watch" ,
27
+ "watch:test:ava" : " ava \" **/*-spec.js\" --verbose --watch" ,
28
+ "watch:test" : " run-p watch:test:ts watch:test:ava"
27
29
},
28
30
"dependencies" : {
29
31
},
30
32
"devDependencies" : {
31
33
"@types/node" : " ^8.0.0" ,
32
34
"ava" : " ^0.20.0" ,
33
35
"coveralls" : " ^2.0.0" ,
36
+ "npm-run-all" : " ^4.0.2" ,
34
37
"nyc" : " ^10.0.0" ,
35
38
"prettier" : " ^1.5.2" ,
36
39
"rimraf" : " ^2.0.0" ,
You can’t perform that action at this time.
0 commit comments