fix: correct frontend:ci script to include client package build

This commit is contained in:
Danny Avila 2025-07-16 00:12:51 -04:00 committed by Marco Beretta
parent 55bda03d19
commit e2b1cc607f
No known key found for this signature in database
GPG key ID: D918033D8E74CC11

View file

@ -42,7 +42,7 @@
"build:data-schemas": "cd packages/data-schemas && npm run build",
"build:client-package": "cd packages/client && npm run build",
"frontend": "npm run build:data-provider && npm run build:data-schemas && npm run build:api && npm run build:client-package && cd client && npm run build",
"frontend:ci": "npm run build:data-provider && cd client && npm run build:ci",
"frontend:ci": "npm run build:data-provider && npm run build:client-package && cd client && npm run build:ci",
"frontend:dev": "cd client && npm run dev",
"e2e": "playwright test --config=e2e/playwright.config.local.ts",
"e2e:headed": "playwright test --config=e2e/playwright.config.local.ts --headed",