Skip to content

Commit

Permalink
chore(deps): temporary override conventional-changelog-conventionalco…
Browse files Browse the repository at this point in the history
…mmits to v8

This fixes semantic-release/release-notes-generator#657 until @commitlint/config-conventional is updated, see conventional-changelog/commitlint#4063.
  • Loading branch information
jdbruijn committed Jun 17, 2024
1 parent 48d2639 commit 5c66dc8
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
9 changes: 4 additions & 5 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -231,5 +231,8 @@
},
"publishConfig": {
"access": "public"
},
"overrides": {
"conventional-changelog-conventionalcommits": ">= 8.0.0"
}
}
2 changes: 2 additions & 0 deletions src/content/package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ const schema = z
.object({access: z.literal('public')})
.strict()
.optional(),
overrides: z.record(z.unknown()).optional(),
})
.strict();

Expand Down Expand Up @@ -93,6 +94,7 @@ class Package extends File {
delete this._package.bin;
delete this._package.dependencies;
delete this._package.scripts.postinstall;
delete this._package.overrides;
if (this._options.public) {
delete this._package.private;
} else {
Expand Down

0 comments on commit 5c66dc8

Please sign in to comment.