From 1756661ae466acdaf4bb1e3cb2fc8b18b7186c17 Mon Sep 17 00:00:00 2001 From: "Michael Bradley, Jr" Date: Fri, 6 Jul 2018 13:56:16 -0500 Subject: [PATCH] ignore output of `npm pack` --- .gitignore | 2 ++ package.json | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 306f5c4..aabc2ec 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,13 @@ dist node_modules +package .idea .vscode .eslintrc.json embark.min.js +embarkjs-*.tgz TODO NOTES npm-debug.log diff --git a/package.json b/package.json index 9946208..11f357f 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "build": "npm run clean && npm run build-babel && npm run build-webpack", "build-babel": "babel --ignore 'src/browser.js' --out-dir dist src", "build-webpack": "npm run webpack", - "clean": "rimraf dist embark.min.js", + "clean": "rimraf dist embark.min.js embarkjs-*.tgz", "prepack": "npm run build", "server": "http-server", "test": "echo \"Error: no test specified\" && exit 1",