Skip to content

Commit

Permalink
chore: merge branch develop
Browse files Browse the repository at this point in the history
  • Loading branch information
BinToss committed May 31, 2024
2 parents c4a0948 + 0517a97 commit efd4d50
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 19 deletions.
4 changes: 3 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@
"conventionalCommits.scopes": [
"dotnet",
"node",
"vscode"
"vscode",
"deps",
"deps-dev"
],
"cSpell.words": [
"conventionalcommits",
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [2.4.1-develop.1](https://github.com/halospv3/hce.shared/compare/v2.4.0...v2.4.1-develop.1) (2024-05-31)


### Bug Fixes

* :ambulance: bump braces to 3.0.3 ([c4a0948](https://github.com/halospv3/hce.shared/commit/c4a09484c3e7c2f0337453e3543e4b143d5d026c))
* **deps:** :arrow_down: downgrade conventional-changelog-conventionalcommits ([7d7d418](https://github.com/halospv3/hce.shared/commit/7d7d418b072e57848207a7fcf368985adb76e016)), closes [#402](https://github.com/halospv3/hce.shared/issues/402)

## [2.2.4](https://github.com/halospv3/hce.shared/compare/v2.2.3...v2.2.4) (2024-04-06)

## [2.2.3](https://github.com/halospv3/hce.shared/compare/v2.2.2...v2.2.3) (2024-03-29)
Expand Down
22 changes: 6 additions & 16 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"@types/semantic-release": "^20.0.6",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"conventional-changelog-conventionalcommits": "^8.0.0",
"conventional-changelog-conventionalcommits": "^7.0.2",
"debug": "^4.3.4",
"eslint-plugin-jsonc": "^2.15.1",
"globals": "^15.3.0",
Expand Down
8 changes: 7 additions & 1 deletion tests/commitlintConfig.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,15 @@ await describe("commitlintConfig", async () => {
const config = await load(rawConfig);
await it('has parserPreset', async () => {
const preset = await createPreset();
ok(preset);
ok(preset.parserOpts)
ok(config.parserPreset);
deepStrictEqual(config.parserPreset.name, commitLintConventional.parserPreset);
deepStrictEqual(config.parserPreset.parserOpts, preset.parser);
if ("parser" in preset)
deepStrictEqual(config.parserPreset.parserOpts, preset.parser);
else {
deepStrictEqual(config.parserPreset.parserOpts, preset.parserOpts)
}
});
await it('has rules', async () => {
deepStrictEqual(config.rules['body-leading-blank'], commitLintConventional.rules['body-leading-blank']);
Expand Down

0 comments on commit efd4d50

Please sign in to comment.