@d-zero/commitlint-config 5.0.0-alpha.31 → 5.0.0-alpha.32

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/get-cz-config.js +1 -1
  2. package/package.json +3 -3
package/get-cz-config.js CHANGED
@@ -17,7 +17,7 @@ export async function getCZConfig() {
17
17
 
18
18
  const modPath = czConfigPath.replace(/^(?:\.\/)?node_modules\//, '');
19
19
 
20
- const czConfig = await import(modPath).catch((error) => null);
20
+ const czConfig = await import(modPath).catch(() => null);
21
21
 
22
22
  return czConfig?.default ?? czConfig ?? null;
23
23
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@d-zero/commitlint-config",
3
- "version": "5.0.0-alpha.31",
3
+ "version": "5.0.0-alpha.32",
4
4
  "description": "Configurations of commitlint",
5
5
  "repository": "https://github.com/d-zero-dev/linters.git",
6
6
  "author": "D-ZERO Co., Ltd.",
@@ -22,7 +22,7 @@
22
22
  "dependencies": {
23
23
  "@commitlint/cli": "19.3.0",
24
24
  "@commitlint/config-conventional": "19.2.2",
25
- "@d-zero/cz-config": "5.0.0-alpha.31"
25
+ "@d-zero/cz-config": "5.0.0-alpha.32"
26
26
  },
27
- "gitHead": "a889b518610d8e7884938881540f0a0248dc0d7e"
27
+ "gitHead": "029e2f6c7128b90f8e266029f97b8053fee81b42"
28
28
  }