From 516887ed208efeef2f84253102b3132554e0f921 Mon Sep 17 00:00:00 2001 From: Callan Barrett Date: Mon, 2 Feb 2026 18:10:17 +0800 Subject: [PATCH] chore: update live-update command to use new CLI syntax - Replace deprecated apps:bundles:create with apps:liveupdates:upload - Add required --app-id and --channel flags - Remove deprecated live-update:list script --- AGENTS.md | 1 - package.json | 3 +-- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/AGENTS.md b/AGENTS.md index 7609741..b5268bf 100644 --- a/AGENTS.md +++ b/AGENTS.md @@ -26,7 +26,6 @@ Guidance for AI agents working with the Zaparoo App codebase. ### Live Updates - `pnpm live-update` - Build and push signed live update (requires `live-update-private.pem`) -- `pnpm live-update:list` - List deployed bundles --- diff --git a/package.json b/package.json index e36220f..f579149 100644 --- a/package.json +++ b/package.json @@ -12,8 +12,7 @@ "sync": "pnpm exec cap sync", "build:server": "tsc --noEmit -p tsconfig.build.json && vite build && cross-env NODE_ENV=development cap sync", "build:analyze": "tsc --noEmit -p tsconfig.build.json && vite build --mode analyze", - "live-update": "pnpm build:web && pnpm exec capawesome apps:bundles:create --path dist --private-key live-update-private.pem", - "live-update:list": "pnpm exec capawesome apps:bundles:list", + "live-update": "pnpm build:web && pnpm exec capawesome apps:liveupdates:upload --app-id e96c260c-3271-4895-bff0-de9f8ca4d05a --path dist --private-key live-update-private.pem --channel production", "lint": "eslint .", "lint:fix": "eslint . --fix", "format": "prettier --write .",