Skip to content

Commit 6ae3c6a

Browse files
authored
feat: add CJS export for cz-commitlint (#3963)
* feat: add CJS export for cz-commitlint relates to: #3850 (comment) resolves #3949 * chore: add .cts to eslintrc * fix: workaround cts issues of vitest and typescript
1 parent f1dec32 commit 6ae3c6a

File tree

3 files changed

+9
-1
lines changed

3 files changed

+9
-1
lines changed

.eslintrc.cjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ module.exports = {
3737
},
3838
overrides: [
3939
{
40-
files: ['*.ts'],
40+
files: ['*.cts', '*.ts'],
4141
parser: '@typescript-eslint/parser',
4242
extends: [
4343
'plugin:@typescript-eslint/eslint-recommended',

@commitlint/cz-commitlint/package.json

+4
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@
44
"version": "19.0.3",
55
"description": "Commitizen adapter using the commitlint.config.js",
66
"main": "./lib/index.js",
7+
"exports": {
8+
"import": "./lib/index.js",
9+
"require": "./lib/index.cjs"
10+
},
711
"files": [
812
"lib"
913
],
+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
/** @type {Awaited<typeof import('./index.js')>['prompter']} */
2+
exports.prompter = async (...args) => {
3+
(await import('./index.js')).prompter(...args);
4+
};

0 commit comments

Comments
 (0)