Skip to content

Commit

Permalink
Build: Explicitly specify package.json files (#67)
Browse files Browse the repository at this point in the history
`eslint-release` expects `pkg.files` to be an array of relative paths
without any globs. `lib/.eslintrc.yml` shouldn't be included in the
bundle, so it's necessary to specify individual paths instead of just
`lib`.
  • Loading branch information
btmills committed Apr 30, 2017
1 parent 8d5ae99 commit c5e9d67
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,9 @@
},
"main": "index.js",
"files": [
"lib/*.js",
"index.js",
"LICENSE",
"README.md"
"lib/index.js",
"lib/processor.js"
],
"devDependencies": {
"chai": "^3.0.0",
Expand Down

0 comments on commit c5e9d67

Please sign in to comment.