From 7c2d5021dfadef924ff3ba6c21873fa3cdcf131a Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Thu, 19 Feb 2026 06:10:13 -0600 Subject: [PATCH] Script fix Signed-off-by: Andre Wanlin --- scripts/verify-plugin-directory.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/verify-plugin-directory.js b/scripts/verify-plugin-directory.js index 2754732a79..24c068b96e 100644 --- a/scripts/verify-plugin-directory.js +++ b/scripts/verify-plugin-directory.js @@ -31,7 +31,7 @@ const configSchema = z.object({ npmPackageName: z.string(), addedDate: z.coerce.date(), order: z.number().optional(), - state: z.enum(['active', 'inactive', 'archived']), + status: z.enum(['active', 'inactive', 'archived']), staleSince: z.coerce.date().optional(), }); @@ -73,6 +73,7 @@ async function main() { error, ); } + hasErrors = true; } } if (hasErrors) {