@abinnovision/commitlint-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +19 -13
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [2.2.3](https://github.com/abinnovision/js-commons/compare/commitlint-config-v2.2.2...commitlint-config-v2.2.3) (2025-11-08)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * trigger synthetic patch release for all packages ([0a42ee3](https://github.com/abinnovision/js-commons/commit/0a42ee36601f88ff232a41a8682266543849b3c6))
9
+
10
+ ## [2.2.2](https://github.com/abinnovision/js-commons/compare/commitlint-config-v2.2.1...commitlint-config-v2.2.2) (2025-11-08)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * migrate eslint configs to use defineConfig ([#541](https://github.com/abinnovision/js-commons/issues/541)) ([eb24dca](https://github.com/abinnovision/js-commons/commit/eb24dca423b594711b727da84f4c4026f781c9e4))
16
+
3
17
  ## [2.2.1](https://github.com/abinnovision/js-commons/compare/commitlint-config-v2.2.0...commitlint-config-v2.2.1) (2024-10-16)
4
18
 
5
19
 
package/package.json CHANGED
@@ -1,21 +1,26 @@
1
1
  {
2
2
  "name": "@abinnovision/commitlint-config",
3
- "version": "2.2.1",
3
+ "version": "2.2.3",
4
+ "publishConfig": {
5
+ "npm": true,
6
+ "ghpr": true,
7
+ "npmAccess": "public"
8
+ },
4
9
  "type": "module",
5
10
  "repository": {
6
11
  "url": "https://github.com/abinnovision/js-commons"
7
12
  },
8
13
  "license": "Apache-2.0",
9
14
  "author": {
10
- "name": "AB INNOVISION GmbH",
11
- "email": "info@abinnovision.com",
12
- "url": "https://abinnovision.com/"
15
+ "name": "abi group GmbH",
16
+ "email": "info@abigroup.io",
17
+ "url": "https://abigroup.io/"
13
18
  },
14
19
  "exports": {
15
20
  ".": {
21
+ "types": "./dist/index.d.ts",
16
22
  "import": "./dist/index.js",
17
- "require": "./dist/index.cjs",
18
- "types": "./dist/index.d.ts"
23
+ "require": "./dist/index.cjs"
19
24
  }
20
25
  },
21
26
  "main": "./dist/index.cjs",
@@ -42,14 +47,15 @@
42
47
  },
43
48
  "prettier": "@abinnovision/prettier-config",
44
49
  "dependencies": {
45
- "@commitlint/config-conventional": "^19.5.0"
50
+ "@commitlint/config-conventional": "^20.0.0"
46
51
  },
47
52
  "devDependencies": {
48
- "@abinnovision/prettier-config": "^2.1.3",
49
- "@commitlint/types": "^19.5.0",
50
- "eslint": "^9.12.0",
51
- "prettier": "^3.3.3",
52
- "tsup": "^8.3.0",
53
- "typescript": "^5.6.3"
53
+ "@abinnovision/eslint-config-base": "^3.0.1",
54
+ "@abinnovision/prettier-config": "^2.1.5",
55
+ "@commitlint/types": "^20.0.0",
56
+ "eslint": "^9.39.1",
57
+ "prettier": "^3.4.2",
58
+ "tsup": "^8.3.6",
59
+ "typescript": "^5.9.3"
54
60
  }
55
61
  }