fix: Fix Mac app build step.

main
cpojer 2026-02-03 22:14:11 +09:00
parent 6b83d82e82
commit be4f7ef361
No known key found for this signature in database
GPG Key ID: C29F94A3201118AF
1 changed files with 3 additions and 3 deletions

View File

@ -110,10 +110,10 @@ merge_framework_machos() {
echo "📦 Ensuring deps (pnpm install)" echo "📦 Ensuring deps (pnpm install)"
(cd "$ROOT_DIR" && pnpm install --no-frozen-lockfile --config.node-linker=hoisted) (cd "$ROOT_DIR" && pnpm install --no-frozen-lockfile --config.node-linker=hoisted)
if [[ "${SKIP_TSC:-0}" != "1" ]]; then if [[ "${SKIP_TSC:-0}" != "1" ]]; then
echo "📦 Building JS (pnpm tsc)" echo "📦 Building JS (pnpm build)"
(cd "$ROOT_DIR" && pnpm tsc -p tsconfig.json --noEmit false) (cd "$ROOT_DIR" && pnpm build)
else else
echo "📦 Skipping TS build (SKIP_TSC=1)" echo "📦 Skipping JS build (SKIP_TSC=1)"
fi fi
if [[ "${SKIP_UI_BUILD:-0}" != "1" ]]; then if [[ "${SKIP_UI_BUILD:-0}" != "1" ]]; then