ignore output of `npm pack`

This commit is contained in:
Michael Bradley, Jr 2018-07-06 13:56:16 -05:00
parent 4ae3f917ed
commit 1756661ae4
2 changed files with 3 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,11 +1,13 @@
dist dist
node_modules node_modules
package
.idea .idea
.vscode .vscode
.eslintrc.json .eslintrc.json
embark.min.js embark.min.js
embarkjs-*.tgz
TODO TODO
NOTES NOTES
npm-debug.log npm-debug.log

View File

@ -12,7 +12,7 @@
"build": "npm run clean && npm run build-babel && npm run build-webpack", "build": "npm run clean && npm run build-babel && npm run build-webpack",
"build-babel": "babel --ignore 'src/browser.js' --out-dir dist src", "build-babel": "babel --ignore 'src/browser.js' --out-dir dist src",
"build-webpack": "npm run webpack", "build-webpack": "npm run webpack",
"clean": "rimraf dist embark.min.js", "clean": "rimraf dist embark.min.js embarkjs-*.tgz",
"prepack": "npm run build", "prepack": "npm run build",
"server": "http-server", "server": "http-server",
"test": "echo \"Error: no test specified\" && exit 1", "test": "echo \"Error: no test specified\" && exit 1",