Skip to content

Commit

Permalink
explicitly whitelist files in package.json
Browse files Browse the repository at this point in the history
Since we are adding lots of generated files, and especially
since those include the self-coverage files that will run
much slower, we need to be explicit about which files are included.
  • Loading branch information
jamestalmage committed Dec 11, 2015
1 parent 8a05866 commit c554384
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@
"bin": {
"nyc": "./bin/nyc.js"
},
"files": [
"index.js",
"bin/*.js",
"lib/*.js",
"!**/*covered.js"
],
"config": {
"nyc": {
"exclude": [
Expand Down

0 comments on commit c554384

Please sign in to comment.