move command to build script

This commit is contained in:
Mads Rasmussen
2024-02-12 22:26:18 +01:00
parent f92c6591cd
commit c66c80433a

View File

@@ -112,10 +112,10 @@
"auth:test:e2e": "npx playwright test --config apps/auth/",
"backoffice:test:e2e": "npx playwright test",
"build-storybook": "npm run wc-analyze && storybook build",
"build:for:cms": "npm run build && npm run package:validate && node ./devops/build/copy-to-cms.js",
"build:for:cms": "npm run build && node ./devops/build/copy-to-cms.js",
"build:for:static": "vite build",
"build:vite": "tsc && vite build --mode staging",
"build": "tsc --project ./src/tsconfig.build.json && rollup -c ./src/rollup.config.js && node ./devops/build/create-module-list.js",
"build": "tsc --project ./src/tsconfig.build.json && rollup -c ./src/rollup.config.js && node ./devops/build/create-module-list.js && npm run package:validate",
"check": "npm run lint:errors && npm run compile && npm run build-storybook && npm run generate:jsonschema:dist",
"compile": "tsc",
"dev": "vite",