Skip to content

Commit

Permalink
Replace istanbul with nyc (#253)
Browse files Browse the repository at this point in the history
* Replace istanbul with nyc

istanbul is not maintained anymore

* Update .gitignore
  • Loading branch information
gnought authored and mcollina committed Jul 11, 2019
1 parent a8beee5 commit c0d5bd5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Expand Up @@ -10,8 +10,9 @@ pids
# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
# Coverage directory used by tools like nyc
coverage
.nyc_output

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -12,7 +12,7 @@
"typescript-test": "npm run typescript-compile-test && npm run typescript-compile-execute",
"test": "tape test/*.js test/*/*.js | faucet",
"ci": "npm run lint && npm run typescript-test && npm run coverage",
"coverage": "istanbul cover tape test/*.js test/*/*.js",
"coverage": "nyc --reporter=lcov tape test/*.js test/*/*.js",
"coveralls": "cat coverage/lcov.info | coveralls"
},
"pre-commit": [
Expand Down Expand Up @@ -46,9 +46,9 @@
"coveralls": "^3.0.4",
"duplexify": "^4.1.1",
"faucet": "0.0.1",
"istanbul": "^0.4.5",
"mqtt": "^3.0.0",
"mqtt-connection": "^4.0.0",
"nyc": "^14.1.1",
"pre-commit": "^1.2.2",
"standard": "^12.0.1",
"tape": "^4.10.2",
Expand Down

0 comments on commit c0d5bd5

Please sign in to comment.