Skip to content

Commit df746c7

Browse files
author
Developer
committed
build(release): added release management
1 parent a909172 commit df746c7

File tree

5 files changed

+10340
-4016
lines changed

5 files changed

+10340
-4016
lines changed

.env.sample

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
GITHUB_TOKEN=

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
node_modules/
2-
.idea/
2+
.idea/
3+
.env

.releaserc.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"branches": ["master"],
3+
"plugins": [
4+
"@semantic-release/commit-analyzer",
5+
"@semantic-release/release-notes-generator",
6+
"@semantic-release/changelog",
7+
["@semantic-release/git", {
8+
"assets": ["package.json", "CHANGELOG.md"],
9+
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
10+
}],
11+
["@semantic-release/github", {
12+
"assets": []
13+
}]
14+
],
15+
"npmPublish": false
16+
}

0 commit comments

Comments
 (0)