forked from KaTeX/KaTeX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.releaserc
26 lines (26 loc) · 983 Bytes
/
.releaserc
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
{
"branches": "main",
"plugins": [
["@semantic-release/commit-analyzer", {
"releaseRules": [
{breaking: true, release: 'minor'},
{type: 'feat', release: 'patch'},
],
}],
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", {
"changelogTitle": "# Changelog\nAll notable changes to this project will be documented in this file. This CHANGELOG roughly follows the guidelines from [www.keepachangelog.com](https://keepachangelog.com/en/1.0.0/).",
}],
"@semantic-release/npm",
["@semantic-release/git", {
"assets": ["docs", "package.json", "CHANGELOG.md", "README.md", "contrib/*/README.md", "website/pages/index.html"],
"message": "chore(release): ${nextRelease.version} [ci skip]\n\n${nextRelease.notes}",
}],
["@semantic-release/github", {
"assets": [
{path: 'katex.tar.gz', label: 'tarball'},
{path: 'katex.zip', label: 'zip'},
],
}],
],
}