Skip to content

Commit

Permalink
test: replace nyc with c8 (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
yoshinorin authored Sep 12, 2022
1 parent e1c9f2f commit e1f6246
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ node_modules/
tmp/
*.log
.idea/
.nyc_output/
coverage/
package-lock.json
dist
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"clean": "tsc -b --clean",
"eslint": "eslint .",
"test": "mocha test/index.js --require ts-node/register",
"test-cov": "nyc --reporter=lcovonly npm run test"
"test-cov": "c8 --reporter=lcovonly npm run test"
},
"files": [
"dist/**"
Expand Down Expand Up @@ -39,14 +39,14 @@
"@types/node": "^18.7.16",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"c8": "^7.12.0",
"chai": "^4.3.6",
"eslint": "^8.23.0",
"eslint-config-hexo": "^5.0.0",
"eslint-plugin-import": "^2.26.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"typescript": "^4.8.3",
"ts-node": "^10.9.1"
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"engines": {
"node": ">=14"
Expand Down

0 comments on commit e1f6246

Please sign in to comment.