From 607109a04b95167c84fcb9fb49b9a98ec3c9e816 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Mon, 9 Feb 2026 00:20:48 +0100 Subject: [PATCH] refactor: more precise --- packages/cli/src/commands/publish.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/commands/publish.ts b/packages/cli/src/commands/publish.ts index 825f2d8..3f72659 100644 --- a/packages/cli/src/commands/publish.ts +++ b/packages/cli/src/commands/publish.ts @@ -164,7 +164,7 @@ export const publishCommand = command({ const postsToPublish: Array<{ post: BlogPost; action: "create" | "update"; - reason: string; + reason: "content changed" | "forced" | "new post" | "missing state"; }> = []; const draftPosts: BlogPost[] = []; -- 2.51.2