@anolilab/commitlint-config 1.0.1 → 1.0.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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ ## @anolilab/commitlint-config [1.0.3](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@1.0.2...@anolilab/commitlint-config@1.0.3) (2023-06-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * updated lock, updated @anolilab/package-json-utils and removed baseUrl in the tsconfig that was in the wrong place ([cb08fb5](https://github.com/anolilab/javascript-style-guide/commit/cb08fb5f9fa15f0134327f89f1908199fddaa327))
7
+
8
+ ## @anolilab/commitlint-config [1.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@1.0.1...@anolilab/commitlint-config@1.0.2) (2023-06-28)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Update package dependencies versions ([7aec41d](https://github.com/anolilab/javascript-style-guide/commit/7aec41d753081b2cca2f1bb1f7daf1615c6568cb))
14
+
15
+
16
+
17
+ ### Dependencies
18
+
19
+ * **@anolilab/package-json-utils:** upgraded to 1.5.1
20
+
1
21
  ## @anolilab/commitlint-config [1.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@1.0.0...@anolilab/commitlint-config@1.0.1) (2023-06-23)
2
22
 
3
23
 
@@ -0,0 +1,20 @@
1
+ declare const config: {
2
+ extends: string[];
3
+ ignores: ((commitMessage: string) => boolean)[];
4
+ rules: {
5
+ "body-leading-blank": (string | number)[];
6
+ "body-max-line-length": (string | number)[];
7
+ "footer-leading-blank": (string | number)[];
8
+ "footer-max-line-length": (string | number)[];
9
+ "header-max-length": (string | number)[];
10
+ "scope-case": (string | number)[];
11
+ "subject-case": (string | number | string[])[];
12
+ "subject-empty": (string | number)[];
13
+ "subject-full-stop": (string | number)[];
14
+ "type-case": (string | number)[];
15
+ "type-empty": (string | number)[];
16
+ "type-enum": (string | number | string[])[];
17
+ };
18
+ };
19
+
20
+ export { config as default };
@@ -0,0 +1,2 @@
1
+
2
+ export { }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@anolilab/commitlint-config",
3
- "version": "1.0.1",
3
+ "version": "1.0.3",
4
4
  "description": "Anolilab´s shareable coding standard config for commitlint.",
5
5
  "keywords": [
6
6
  "anolilab",
@@ -52,15 +52,17 @@
52
52
  "postinstall": "node ./skip.js || node ./dist/postinstall.js"
53
53
  },
54
54
  "dependencies": {
55
- "@anolilab/package-json-utils": "1.5.0",
56
- "@commitlint/config-conventional": "^17.6.5",
57
- "@commitlint/core": "^17.6.5",
55
+ "@anolilab/package-json-utils": "1.5.1",
56
+ "@commitlint/config-conventional": "^17.6.6",
57
+ "@commitlint/core": "^17.6.6",
58
58
  "commitizen": "^4.3.0",
59
- "conventional-changelog-conventionalcommits": "^6.0.0",
59
+ "conventional-changelog-conventionalcommits": "^6.1.0",
60
60
  "cz-conventional-changelog": "^3.3.0"
61
61
  },
62
62
  "devDependencies": {
63
- "@commitlint/cli": "^17.6.5"
63
+ "@commitlint/cli": "^17.6.6",
64
+ "tsup": "^7.1.0",
65
+ "vitest": "^0.32.2"
64
66
  },
65
67
  "peerDependencies": {
66
68
  "@commitlint/cli": "^17.6.5"