Skip to content

Commit

Permalink
chore(release): improves release processes (#30)
Browse files Browse the repository at this point in the history
This PR fixes the previous PR, which was written directly in GH and
(hopefully) adds automatic release note generation.
  • Loading branch information
Tbhesswebber authored Dec 22, 2023
1 parent 899dd81 commit f6cc801
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
19 changes: 10 additions & 9 deletions .releaserc
Original file line number Diff line number Diff line change
Expand Up @@ -7,49 +7,50 @@
"releaseRules": [
{
"tag": "breaking",
"scope": "*"
"scope": "*",
"release": "major"
},
{
"tag": "feat",
"scope": "*"
"scope": "*",
"release": "minor"
},
{
"tag": "fix",
"scope": "*"
"scope": "*",
"release": "patch"
},
{
"tag": "update",
"scope": "*"
"scope": "*",
"release": "minor"
},
{
"tag": "new",
"scope": "*"
"scope": "*",
"release": "minor"
},
{
"tag": "breaking",
"scope": "*"
"scope": "*",
"release": "major"
},
{
"tag": "docs",
"scope": "*"
"scope": "*",
"release": "patch"
},
{
"tag": "upgrade",
"scope": "*"
"scope": "*",
"release": "patch"
}
]
}
],
"@semantic-release/release-notes-generator",
"@semantic-release/npm"
"@semantic-release/npm",
"@semantic-release/github"
],
"branches": [
"main",
Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
},
"license": "ISC",
"devDependencies": {
"@semantic-release/npm": "^11.0.0",
"@tbhesswebber/eslint-config": "^2.0.5",
"conventional-changelog-eslint": "^5.0.0",
"eslint": "^8.49.0",
Expand Down

0 comments on commit f6cc801

Please sign in to comment.