fix(sandbox): consolidate dev and prod sandbox (#273)

This commit is contained in:
Brandon Keiji
2025-05-07 14:23:13 +00:00
committed by GitHub
parent e634c8a384
commit 6e8967cdca
6 changed files with 113 additions and 146 deletions
+3 -3
View File
@@ -7,11 +7,11 @@
"packages/*"
],
"scripts": {
"build": "scripts/build.sh",
"build": "BUILD_SANDBOX=1 scripts/build.sh",
"clean": "scripts/clean.sh",
"test": "npm run test --workspaces",
"start": "scripts/start.sh",
"debug": "DEBUG=1 scripts/start.sh",
"start": "NODE_ENV=development scripts/start.sh",
"debug": "NODE_ENV=development DEBUG=1 scripts/start.sh",
"lint:fix": "eslint . --fix",
"lint": "eslint . --ext .ts,.tsx",
"typecheck": "tsc --noEmit --jsx react",