Skip to content

Commit f48baf7

Browse files
Use nyc CLI instead of old Istanbul (#163)
1 parent 252cc1e commit f48baf7

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ tmp/
44
package-lock.json
55
npm-debug.log*
66
.DS_Store
7+
.nyc_output/

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"scripts": {
88
"deps": "dependency-check . --entry transform.js . && dependency-check . --entry transform.js --extra --no-dev -i insert-css",
99
"test": "standard && npm run deps && tape test/index.js",
10-
"test:cov": "standard && npm run deps && NODE_ENV=test istanbul cover test/index.js",
10+
"test:cov": "standard && npm run deps && NODE_ENV=test nyc node test/index.js",
1111
"format": "standard --format"
1212
},
1313
"browser": {
@@ -55,9 +55,9 @@
5555
"dependency-check": "^2.5.1",
5656
"domify": "^1.4.0",
5757
"from2-string": "^1.1.0",
58-
"istanbul": "^0.4.5",
5958
"jsdom": "^9.4.2",
6059
"npm-check-updates": "^2.2.0",
60+
"nyc": "^11.9.0",
6161
"rimraf": "^2.5.1",
6262
"sheetify-cssnext": "^2.0.1",
6363
"standard": "^11.0.1",

0 commit comments

Comments
 (0)