@@ -1,6 +1,7 @@
.awcache
.DS_Store
.idea
+.nyc_output
npm-debug.log
*.js.map
/coverage
.github
coverage
images
test/fixtures/compile-performance.js
@@ -58,8 +58,8 @@
"awesome-typescript-loader": "5.2.1",
"chai": "4.2.0",
"coveralls": "3.0.9",
- "istanbul": "1.1.0-alpha.1",
"mocha": "6.2.2",
+ "nyc": "^15.0.0",
"pjson": "1.0.9",
"pre-commit": "1.2.2",
"rimraf": "3.0.0",
@@ -2,6 +2,6 @@
yarn run test:removeTmpDir &&
yarn run test:compile &&
-$(yarn bin)/istanbul cover $(yarn bin)/_mocha -- test-tmp/test/index.spec.js --report lcovonly &&
+$(yarn bin)/nyc --reporter lcovonly $(yarn bin)/mocha -- test-tmp/test/index.spec.js &&
cat ./coverage/lcov.info | $(yarn bin)/coveralls &&
yarn run test:removeTmpDir
@@ -3,5 +3,5 @@
node test-tmp/test/dev/dev.js &&
-$(yarn bin)/istanbul cover $(yarn bin)/_mocha -- test-tmp/test/index.spec.js &&
+$(yarn bin)/nyc --reporter text-summary $(yarn bin)/mocha -- test-tmp/test/index.spec.js &&