chore: rename package/client build script command

This commit is contained in:
Danny Avila 2025-07-13 08:44:52 -04:00 committed by Marco Beretta
parent b6c7b0bc71
commit 2af4ca5b5c
No known key found for this signature in database
GPG key ID: D918033D8E74CC11
2 changed files with 3 additions and 2 deletions

View file

@ -40,8 +40,8 @@
"build:data-provider": "cd packages/data-provider && npm run build",
"build:api": "cd packages/api && npm run build",
"build:data-schemas": "cd packages/data-schemas && npm run build",
"build:client": "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 && cd client && 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:dev": "cd client && npm run dev",
"e2e": "playwright test --config=e2e/playwright.config.local.ts",