From 97168e80be612dec8d65b4c143b9ed19a75702bb Mon Sep 17 00:00:00 2001 From: REJack Date: Tue, 30 Jul 2019 10:58:17 +0200 Subject: [PATCH] changed npm run production from parallel to sequential to avoid docs assets updating bug --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 16a684046..870a4822a 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "js": "npm-run-all --sequential js-compile js-minify", "js-compile": "rollup --config build/config/rollup.config.js --sourcemap", "js-minify": "terser --compress typeofs=false --mangle --comments \"/^!/\" --source-map \"content=dist/js/adminlte.js.map,includeSources,url=adminlte.min.js.map\" --output dist/js/adminlte.min.js dist/js/adminlte.js", - "production": "npm-run-all --parallel compile plugins", + "production": "npm-run-all --sequential compile plugins", "plugins": "node build/npm/Publish.js -v", "sync": "browser-sync start --server --files *.html pages/ dist/", "watch": "npm-run-all --parallel watch-css watch-js",