@abinnovision/commitlint-config 2.0.1 → 2.1.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.
- package/CHANGELOG.md +7 -0
- package/dist/index.js +24 -1
- package/dist/index.mjs +24 -1
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.1.0](https://github.com/abinnovision/js-commons/compare/commitlint-config-v2.0.1...commitlint-config-v2.1.0) (2024-08-02)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* add type deps to commitlint config ([534c603](https://github.com/abinnovision/js-commons/commit/534c6030ce9695d91247067ef411fd666f79bf00))
|
|
9
|
+
|
|
3
10
|
## [2.0.1](https://github.com/abinnovision/js-commons/compare/commitlint-config-v2.0.0...commitlint-config-v2.0.1) (2024-03-28)
|
|
4
11
|
|
|
5
12
|
|
package/dist/index.js
CHANGED
|
@@ -33,7 +33,30 @@ var config = {
|
|
|
33
33
|
* This is because sometimes commit messages can contain structured data
|
|
34
34
|
* by some kind of tool (e.g. Dependabot), which can't be changed.
|
|
35
35
|
*/
|
|
36
|
-
"body-max-line-length": [0]
|
|
36
|
+
"body-max-line-length": [0],
|
|
37
|
+
/**
|
|
38
|
+
* Add "deps" to the list of allowed commit types.
|
|
39
|
+
* This allows us to support the case where release-please should
|
|
40
|
+
* create releases for dependabot updates.
|
|
41
|
+
*/
|
|
42
|
+
"type-enum": [
|
|
43
|
+
2,
|
|
44
|
+
"always",
|
|
45
|
+
[
|
|
46
|
+
"build",
|
|
47
|
+
"chore",
|
|
48
|
+
"ci",
|
|
49
|
+
"docs",
|
|
50
|
+
"feat",
|
|
51
|
+
"fix",
|
|
52
|
+
"perf",
|
|
53
|
+
"refactor",
|
|
54
|
+
"revert",
|
|
55
|
+
"style",
|
|
56
|
+
"test",
|
|
57
|
+
"deps"
|
|
58
|
+
]
|
|
59
|
+
]
|
|
37
60
|
}
|
|
38
61
|
};
|
|
39
62
|
module.exports = config;
|
package/dist/index.mjs
CHANGED
|
@@ -16,7 +16,30 @@ var require_src = __commonJS({
|
|
|
16
16
|
* This is because sometimes commit messages can contain structured data
|
|
17
17
|
* by some kind of tool (e.g. Dependabot), which can't be changed.
|
|
18
18
|
*/
|
|
19
|
-
"body-max-line-length": [0]
|
|
19
|
+
"body-max-line-length": [0],
|
|
20
|
+
/**
|
|
21
|
+
* Add "deps" to the list of allowed commit types.
|
|
22
|
+
* This allows us to support the case where release-please should
|
|
23
|
+
* create releases for dependabot updates.
|
|
24
|
+
*/
|
|
25
|
+
"type-enum": [
|
|
26
|
+
2,
|
|
27
|
+
"always",
|
|
28
|
+
[
|
|
29
|
+
"build",
|
|
30
|
+
"chore",
|
|
31
|
+
"ci",
|
|
32
|
+
"docs",
|
|
33
|
+
"feat",
|
|
34
|
+
"fix",
|
|
35
|
+
"perf",
|
|
36
|
+
"refactor",
|
|
37
|
+
"revert",
|
|
38
|
+
"style",
|
|
39
|
+
"test",
|
|
40
|
+
"deps"
|
|
41
|
+
]
|
|
42
|
+
]
|
|
20
43
|
}
|
|
21
44
|
};
|
|
22
45
|
module.exports = config;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@abinnovision/commitlint-config",
|
|
3
|
-
"version": "2.0
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"repository": {
|
|
5
5
|
"url": "https://github.com/abinnovision/js-commons"
|
|
6
6
|
},
|
|
@@ -41,15 +41,15 @@
|
|
|
41
41
|
},
|
|
42
42
|
"prettier": "@abinnovision/prettier-config",
|
|
43
43
|
"dependencies": {
|
|
44
|
-
"@commitlint/config-conventional": "^
|
|
44
|
+
"@commitlint/config-conventional": "^19.2.2"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@abinnovision/prettier-config": "^2.0.0",
|
|
48
48
|
"@commitlint/types": "^19.0.3",
|
|
49
|
-
"eslint": "^8.
|
|
50
|
-
"prettier": "^3.
|
|
51
|
-
"tsup": "^8.
|
|
52
|
-
"typescript": "^5.4
|
|
49
|
+
"eslint": "^8.57.0",
|
|
50
|
+
"prettier": "^3.3.3",
|
|
51
|
+
"tsup": "^8.2.4",
|
|
52
|
+
"typescript": "^5.5.4"
|
|
53
53
|
},
|
|
54
54
|
"packageManager": "yarn@3.4.1"
|
|
55
55
|
}
|