diff options
| author | Luke Parker <[email protected]> | 2026-02-24 20:25:15 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-24 20:25:15 +1000 |
| commit | 3201a7d34b03210f108e6caf49f20260d531a1a6 (patch) | |
| tree | 8516d7eff413b16ac21d0e3a64af03afd3ea9c45 | |
| parent | de796d9a00544001fe196d9a3068ea241165293a (diff) | |
| download | opencode-3201a7d34b03210f108e6caf49f20260d531a1a6.tar.gz opencode-3201a7d34b03210f108e6caf49f20260d531a1a6.zip | |
fix(win32): add bun prefix to console app build scripts (#14884)
| -rw-r--r-- | packages/console/app/package.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/console/app/package.json b/packages/console/app/package.json index 904aeadd8..395feeb4a 100644 --- a/packages/console/app/package.json +++ b/packages/console/app/package.json @@ -7,7 +7,7 @@ "typecheck": "tsgo --noEmit", "dev": "vite dev --host 0.0.0.0", "dev:remote": "VITE_AUTH_URL=https://auth.dev.opencode.ai VITE_STRIPE_PUBLISHABLE_KEY=pk_test_51RtuLNE7fOCwHSD4mewwzFejyytjdGoSDK7CAvhbffwaZnPbNb2rwJICw6LTOXCmWO320fSNXvb5NzI08RZVkAxd00syfqrW7t bun sst shell --stage=dev bun dev", - "build": "./script/generate-sitemap.ts && vite build && ../../opencode/script/schema.ts ./.output/public/config.json", + "build": "bun ./script/generate-sitemap.ts && vite build && bun ../../opencode/script/schema.ts ./.output/public/config.json", "start": "vite start" }, "dependencies": { |
