From 288a196e73842182453842fc4ce0fc75fa75f4cc Mon Sep 17 00:00:00 2001 From: peter Date: Mon, 19 Aug 2019 17:08:24 +0200 Subject: [PATCH] fix build --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7403459..83d80df 100644 --- a/package.json +++ b/package.json @@ -5,8 +5,8 @@ "scripts": { "tsc": "tsc", "start": "npm run build; node dist/FrontblockAdmin.js", - "build": "npm run clean; npm run build-backend; npm run webpack", - "build-backend": "tsc; webpack --display-error-details --config src/backend/webpack.prod.js --progress --colors;", + "build": "npm run clean; npm run build-backend", + "build-backend": "tsc; npm run webpack", "build-frontend": "npm run build-dashboard", "build-dashboard": "git submodule init && git submodule update --merge; cd src/frontend/dashboard; npm i && npm run build; cp -r dist/* ../../../static", "build-widget": "rollup -c src/frontend/widget/rollup.config.js; mkdir -p plugins/PluginManager; cp FrontendPlugin.js plugins/PluginManager",