From c535bb21c9fec3533688dd8aa48d283e54579106 Mon Sep 17 00:00:00 2001 From: Evilebot Tnawi Date: Wed, 15 May 2019 21:27:08 +0300 Subject: [PATCH] fix: do not include config files in dist (#1883) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d85aaaa628..c6c862ac6e 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "test": "npm run test:coverage", "pretest": "npm run lint", "prepare": "rimraf ./ssl/*.pem && npm run -s transpile:index && npm run -s build:live && npm run -s build:index && npm run -s build:sockjs", - "transpile:index": "babel client-src/default --out-dir client --ignore *.config.js", + "transpile:index": "babel client-src/default --out-dir client --ignore './client-src/default/*.config.js'", "build:index": "webpack ./client-src/default/index.js -o client/index.bundle.js --color --config client-src/default/webpack.config.js", "build:live": "webpack ./client-src/live/index.js -o client/live.bundle.js --color --config client-src/live/webpack.config.js", "build:sockjs": "webpack ./client-src/sockjs/index.js -o client/sockjs.bundle.js --color --config client-src/sockjs/webpack.config.js",