-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.releaserc.json
More file actions
60 lines (60 loc) · 2.86 KB
/
Copy path.releaserc.json
File metadata and controls
60 lines (60 loc) · 2.86 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"$schema": "https://json.schemastore.org/semantic-release.json",
"branches": ["main"],
"tagFormat": "v${version}",
"plugins": [
["@semantic-release/commit-analyzer", {
"preset": "conventionalcommits",
"releaseRules": [
{"type": "feat", "release": "minor"},
{"type": "fix", "release": "patch"},
{"type": "perf", "release": "patch"},
{"type": "refactor", "release": "patch"},
{"type": "docs", "release": false},
{"type": "style", "release": false},
{"type": "test", "release": false},
{"type": "build", "release": false},
{"type": "ci", "release": false},
{"type": "chore", "release": false}
]
}],
["@semantic-release/release-notes-generator", {
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{"type": "feat", "section": "Features", "hidden": false},
{"type": "fix", "section": "Bug Fixes", "hidden": false},
{"type": "perf", "section": "Performance", "hidden": false},
{"type": "refactor", "section": "Refactoring", "hidden": false},
{"type": "docs", "section": "Documentation", "hidden": true},
{"type": "style", "section": "Styling", "hidden": true},
{"type": "test", "section": "Tests", "hidden": true},
{"type": "build", "section": "Build System", "hidden": true},
{"type": "ci", "section": "CI/CD", "hidden": true},
{"type": "chore", "section": "Maintenance", "hidden": true}
]
}
}],
["@semantic-release/changelog", {
"changelogFile": "CHANGELOG.md",
"changelogTitle": "# Changelog\n\nAll notable changes to Manifold will be documented in this file.\n\nThe format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),\nand this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html)."
}],
["@semantic-release/npm", {
"npmPublish": false,
"pkgRoot": "cli"
}],
["@semantic-release/exec", {
"prepareCmd": "jq --arg v '${nextRelease.version}' '.version = $v' install/plugin.json > install/plugin.json.tmp && mv install/plugin.json.tmp install/plugin.json && bun scripts/sync-plugin.ts && jq --arg v '${nextRelease.version}' '.plugins[0].version = $v' .claude-plugin/marketplace.json > .claude-plugin/marketplace.json.tmp && mv .claude-plugin/marketplace.json.tmp .claude-plugin/marketplace.json"
}],
["@semantic-release/git", {
"assets": ["CHANGELOG.md", "cli/package.json", "install/plugin.json", "plugin/plugin.json", "plugin/.claude-plugin/plugin.json", ".claude-plugin/marketplace.json"],
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}],
["@semantic-release/github", {
"successComment": false,
"failComment": false,
"labels": false,
"releasedLabels": false
}]
]
}