@pplancq/commitlint-config 2.2.2 → 2.3.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.
Files changed (2) hide show
  1. package/package.json +28 -5
  2. package/CHANGELOG.md +0 -58
package/package.json CHANGED
@@ -1,35 +1,58 @@
1
1
  {
2
2
  "name": "@pplancq/commitlint-config",
3
- "version": "2.2.2",
3
+ "version": "2.3.0",
4
4
  "license": "MIT",
5
5
  "description": "pplancq commitlint config",
6
6
  "author": "pplancq <paul.plancq@outlook.fr>",
7
7
  "repository": {
8
8
  "type": "git",
9
- "url": "https://github.com/pplancq/dev-tools",
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
  },
15
27
  "main": "index.js",
16
28
  "bin": {
17
- "init-commitlint-config": "./bin/init.js"
29
+ "init-commitlint-config": "bin/init.js"
18
30
  },
19
31
  "keywords": [
20
32
  "commitlint",
21
33
  "config"
22
34
  ],
23
35
  "dependencies": {
24
- "@commitlint/config-conventional": "^19.8.0"
36
+ "@commitlint/config-conventional": "^20.0.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.36.0",
43
+ "eslint-plugin-prettier": "^5.5.4",
44
+ "lint-staged": "^16.2.1",
45
+ "prettier": "^3.6.2"
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,58 +0,0 @@
1
- ## @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)
2
-
3
- ### Bug Fixes
4
-
5
- * **deps:** update commitlint monorepo to ^19.8.0 ([6416809](https://github.com/pplancq/dev-tools/commit/64168092add95424270118b244af178340a86a25))
6
-
7
- ## @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)
8
-
9
- ### Bug Fixes
10
-
11
- * **deps:** update commitlint monorepo to ^19.7.1 ([8492588](https://github.com/pplancq/dev-tools/commit/8492588166ff71f494487b2289afe6c78aa4e482))
12
-
13
- ## @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)
14
-
15
-
16
- ### Features
17
-
18
- * **dev-tools:** add minimal nodejs versions for each package ([0d8447a](https://github.com/pplancq/dev-tools/commit/0d8447a6f4e26ff9cb28baac8434020156d5dac0))
19
-
20
- ## @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)
21
-
22
- ## @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)
23
-
24
-
25
- ### Bug Fixes
26
-
27
- * **commitlint-config:** fix case-sensitive to ignores release commit ([ab9c5fd](https://github.com/pplancq/dev-tools/commit/ab9c5fd433a75264e943530cf2006bbad70b306a))
28
-
29
- ## @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)
30
-
31
-
32
- ### Features
33
-
34
- * **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)
35
-
36
-
37
- ### Reverts
38
-
39
- * **dev-tool:** add package-lock when execute npm postversion ([1e83fe7](https://github.com/pplancq/dev-tools/commit/1e83fe7ee8d2529ce3b85e1abb56968171ee01ff))
40
-
41
- ## @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)
42
-
43
-
44
- ### ⚠ BREAKING CHANGES
45
-
46
- * **commitlint-config:** Bumps @commitlint/cli ^18.6.0 to ^19.0.3 the minimum requirements
47
-
48
- ### Features
49
-
50
- * **commitlint-config:** bump @commitlint/cli from 18.6.0 to 19.0.3 ([9c547fb](https://github.com/pplancq/dev-tools/commit/9c547fb1ed71cf8838b36d25678942368f670981))
51
-
52
- ## @pplancq/commitlint-config 1.0.0 (2024-02-05)
53
-
54
-
55
- ### Features
56
-
57
- * **commitlint-config:** add default config for commitlint ([4f03d79](https://github.com/pplancq/dev-tools/commit/4f03d798c564669842c1d250b435c87e32ffd6d7))
58
- * **commitlint-config:** add script for init commitlint config ([c2cbfe0](https://github.com/pplancq/dev-tools/commit/c2cbfe0cbc7bf6f1c3487cd3b2903bc4a1814de3))