Skip to content

Commit

Permalink
Fix wrong code coverage by ignoring all files excepts "index.js"
Browse files Browse the repository at this point in the history
  • Loading branch information
Sharaal committed Sep 13, 2021
1 parent 7dbfa9b commit 43d4a13
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,19 @@
"test": "test"
},
"files": [
"bin/migrate.js",
"src/**/*.js",
"bin/",
"src/",
"index.js",
"LICENSE",
"package.json",
"README.md",
"SECURITY.md"
],
"nyc": {
"include": "index.js",
"include": [
"bin/",
"src/"
],
"all": true,
"reporter": [
"text",
Expand Down

0 comments on commit 43d4a13

Please sign in to comment.