changed npm run production from parallel to sequential to avoid docs assets updating bug

pull/2188/head
REJack 2019-07-30 10:58:17 +02:00
parent 2e4e2b0572
commit 97168e80be
No known key found for this signature in database
GPG Key ID: 9F3976CC630CC888
1 changed files with 1 additions and 1 deletions

View File

@ -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",