mirror of
https://github.com/Smaug123/KaTeX
synced 2025-10-04 18:58:39 +00:00
* chore: rename branch master to main * ci: update semantic-release config * ci: run semantic release only on main
27 lines
983 B
Plaintext
27 lines
983 B
Plaintext
{
|
|
"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'},
|
|
],
|
|
}],
|
|
],
|
|
}
|