chore: 初始化仓库

This commit is contained in:
Lydanne
2026-02-15 22:02:21 +08:00
commit 08d011d63f
381 changed files with 87202 additions and 0 deletions

4
.spaceflow/.gitignore vendored Normal file
View File

@@ -0,0 +1,4 @@
# Spaceflow Extension dependencies
node_modules/
pnpm-lock.yaml
config-schema.json

12
.spaceflow/package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "spaceflow-local",
"private": true,
"dependencies": {
"@spaceflow/ci-scripts": "link:../commands/ci-scripts",
"@spaceflow/ci-shell": "link:../commands/ci-shell",
"@spaceflow/core": "link:../core",
"@spaceflow/publish": "link:../commands/publish",
"@spaceflow/review": "link:../commands/review",
"review-spec.git": "git+ssh://git@git.bjxgj.com/xgj/review-spec.git"
}
}

View File

@@ -0,0 +1 @@
packages: []

48
.spaceflow/spaceflow.json Normal file
View File

@@ -0,0 +1,48 @@
{
"$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"] }
}
}