From 843bbc973a86229fe75a021032b816890342d500 Mon Sep 17 00:00:00 2001 From: Frank Date: Wed, 4 Feb 2026 20:56:34 -0500 Subject: [PATCH] wip: zen --- packages/console/core/package.json | 6 +++--- packages/console/core/script/update-models.ts | 6 ++---- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/packages/console/core/package.json b/packages/console/core/package.json index b6f2a8e90..3f6994701 100644 --- a/packages/console/core/package.json +++ b/packages/console/core/package.json @@ -25,9 +25,9 @@ "db": "sst shell drizzle-kit", "db-dev": "sst shell --stage dev -- drizzle-kit", "db-prod": "sst shell --stage production -- drizzle-kit", - "shell": "sst shell -- bun", - "shell-dev": "sst shell --stage dev -- bun", - "shell-prod": "sst shell --stage production -- bun", + "shell": "sst shell", + "shell-dev": "sst shell --stage dev", + "shell-prod": "sst shell --stage production", "update-models": "script/update-models.ts", "promote-models-to-dev": "script/promote-models.ts dev", "promote-models-to-prod": "script/promote-models.ts production", diff --git a/packages/console/core/script/update-models.ts b/packages/console/core/script/update-models.ts index d37c6a9aa..095c4aba8 100755 --- a/packages/console/core/script/update-models.ts +++ b/packages/console/core/script/update-models.ts @@ -17,10 +17,8 @@ const oldValues = Array.from({ length: PARTS }, (_, i) => { ?.split("=") .slice(1) .join("=") - // TODO - //if (!value) throw new Error(`ZEN_MODELS${i + 1} not found`) - //return value - return value ?? "" + if (!value) throw new Error(`ZEN_MODELS${i + 1} not found`) + return value }) // store the prettified json to a temp file