@taiga-ui/commitlint-config 0.247.0 → 0.249.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/commitlint.config.js +2 -1
- package/package.json +3 -3
package/commitlint.config.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import fs from 'node:fs';
|
|
2
1
|
import conventional from '@commitlint/config-conventional';
|
|
2
|
+
import fs from 'node:fs';
|
|
3
3
|
|
|
4
4
|
export default {
|
|
5
5
|
extends: ['@commitlint/config-conventional'],
|
|
@@ -8,6 +8,7 @@ export default {
|
|
|
8
8
|
function getTypes(dir) {
|
|
9
9
|
try {
|
|
10
10
|
const {readdirSync, statSync} = fs;
|
|
11
|
+
|
|
11
12
|
return readdirSync(dir).filter((entity) =>
|
|
12
13
|
statSync(`${dir}/${entity}`).isDirectory(),
|
|
13
14
|
);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@taiga-ui/commitlint-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.249.0",
|
|
4
4
|
"description": "Taiga UI commitlint config",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"commitlint",
|
|
@@ -14,8 +14,8 @@
|
|
|
14
14
|
"type": "module",
|
|
15
15
|
"exports": "./commitlint.config.js",
|
|
16
16
|
"peerDependencies": {
|
|
17
|
-
"@commitlint/cli": "^19.
|
|
18
|
-
"@commitlint/config-conventional": "^19.
|
|
17
|
+
"@commitlint/cli": "^19.7.1",
|
|
18
|
+
"@commitlint/config-conventional": "^19.7.1"
|
|
19
19
|
},
|
|
20
20
|
"publishConfig": {
|
|
21
21
|
"access": "public"
|