From a7395df23aa6b411cac4d7040f0db8fa944262e8 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Tue, 21 Oct 2025 23:43:10 -0700 Subject: [PATCH] refactor(cli): Remove redundant generate from workspace test:ci script Removes the 'npm run generate' command from the 'test:ci' script in 'packages/cli/package.json'. This step was redundant because the root 'test:ci' script now runs 'npm run build' (which includes 'generate') before executing the workspace tests. --- packages/cli/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/package.json b/packages/cli/package.json index b17815d9dc..a562ac22cc 100644 --- a/packages/cli/package.json +++ b/packages/cli/package.json @@ -18,7 +18,7 @@ "lint": "eslint . --ext .ts,.tsx", "format": "prettier --write .", "test": "vitest run -- ", - "test:ci": "npm run generate && vitest run", + "test:ci": "vitest run", "typecheck": "tsc --noEmit" }, "files": [