2022-04-18 04:37:28 +00:00
|
|
|
module.exports = {
|
2022-07-14 02:14:21 +00:00
|
|
|
branches: ["main"],
|
2022-04-18 04:37:28 +00:00
|
|
|
|
|
|
|
extends: ["@commitlint/config-conventional"],
|
|
|
|
message:
|
2022-07-13 22:54:36 +00:00
|
|
|
"chore(release): v${nextRelease.version} [CI SKIP]\n\n${nextRelease.notes}",
|
2022-04-18 04:37:28 +00:00
|
|
|
|
|
|
|
plugins: [
|
|
|
|
[
|
|
|
|
"@semantic-release/commit-analyzer",
|
|
|
|
{
|
|
|
|
preset: "conventionalcommits",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"@semantic-release/npm",
|
|
|
|
[
|
|
|
|
"@semantic-release/exec",
|
|
|
|
{
|
|
|
|
prepareCmd: "npm run build",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
"@semantic-release/changelog",
|
|
|
|
"@semantic-release/git",
|
|
|
|
],
|
|
|
|
};
|