mirror of
https://github.com/Lydanne/spaceflow.git
synced 2026-03-11 19:52:45 +08:00
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"$schema": "./config-schema.json",
|
|
"review": {
|
|
"references": ["./references"],
|
|
"includes": ["*/**/*.ts", "!*/**/*.spec.*", "!*/**/*.config.*"],
|
|
"generateDescription": true,
|
|
"autoUpdatePrTitle": true,
|
|
"lineComments": true,
|
|
"verifyFixes": true,
|
|
"analyzeDeletions": false,
|
|
"deletionAnalysisMode": "open-code",
|
|
"concurrency": 1,
|
|
"retries": 3,
|
|
"retryDelay": 1000
|
|
},
|
|
"dependencies": {
|
|
"@spaceflow/ci-shell": "link:./commands/ci-shell",
|
|
"@spaceflow/ci-scripts": "link:./commands/ci-scripts",
|
|
"@spaceflow/review": "link:./commands/review",
|
|
"@spaceflow/publish": "link:./commands/publish"
|
|
},
|
|
"support": ["claudeCode"],
|
|
"publish": {
|
|
"monorepo": { "enabled": true, "propagateDeps": true },
|
|
"changelog": {
|
|
"preset": {
|
|
"type": [
|
|
{ "type": "feat", "section": "新特性" },
|
|
{ "type": "fix", "section": "修复BUG" },
|
|
{ "type": "perf", "section": "性能优化" },
|
|
{ "type": "refactor", "section": "代码重构" },
|
|
{ "type": "docs", "section": "文档更新" },
|
|
{ "type": "style", "section": "代码格式" },
|
|
{ "type": "test", "section": "测试用例" },
|
|
{ "type": "chore", "section": "其他修改" }
|
|
]
|
|
}
|
|
},
|
|
"npm": {
|
|
"publish": true,
|
|
"packageManager": "pnpm",
|
|
"tag": "latest",
|
|
"ignoreVersion": true,
|
|
"versionArgs": ["--workspaces false"]
|
|
},
|
|
"git": { "pushWhitelistUsernames": ["GiteaActions"] }
|
|
}
|
|
}
|