chore(ci): approve esbuild dependency build

This commit is contained in:
2026-08-05 01:23:06 -03:00
parent f13fd6d96b
commit 84ecee9404
7 changed files with 2932 additions and 19 deletions
+17
View File
@@ -0,0 +1,17 @@
module.exports = {
branches: ["main"],
tagFormat: "v${version}",
plugins: [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
["@semantic-release/changelog", { changelogFile: "CHANGELOG.md" }],
"@semantic-release/npm",
[
"@semantic-release/git",
{
assets: ["CHANGELOG.md", "package.json", "pnpm-lock.yaml"],
message: "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}",
},
],
],
};