@ornikar/commitlint-config 4.0.4 → 5.0.0

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 CHANGED
@@ -3,6 +3,41 @@
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
+ # [5.0.0](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@4.1.0...@ornikar/commitlint-config@5.0.0) (2022-08-17)
7
+
8
+
9
+ ### chore
10
+
11
+ * **deps:** update dependency @ornikar/eslint-config to v19 ([#759](https://github.com/ornikar/shared-configs/issues/759)) ([e05eecb](https://github.com/ornikar/shared-configs/commit/e05eecb898d047b44277ce4f65fc724831bb2ece))
12
+
13
+
14
+ ### BREAKING CHANGES
15
+
16
+ * **deps:** drop node 14
17
+
18
+
19
+
20
+
21
+
22
+ # [4.1.0](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@4.0.5...@ornikar/commitlint-config@4.1.0) (2022-08-12)
23
+
24
+
25
+ ### Features
26
+
27
+ * **commitlint-config:** add monorepo config [no issue] ([#766](https://github.com/ornikar/shared-configs/issues/766)) ([a2daaa0](https://github.com/ornikar/shared-configs/commit/a2daaa09426aa1d93912546971a82c451a7bc951))
28
+
29
+
30
+
31
+
32
+
33
+ ## [4.0.5](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@4.0.4...@ornikar/commitlint-config@4.0.5) (2022-08-05)
34
+
35
+ **Note:** Version bump only for package @ornikar/commitlint-config
36
+
37
+
38
+
39
+
40
+
6
41
  ## [4.0.4](https://github.com/ornikar/shared-configs/compare/@ornikar/commitlint-config@4.0.3...@ornikar/commitlint-config@4.0.4) (2022-06-20)
7
42
 
8
43
  **Note:** Version bump only for package @ornikar/commitlint-config
package/monorepo.js ADDED
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ module.exports = {
4
+ extends: [require.resolve('./index.js'), '@commitlint/config-lerna-scopes'],
5
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ornikar/commitlint-config",
3
- "version": "4.0.4",
3
+ "version": "5.0.0",
4
4
  "description": "📓 commitlint config",
5
5
  "repository": {
6
6
  "type": "git",
@@ -10,13 +10,14 @@
10
10
  "main": "index.js",
11
11
  "license": "ISC",
12
12
  "engines": {
13
- "node": ">=14.17.5"
13
+ "node": ">=16.16.0"
14
14
  },
15
15
  "publishConfig": {
16
16
  "access": "public"
17
17
  },
18
18
  "dependencies": {
19
- "@commitlint/config-conventional": "^16.0.0"
19
+ "@commitlint/config-conventional": "^17.0.3",
20
+ "@commitlint/config-lerna-scopes": "^17.0.2"
20
21
  },
21
- "gitHead": "ab2d4c9d4c9b8c9c610eb592330cfa99ec5c21fc"
22
+ "gitHead": "fdf5cc641c6311c60b239dd9f7b77a7adb1c09c5"
22
23
  }