Skip to content

Commit

Permalink
fix: Fix chore to be included in release note
Browse files Browse the repository at this point in the history
  • Loading branch information
neet committed Jan 17, 2023
1 parent 65e992f commit 5230d25
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 3 deletions.
35 changes: 32 additions & 3 deletions .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,37 @@
{
"branches": ["main"],
"branches": ["main", "add-tests-for-websocket"],
"preset": "conventionalcommits",
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/commit-analyzer",
{
"releaseRules": [{ "type": "chore", "release": "patch" }]
}
],
[
"@semantic-release/release-notes-generator",
{
"presetConfig": {
"types": [
{
"type": "feat",
"section": "Features",
"hidden": false
},
{
"type": "fix",
"section": "Bug Fixes",
"hidden": false
},
{
"type": "chore",
"section": "Chores",
"hidden": false
}
]
}
}
],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
Expand Down
1 change: 1 addition & 0 deletions cspell.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
"blurhash",
"builtins",
"codecov",
"conventionalcommits",
"Datetime",
"entrypoints",
"favourited",
Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"conventional-changelog-conventionalcommits": "^5.0.0",
"cspell": "^6.18.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
Expand Down
9 changes: 9 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2356,6 +2356,15 @@ conventional-changelog-angular@^5.0.0:
compare-func "^2.0.0"
q "^1.5.1"

conventional-changelog-conventionalcommits@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-5.0.0.tgz#41bdce54eb65a848a4a3ffdca93e92fa22b64a86"
integrity sha512-lCDbA+ZqVFQGUj7h9QBKoIpLhl8iihkO0nCTyRNzuXtcd7ubODpYB04IFy31JloiJgG0Uovu8ot8oxRzn7Nwtw==
dependencies:
compare-func "^2.0.0"
lodash "^4.17.15"
q "^1.5.1"

conventional-changelog-writer@^5.0.0:
version "5.0.1"
resolved "https://registry.yarnpkg.com/conventional-changelog-writer/-/conventional-changelog-writer-5.0.1.tgz#e0757072f045fe03d91da6343c843029e702f359"
Expand Down

0 comments on commit 5230d25

Please sign in to comment.