@pplancq/commitlint-config 2.2.3 → 2.3.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.
- package/package.json +26 -3
- package/CHANGELOG.md +0 -64
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pplancq/commitlint-config",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.3.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "pplancq commitlint config",
|
|
6
6
|
"author": "pplancq <paul.plancq@outlook.fr>",
|
|
@@ -9,6 +9,18 @@
|
|
|
9
9
|
"url": "git+https://github.com/pplancq/dev-tools.git",
|
|
10
10
|
"directory": "packages/commitlint-config"
|
|
11
11
|
},
|
|
12
|
+
"scripts": {
|
|
13
|
+
"lint:eslint": "eslint \"**/*.{js,mjs}\"",
|
|
14
|
+
"lint:eslint:fix": "eslint \"**/*.{js,mjs}\" --fix",
|
|
15
|
+
"lint:prettier": "prettier \"**/*.!(js|mjs)\" --check --ignore-unknown",
|
|
16
|
+
"lint:prettier:fix": "prettier \"**/*.!(js|mjs)\" --write --ignore-unknown"
|
|
17
|
+
},
|
|
18
|
+
"files": [
|
|
19
|
+
"bin",
|
|
20
|
+
"index.js",
|
|
21
|
+
"LICENSE",
|
|
22
|
+
"README.md"
|
|
23
|
+
],
|
|
12
24
|
"bugs": {
|
|
13
25
|
"url": "https://github.com/pplancq/dev-tools/issues"
|
|
14
26
|
},
|
|
@@ -21,15 +33,26 @@
|
|
|
21
33
|
"config"
|
|
22
34
|
],
|
|
23
35
|
"dependencies": {
|
|
24
|
-
"@commitlint/config-conventional": "^
|
|
36
|
+
"@commitlint/config-conventional": "^20.2.0"
|
|
25
37
|
},
|
|
26
38
|
"peerDependencies": {
|
|
27
|
-
"@commitlint/cli": "^19.0.3"
|
|
39
|
+
"@commitlint/cli": "^19.0.3 || ^20.0.0"
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"eslint": "^9.39.1",
|
|
43
|
+
"eslint-plugin-prettier": "^5.5.4",
|
|
44
|
+
"lint-staged": "^16.2.7",
|
|
45
|
+
"prettier": "^3.7.4"
|
|
28
46
|
},
|
|
29
47
|
"engines": {
|
|
30
48
|
"node": ">=v18"
|
|
31
49
|
},
|
|
32
50
|
"volta": {
|
|
33
51
|
"extends": "../../package.json"
|
|
52
|
+
},
|
|
53
|
+
"prettier": "@pplancq/prettier-config",
|
|
54
|
+
"lint-staged": {
|
|
55
|
+
"*.(js|mjs)": "eslint --fix",
|
|
56
|
+
"*.!(js|mjs)": "prettier --write --ignore-unknown"
|
|
34
57
|
}
|
|
35
58
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
## @pplancq/commitlint-config [2.2.3](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.2.2...@pplancq/commitlint-config@2.2.3) (2025-05-13)
|
|
2
|
-
|
|
3
|
-
### Bug Fixes
|
|
4
|
-
|
|
5
|
-
* **deps:** update commitlint monorepo to ^19.8.1 ([09899fd](https://github.com/pplancq/dev-tools/commit/09899fd522648d5b73809e60dee9af4cf746096d))
|
|
6
|
-
|
|
7
|
-
## @pplancq/commitlint-config [2.2.2](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.2.1...@pplancq/commitlint-config@2.2.2) (2025-03-10)
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* **deps:** update commitlint monorepo to ^19.8.0 ([6416809](https://github.com/pplancq/dev-tools/commit/64168092add95424270118b244af178340a86a25))
|
|
12
|
-
|
|
13
|
-
## @pplancq/commitlint-config [2.2.1](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.2.0...@pplancq/commitlint-config@2.2.1) (2025-02-10)
|
|
14
|
-
|
|
15
|
-
### Bug Fixes
|
|
16
|
-
|
|
17
|
-
* **deps:** update commitlint monorepo to ^19.7.1 ([8492588](https://github.com/pplancq/dev-tools/commit/8492588166ff71f494487b2289afe6c78aa4e482))
|
|
18
|
-
|
|
19
|
-
## @pplancq/commitlint-config [2.2.0](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.1.2...@pplancq/commitlint-config@2.2.0) (2024-05-06)
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
### Features
|
|
23
|
-
|
|
24
|
-
* **dev-tools:** add minimal nodejs versions for each package ([0d8447a](https://github.com/pplancq/dev-tools/commit/0d8447a6f4e26ff9cb28baac8434020156d5dac0))
|
|
25
|
-
|
|
26
|
-
## @pplancq/commitlint-config [2.1.2](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.1.1...@pplancq/commitlint-config@2.1.2) (2024-04-16)
|
|
27
|
-
|
|
28
|
-
## @pplancq/commitlint-config [2.1.1](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.1.0...@pplancq/commitlint-config@2.1.1) (2024-03-25)
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
### Bug Fixes
|
|
32
|
-
|
|
33
|
-
* **commitlint-config:** fix case-sensitive to ignores release commit ([ab9c5fd](https://github.com/pplancq/dev-tools/commit/ab9c5fd433a75264e943530cf2006bbad70b306a))
|
|
34
|
-
|
|
35
|
-
## @pplancq/commitlint-config [2.1.0](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@2.0.0...@pplancq/commitlint-config@2.1.0) (2024-03-20)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
### Features
|
|
39
|
-
|
|
40
|
-
* **commitlint-config:** update max length for header body and footer ([861521d](https://github.com/pplancq/dev-tools/commit/861521da4efff31124675c46d82332e1d0bc09bf)), closes [#149](https://github.com/pplancq/dev-tools/issues/149)
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
### Reverts
|
|
44
|
-
|
|
45
|
-
* **dev-tool:** add package-lock when execute npm postversion ([1e83fe7](https://github.com/pplancq/dev-tools/commit/1e83fe7ee8d2529ce3b85e1abb56968171ee01ff))
|
|
46
|
-
|
|
47
|
-
## @pplancq/commitlint-config [2.0.0](https://github.com/pplancq/dev-tools/compare/@pplancq/commitlint-config@1.0.0...@pplancq/commitlint-config@2.0.0) (2024-03-12)
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
### ⚠ BREAKING CHANGES
|
|
51
|
-
|
|
52
|
-
* **commitlint-config:** Bumps @commitlint/cli ^18.6.0 to ^19.0.3 the minimum requirements
|
|
53
|
-
|
|
54
|
-
### Features
|
|
55
|
-
|
|
56
|
-
* **commitlint-config:** bump @commitlint/cli from 18.6.0 to 19.0.3 ([9c547fb](https://github.com/pplancq/dev-tools/commit/9c547fb1ed71cf8838b36d25678942368f670981))
|
|
57
|
-
|
|
58
|
-
## @pplancq/commitlint-config 1.0.0 (2024-02-05)
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
### Features
|
|
62
|
-
|
|
63
|
-
* **commitlint-config:** add default config for commitlint ([4f03d79](https://github.com/pplancq/dev-tools/commit/4f03d798c564669842c1d250b435c87e32ffd6d7))
|
|
64
|
-
* **commitlint-config:** add script for init commitlint config ([c2cbfe0](https://github.com/pplancq/dev-tools/commit/c2cbfe0cbc7bf6f1c3487cd3b2903bc4a1814de3))
|