Skip to content

Commit

Permalink
istanbul => nyc
Browse files Browse the repository at this point in the history
  • Loading branch information
Vitaly Puzrin committed May 31, 2020
1 parent f00a3a9 commit edaea29
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.nyc_output
coverage
node_modules
*.log
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
------------------

- Added `SvgPath.from()` method.
- Dev deps bump.
- Use `nyc` for coverage reports.


2.2.3 / 2020-01-19
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
"repository": "fontello/svgpath",
"scripts": {
"lint": "eslint .",
"test": "npm run lint && mocha",
"coverage": "rm -rf coverage && istanbul cover _mocha",
"report-coveralls": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls && rm -rf ./coverage"
"test": "npm run lint && nyc mocha",
"coverage": "npm run test && nyc report --reporter html",
"report-coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"files": [
"index.js",
Expand All @@ -29,7 +29,7 @@
"benchmark": "^2.1.1",
"coveralls": "^3.0.3",
"eslint": "^7.1.0",
"istanbul": "^0.4.5",
"mocha": "^7.2.0"
"mocha": "^7.2.0",
"nyc": "^15.0.1"
}
}

0 comments on commit edaea29

Please sign in to comment.