|
@@ -15,9 +15,11 @@
|
|
|
"lint-fix": "eslint ./**/*.{ts,tsx} --fix",
|
|
|
"test": "npm run lint && jest",
|
|
|
"build": "npm run build-tsc && npm run build-extra && npm run build-webpack",
|
|
|
+ "build-viewer": "npm run build-tsc && npm run build-extra && npm run build-webpack-viewer",
|
|
|
"build-tsc": "tsc --incremental && tsc --build src/servers --incremental",
|
|
|
"build-extra": "cpx \"src/**/*.{scss,html,ico}\" lib/",
|
|
|
- "build-webpack": "webpack --mode production",
|
|
|
+ "build-webpack": "webpack --mode production --config ./webpack.config.production.js",
|
|
|
+ "build-webpack-viewer": "webpack --mode production --config ./webpack.config.viewer.js",
|
|
|
"watch": "concurrently -c \"green,green,gray,gray\" --names \"tsc,srv,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-servers\" \"npm:watch-extra\" \"npm:watch-webpack\"",
|
|
|
"watch-viewer": "concurrently -c \"green,gray,gray\" --names \"tsc,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack-viewer\"",
|
|
|
"watch-viewer-debug": "concurrently -c \"green,gray,gray\" --names \"tsc,ext,wpc\" --kill-others \"npm:watch-tsc\" \"npm:watch-extra\" \"npm:watch-webpack-viewer-debug\"",
|