diff options
| author | Olcan <[email protected]> | 2025-06-08 16:36:52 -0700 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-06-08 16:36:52 -0700 |
| commit | 7e73f5755693576db5c7ff74e6e2622ac026a97d (patch) | |
| tree | 767d17637dd47dfe8ac206fe1844faf5370bd472 | |
| parent | d62dad5575a53b5bb8058509563502ca922a4fc5 (diff) | |
use -s flag (to skip npm install + build) for build_sandbox.sh when running via npm run build:all (#858)
| -rw-r--r-- | package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json index 04239d58..ff09cb3f 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "scripts": { "generate": "scripts/generate-git-commit-info.sh", "build": "scripts/build.sh", - "build:sandbox": "scripts/build_sandbox.sh", + "build:sandbox": "scripts/build_sandbox.sh -s", "build:all": "npm run build && npm run build:sandbox", "clean": "scripts/clean.sh", "prepare": "npm run bundle", |
