26 lines
602 B
JavaScript
26 lines
602 B
JavaScript
|
module.exports = {
|
||
|
branches: ["main"],
|
||
|
|
||
|
extends: ["@commitlint/config-conventional"],
|
||
|
message:
|
||
|
"chore(release): v${nextRelease.version} [CI SKIP]\n\n${nextRelease.notes}",
|
||
|
|
||
|
plugins: [
|
||
|
[
|
||
|
"@semantic-release/commit-analyzer",
|
||
|
{
|
||
|
preset: "conventionalcommits",
|
||
|
},
|
||
|
],
|
||
|
"@semantic-release/npm",
|
||
|
[
|
||
|
"@semantic-release/exec",
|
||
|
{
|
||
|
prepareCmd: "npm run build",
|
||
|
},
|
||
|
],
|
||
|
"@semantic-release/changelog",
|
||
|
"@semantic-release/git",
|
||
|
],
|
||
|
};
|