feat: add build:sandbox and build:all npm scripts (#274)

This commit is contained in:
Brandon Keiji 2025-05-07 14:46:47 +00:00 committed by GitHub
parent 739654bb25
commit 49b5db29b3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View file

@ -7,7 +7,9 @@
"packages/*"
],
"scripts": {
"build": "BUILD_SANDBOX=1 scripts/build.sh",
"build": "scripts/build.sh",
"build:sandbox": "scripts/build_sandbox.sh",
"build:all": "npm run build && npm run build:sandbox",
"clean": "scripts/clean.sh",
"test": "npm run test --workspaces",
"start": "NODE_ENV=development scripts/start.sh",