We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6ae3c6a commit 9cea6fdCopy full SHA for 9cea6fd
@commitlint/cz-commitlint/index.cjs
@@ -0,0 +1,4 @@
1
+/** @type {Awaited<typeof import('./lib/index.js')>['prompter']} */
2
+exports.prompter = async (...args) => {
3
+ (await import('./lib/index.js')).prompter(...args);
4
+};
@commitlint/cz-commitlint/package.json
@@ -6,9 +6,10 @@
6
"main": "./lib/index.js",
7
"exports": {
8
"import": "./lib/index.js",
9
- "require": "./lib/index.cjs"
+ "require": "./index.cjs"
10
},
11
"files": [
12
+ "index.cjs",
13
"lib"
14
],
15
"keywords": [
@commitlint/cz-commitlint/src/index.cjs
0 commit comments