Skip to content

Commit 606e813

Browse files
committed
chore: add semantic-release configuration for automated versioning and changelog generation
1 parent b01355c commit 606e813

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

release.config.mjs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
/**
2+
* @type {import('semantic-release').GlobalConfig}
3+
*/
4+
export default {
5+
branches: ["main"],
6+
plugins: [
7+
"@semantic-release/release-notes-generator",
8+
"@semantic-release/commit-analyzer",
9+
"@semantic-release/changelog",
10+
"@semantic-release/github",
11+
"@semantic-release/npm",
12+
],
13+
ci: false,
14+
dryRun: true,
15+
debug: true,
16+
};

0 commit comments

Comments
 (0)