Skip to content

Commit

Permalink
Ignore specific files and folders publishing to NPM
Browse files Browse the repository at this point in the history
Users of `scratch-vm` do not need `playground` or `test` directories
installed as a npm package. If they need those directories they can
clone scratch-vm and do a local build. This saves downloading 42MB
(`playground`) and 4.4MB (`test`) when `npm install`ing `scratch-vm`.
  • Loading branch information
mzgoddard committed May 21, 2018
1 parent 82fd6f0 commit 5d22365
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .npmignore
@@ -1,2 +1,20 @@
# Development files
.eslintrc.js
/.editorconfig
/.eslintignore
/.gitattributes
/.github
/.travis.yml
/.tx
/test
/webpack.config.js

# Build created files
/playground

# Coverage created files
/.nyc_output
/coverage

# Exclude already built packages from testing with npm pack
/scratch-vm-*.{tar,tgz}

0 comments on commit 5d22365

Please sign in to comment.