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.
This commit is contained in:
mkorwel
2025-10-21 23:43:10 -07:00
parent b4f6191704
commit a7395df23a
+1 -1
View File
@@ -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": [