Browse Source

Fix coverage

master
Luke Childs 2 weeks ago
parent
commit
05564531ad
  1. 1
      .gitignore
  2. 2155
      package-lock.json
  3. 6
      package.json

1
.gitignore

@ -2,3 +2,4 @@ node_modules
.nyc_output .nyc_output
npm-debug.log npm-debug.log
yarn.lock yarn.lock
coverage

2155
package-lock.json

File diff suppressed because it is too large

6
package.json

@ -8,8 +8,8 @@
}, },
"scripts": { "scripts": {
"bench": "node bench/index.js", "bench": "node bench/index.js",
"test": "xo && nyc ava", "test": "xo && c8 ava",
"coverage": "nyc report --reporter=text-lcov | coveralls" "coverage": "c8 report --all --reporter text --reporter html | coveralls"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
@ -29,8 +29,8 @@
"homepage": "https://github.com/lukechilds/vainjs#readme", "homepage": "https://github.com/lukechilds/vainjs#readme",
"devDependencies": { "devDependencies": {
"ava": "^1.4.1", "ava": "^1.4.1",
"c8": "^10.1.2",
"coveralls": "^3.0.3", "coveralls": "^3.0.3",
"nyc": "^14.1.0",
"pretty-ms": "^5.0.0", "pretty-ms": "^5.0.0",
"xo": "^0.24.0" "xo": "^0.24.0"
}, },

Loading…
Cancel
Save