mirror of
https://github.com/Lydanne/spaceflow.git
synced 2026-03-11 19:52:45 +08:00
chore: 初始化仓库
This commit is contained in:
4
.spaceflow/.gitignore
vendored
Normal file
4
.spaceflow/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
# Spaceflow Extension dependencies
|
||||
node_modules/
|
||||
pnpm-lock.yaml
|
||||
config-schema.json
|
||||
12
.spaceflow/package.json
Normal file
12
.spaceflow/package.json
Normal 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"
|
||||
}
|
||||
}
|
||||
1
.spaceflow/pnpm-workspace.yaml
Normal file
1
.spaceflow/pnpm-workspace.yaml
Normal file
@@ -0,0 +1 @@
|
||||
packages: []
|
||||
48
.spaceflow/spaceflow.json
Normal file
48
.spaceflow/spaceflow.json
Normal 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"] }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user