@anolilab/commitlint-config 4.0.1 → 4.0.2
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 +19 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## @anolilab/commitlint-config [4.0.2](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@4.0.1...@anolilab/commitlint-config@4.0.2) (2023-09-26)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* Various project dependencies have been updated to their respective newer versions. This covers multiple packages such as '@babel/cli', '@babel/core', '@nrwl/js', and 'eslint' among others within the package.json file. This upgrade is necessary to ensure the utilization of the most recent features, optimization and security improvements of the updated packages, and it also helps to maintain overall project consistency. ([38535ab](https://github.com/anolilab/javascript-style-guide/commit/38535abf2557680e3f22e1ff74372764ca11c2f1))
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Styles
|
|
10
|
+
|
|
11
|
+
* cs fixes ([e053d90](https://github.com/anolilab/javascript-style-guide/commit/e053d90a4ab7a6466699c17d5afec1a7adc2459d))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Dependencies
|
|
16
|
+
|
|
17
|
+
* **@anolilab/package-json-utils:** upgraded to 3.0.6
|
|
18
|
+
* **@anolilab/semantic-release-preset:** upgraded to 7.0.3
|
|
19
|
+
|
|
1
20
|
## @anolilab/commitlint-config [4.0.1](https://github.com/anolilab/javascript-style-guide/compare/@anolilab/commitlint-config@4.0.0...@anolilab/commitlint-config@4.0.1) (2023-09-22)
|
|
2
21
|
|
|
3
22
|
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
var a=/^chore\(release\):.*\[skip ci\]
|
|
3
|
+
var a=/^chore\(release\):.*\[skip ci\]/u,t={extends:["@commitlint/config-conventional"],ignores:[e=>a.test(e)],rules:{"body-leading-blank":[1,"always"],"body-max-line-length":[2,"always",100],"footer-leading-blank":[1,"always"],"footer-max-line-length":[2,"always",100],"header-max-length":[2,"always",100],"scope-case":[2,"always","lower-case"],"subject-case":[2,"never",["sentence-case","start-case","pascal-case","upper-case"]],"subject-empty":[2,"never"],"subject-full-stop":[2,"never","."],"type-case":[2,"always","lower-case"],"type-empty":[2,"never"],"type-enum":[2,"always",["build","chore","ci","deps","docs","feat","fix","perf","refactor","revert","security","style","test","translation"]]}},s=t;
|
|
4
4
|
|
|
5
5
|
module.exports = s;
|
|
6
6
|
//# sourceMappingURL=out.js.map
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":["automaticCommitPattern","config","commitMessage","src_default"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":["automaticCommitPattern","config","commitMessage","src_default"],"mappings":"AAAA,IAAMA,EAAyB,mCAEzBC,EAAS,CACX,QAAS,CAAC,iCAAiC,EAM3C,QAAS,CAAEC,GAAmCF,EAAuB,KAAKE,CAAa,CAAC,EACxF,MAAO,CACH,qBAAsB,CAAC,EAAG,QAAQ,EAClC,uBAAwB,CAAC,EAAG,SAAU,GAAG,EACzC,uBAAwB,CAAC,EAAG,QAAQ,EACpC,yBAA0B,CAAC,EAAG,SAAU,GAAG,EAC3C,oBAAqB,CAAC,EAAG,SAAU,GAAG,EACtC,aAAc,CAAC,EAAG,SAAU,YAAY,EACxC,eAAgB,CAAC,EAAG,QAAS,CAAC,gBAAiB,aAAc,cAAe,YAAY,CAAC,EACzF,gBAAiB,CAAC,EAAG,OAAO,EAC5B,oBAAqB,CAAC,EAAG,QAAS,GAAG,EACrC,YAAa,CAAC,EAAG,SAAU,YAAY,EACvC,aAAc,CAAC,EAAG,OAAO,EACzB,YAAa,CACT,EACA,SACA,CAAC,QAAS,QAAS,KAAM,OAAQ,OAAQ,OAAQ,MAAO,OAAQ,WAAY,SAAU,WAAY,QAAS,OAAQ,aAAa,CACpI,CACJ,CACJ,EAEOC,EAAQF","sourcesContent":["const automaticCommitPattern = /^chore\\(release\\):.*\\[skip ci\\]/u;\n\nconst config = {\n extends: [\"@commitlint/config-conventional\"],\n /**\n * This resolves a linting conflict between commitlint's body-max-line-length\n * due to @semantic-release/git putting release notes in the commit body\n * https://github.com/semantic-release/git/issues/331\n */\n ignores: [(commitMessage: string): boolean => automaticCommitPattern.test(commitMessage)],\n rules: {\n \"body-leading-blank\": [1, \"always\"],\n \"body-max-line-length\": [2, \"always\", 100],\n \"footer-leading-blank\": [1, \"always\"],\n \"footer-max-line-length\": [2, \"always\", 100],\n \"header-max-length\": [2, \"always\", 100],\n \"scope-case\": [2, \"always\", \"lower-case\"],\n \"subject-case\": [2, \"never\", [\"sentence-case\", \"start-case\", \"pascal-case\", \"upper-case\"]],\n \"subject-empty\": [2, \"never\"],\n \"subject-full-stop\": [2, \"never\", \".\"],\n \"type-case\": [2, \"always\", \"lower-case\"],\n \"type-empty\": [2, \"never\"],\n \"type-enum\": [\n 2,\n \"always\",\n [\"build\", \"chore\", \"ci\", \"deps\", \"docs\", \"feat\", \"fix\", \"perf\", \"refactor\", \"revert\", \"security\", \"style\", \"test\", \"translation\"],\n ],\n },\n};\n\nexport default config;\n"]}
|
package/dist/index.mjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
var a=/^chore\(release\):.*\[skip ci\]
|
|
1
|
+
var a=/^chore\(release\):.*\[skip ci\]/u,t={extends:["@commitlint/config-conventional"],ignores:[e=>a.test(e)],rules:{"body-leading-blank":[1,"always"],"body-max-line-length":[2,"always",100],"footer-leading-blank":[1,"always"],"footer-max-line-length":[2,"always",100],"header-max-length":[2,"always",100],"scope-case":[2,"always","lower-case"],"subject-case":[2,"never",["sentence-case","start-case","pascal-case","upper-case"]],"subject-empty":[2,"never"],"subject-full-stop":[2,"never","."],"type-case":[2,"always","lower-case"],"type-empty":[2,"never"],"type-enum":[2,"always",["build","chore","ci","deps","docs","feat","fix","perf","refactor","revert","security","style","test","translation"]]}},s=t;
|
|
2
2
|
|
|
3
3
|
export { s as default };
|
|
4
4
|
//# sourceMappingURL=out.js.map
|
package/dist/index.mjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/index.ts"],"names":["automaticCommitPattern","config","commitMessage","src_default"],"mappings":"
|
|
1
|
+
{"version":3,"sources":["../src/index.ts"],"names":["automaticCommitPattern","config","commitMessage","src_default"],"mappings":"AAAA,IAAMA,EAAyB,mCAEzBC,EAAS,CACX,QAAS,CAAC,iCAAiC,EAM3C,QAAS,CAAEC,GAAmCF,EAAuB,KAAKE,CAAa,CAAC,EACxF,MAAO,CACH,qBAAsB,CAAC,EAAG,QAAQ,EAClC,uBAAwB,CAAC,EAAG,SAAU,GAAG,EACzC,uBAAwB,CAAC,EAAG,QAAQ,EACpC,yBAA0B,CAAC,EAAG,SAAU,GAAG,EAC3C,oBAAqB,CAAC,EAAG,SAAU,GAAG,EACtC,aAAc,CAAC,EAAG,SAAU,YAAY,EACxC,eAAgB,CAAC,EAAG,QAAS,CAAC,gBAAiB,aAAc,cAAe,YAAY,CAAC,EACzF,gBAAiB,CAAC,EAAG,OAAO,EAC5B,oBAAqB,CAAC,EAAG,QAAS,GAAG,EACrC,YAAa,CAAC,EAAG,SAAU,YAAY,EACvC,aAAc,CAAC,EAAG,OAAO,EACzB,YAAa,CACT,EACA,SACA,CAAC,QAAS,QAAS,KAAM,OAAQ,OAAQ,OAAQ,MAAO,OAAQ,WAAY,SAAU,WAAY,QAAS,OAAQ,aAAa,CACpI,CACJ,CACJ,EAEOC,EAAQF","sourcesContent":["const automaticCommitPattern = /^chore\\(release\\):.*\\[skip ci\\]/u;\n\nconst config = {\n extends: [\"@commitlint/config-conventional\"],\n /**\n * This resolves a linting conflict between commitlint's body-max-line-length\n * due to @semantic-release/git putting release notes in the commit body\n * https://github.com/semantic-release/git/issues/331\n */\n ignores: [(commitMessage: string): boolean => automaticCommitPattern.test(commitMessage)],\n rules: {\n \"body-leading-blank\": [1, \"always\"],\n \"body-max-line-length\": [2, \"always\", 100],\n \"footer-leading-blank\": [1, \"always\"],\n \"footer-max-line-length\": [2, \"always\", 100],\n \"header-max-length\": [2, \"always\", 100],\n \"scope-case\": [2, \"always\", \"lower-case\"],\n \"subject-case\": [2, \"never\", [\"sentence-case\", \"start-case\", \"pascal-case\", \"upper-case\"]],\n \"subject-empty\": [2, \"never\"],\n \"subject-full-stop\": [2, \"never\", \".\"],\n \"type-case\": [2, \"always\", \"lower-case\"],\n \"type-empty\": [2, \"never\"],\n \"type-enum\": [\n 2,\n \"always\",\n [\"build\", \"chore\", \"ci\", \"deps\", \"docs\", \"feat\", \"fix\", \"perf\", \"refactor\", \"revert\", \"security\", \"style\", \"test\", \"translation\"],\n ],\n },\n};\n\nexport default config;\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@anolilab/commitlint-config",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.2",
|
|
4
4
|
"description": "Anolilab´s shareable coding standard config for commitlint.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"anolilab",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"postinstall": "node ./skip.js || node ./dist/postinstall.js"
|
|
54
54
|
},
|
|
55
55
|
"dependencies": {
|
|
56
|
-
"@anolilab/package-json-utils": "3.0.
|
|
56
|
+
"@anolilab/package-json-utils": "3.0.6",
|
|
57
57
|
"@commitlint/config-conventional": "^17.7.0",
|
|
58
58
|
"@commitlint/core": "^17.7.1",
|
|
59
59
|
"commitizen": "^4.3.0",
|
|
@@ -61,9 +61,9 @@
|
|
|
61
61
|
"cz-conventional-changelog": "^3.3.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@anolilab/semantic-release-preset": "7.0.
|
|
64
|
+
"@anolilab/semantic-release-preset": "7.0.3",
|
|
65
65
|
"@commitlint/cli": "^17.7.1",
|
|
66
|
-
"rimraf": "^5.0.
|
|
66
|
+
"rimraf": "^5.0.2",
|
|
67
67
|
"tsup": "^7.2.0",
|
|
68
68
|
"vitest": "^0.34.5"
|
|
69
69
|
},
|