@ornikar/commitlint-config 5.0.2 → 6.0.1

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +22 -0
  2. package/index.js +4 -0
  3. package/package.json +4 -5
package/CHANGELOG.md CHANGED
@@ -3,6 +3,28 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [6.0.1](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@6.0.0...@ornikar/commitlint-config@6.0.1) (2023-11-27)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **commitlint-config:** remove max length not in specification [no issue] ([#1039](https://github.com/ornikar/shared-configs/issues/1039)) ([a9e5a8e](https://github.com/ornikar/shared-configs/commit/a9e5a8e53a930ae12dce89138afd2833a121da34))
12
+
13
+
14
+
15
+ ## [6.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@5.0.2...@ornikar/commitlint-config@6.0.0) (2023-09-27)
16
+
17
+
18
+ ### ⚠ BREAKING CHANGES
19
+
20
+ * **rollup-config:** requires node 18 and requires to update exports as dist path changed
21
+
22
+ ### Features
23
+
24
+ * **rollup-config:** update to node 18 ECF-281 ([#979](https://github.com/ornikar/shared-configs/issues/979)) ([26eaaf9](https://github.com/ornikar/shared-configs/commit/26eaaf9db689de9ec474919881ce87784427cc5c))
25
+
26
+
27
+
6
28
  ## [5.0.2](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@5.0.1...@ornikar/commitlint-config@5.0.2) (2023-03-16)
7
29
 
8
30
  **Note:** Version bump only for package @ornikar/commitlint-config
package/index.js CHANGED
@@ -6,5 +6,9 @@ module.exports = {
6
6
  // disable scope case
7
7
  // We use camelCase in directory names, and scope should match these directories in some cases.
8
8
  'scope-case': [0],
9
+
10
+ // not in the spec, see https://www.conventionalcommits.org/en/v1.0.0/#specification
11
+ 'header-max-length': [0],
12
+ 'footer-max-line-length': [0],
9
13
  },
10
14
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/commitlint-config",
3
- "version": "5.0.2",
3
+ "version": "6.0.1",
4
4
  "description": "📓 commitlint config",
5
5
  "repository": {
6
6
  "directory": "@ornikar/commitlint-config",
@@ -10,7 +10,7 @@
10
10
  "main": "index.js",
11
11
  "license": "ISC",
12
12
  "engines": {
13
- "node": ">=16.16.0"
13
+ "node": ">=18.18.0"
14
14
  },
15
15
  "publishConfig": {
16
16
  "access": "public"
@@ -21,6 +21,5 @@
21
21
  },
22
22
  "scripts": {
23
23
  "lint:eslint": "yarn ../.. eslint --report-unused-disable-directives --quiet @ornikar/commitlint-config"
24
- },
25
- "gitHead": "3db121475fb362c7d118489c2118176e14b49a47"
26
- }
24
+ }
25
+ }