chore: 移除构建步骤并重命名CI工作流中的任务,增强CLI命令的错误处理

This commit is contained in:
sean
2025-06-01 14:57:01 +08:00
parent 3492f188a2
commit da404ef66b
2 changed files with 6 additions and 10 deletions

View File

@ -21,8 +21,7 @@
"test:coverageE2e": "jest --coverage --selectProjects e2e",
"test:ci": "jest --ci --coverage --watchAll=false --passWithNoTests || echo 'Tests completed with some issues'",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand",
"build": "node src/scripts/build.js",
"build:watch": "node src/scripts/build.js --watch",
"lint": "eslint src/ --no-error-on-unmatched-pattern || true",
"lint:fix": "eslint src/ --fix --no-error-on-unmatched-pattern || true",
"format": "echo 'Format skipped - no formatting restrictions'",
@ -33,7 +32,7 @@
"changeset:version": "changeset version",
"changeset:publish": "changeset publish",
"changeset:status": "changeset status",
"release": "pnpm run build && pnpm changeset publish",
"release": "pnpm changeset publish",
"release:snapshot": "pnpm changeset version --snapshot snapshot && pnpm changeset publish --tag snapshot",
"version:patch": "pnpm changeset add --type patch",
"version:minor": "pnpm changeset add --type minor",