@halospv3/hce.shared-config 2.2.1 → 2.2.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -0
- package/commitlint.config.ts +10 -0
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [2.2.3](https://github.com/halospv3/hce.shared/compare/v2.2.2...v2.2.3) (2024-03-29)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* add commitlint config to package exports ([db87cc8](https://github.com/halospv3/hce.shared/commit/db87cc81f0e1718a6747f0ba6746f078685b6142))
|
|
7
|
+
|
|
8
|
+
## [2.2.2](https://github.com/halospv3/hce.shared/compare/v2.2.1...v2.2.2) (2024-03-29)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* use the correct file extension for commitlint config in files array ([9f5bd5f](https://github.com/halospv3/hce.shared/commit/9f5bd5fd52b37ac4a86617bc921053a05a92c239))
|
|
14
|
+
|
|
1
15
|
## [2.2.1](https://github.com/halospv3/hce.shared/compare/v2.2.0...v2.2.1) (2024-03-29)
|
|
2
16
|
|
|
3
17
|
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { RuleConfigSeverity, type UserConfig } from "@commitlint/types";
|
|
2
|
+
const commitlint: UserConfig = {
|
|
3
|
+
extends: ["@commitlint/config-conventional"],
|
|
4
|
+
rules: {
|
|
5
|
+
"body-max-line-length": [RuleConfigSeverity.Disabled],
|
|
6
|
+
"footer-max-line-length": [RuleConfigSeverity.Disabled],
|
|
7
|
+
"header-max-length": [RuleConfigSeverity.Disabled]
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
export default commitlint
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@halospv3/hce.shared-config",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.3",
|
|
4
4
|
"description": "Automate commit message quality, changelogs, and CI/CD releases. Exports a semantic-release shareable configuration deserialized from this package's '.releaserc.yml'. Shared resources for .NET projects are also distributed with this package.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"halo",
|
|
@@ -18,6 +18,7 @@
|
|
|
18
18
|
"CHANGELOG.md",
|
|
19
19
|
"cjs/**/*",
|
|
20
20
|
"commitlint.config.js",
|
|
21
|
+
"commitlint.config.ts",
|
|
21
22
|
"dotnet/",
|
|
22
23
|
"src/**/*",
|
|
23
24
|
"static/**/*"
|
|
@@ -100,7 +101,8 @@
|
|
|
100
101
|
"require": "./cjs/index.cjs"
|
|
101
102
|
}
|
|
102
103
|
},
|
|
103
|
-
"./static/.releaserc.yml": "./static/.releaserc.yml"
|
|
104
|
+
"./static/.releaserc.yml": "./static/.releaserc.yml",
|
|
105
|
+
"./commitlint.config.ts": "./commitlint.config.ts"
|
|
104
106
|
},
|
|
105
107
|
"types": "./cjs/index.d.ts",
|
|
106
108
|
"packemon": {
|