always run wca for backoffice build

This commit is contained in:
Jacob Overgaard
2023-03-24 12:48:19 +01:00
parent 0660e4031d
commit 38e64ad91e
2 changed files with 1 additions and 3 deletions

View File

@@ -38,8 +38,6 @@ jobs:
node-version: 18
cache: 'npm'
- run: npm ci
- run: npm run wc-analyze
- run: npm run wc-analyze:vscode
- run: npm run build:libs
- uses: actions/upload-artifact@v3
with:

View File

@@ -28,7 +28,7 @@
"scripts": {
"dev": "vite",
"build": "tsc && vite build --mode staging",
"build:libs": "rollup -c rollup-libs.config.js && node utils/move-libs.js",
"build:libs": "npm run wc-analyze && npm run wc-analyze:vscode && rollup -c rollup-libs.config.js && node utils/move-libs.js",
"build:for:static": "tsc && vite build",
"build:for:cms": "tsc && vite build -c vite.cms.config.ts && npm run build:libs",
"build:for:cms:watch": "vite build -c vite.cms.config.ts --watch",