File tree 3 files changed +9
-1
lines changed
@commitlint/cz-commitlint
3 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ module.exports = {
37
37
} ,
38
38
overrides : [
39
39
{
40
- files : [ '*.ts' ] ,
40
+ files : [ '*.cts' , '*. ts'] ,
41
41
parser : '@typescript-eslint/parser' ,
42
42
extends : [
43
43
'plugin:@typescript-eslint/eslint-recommended' ,
Original file line number Diff line number Diff line change 4
4
"version" : " 19.0.3" ,
5
5
"description" : " Commitizen adapter using the commitlint.config.js" ,
6
6
"main" : " ./lib/index.js" ,
7
+ "exports" : {
8
+ "import" : " ./lib/index.js" ,
9
+ "require" : " ./lib/index.cjs"
10
+ },
7
11
"files" : [
8
12
" lib"
9
13
],
Original file line number Diff line number Diff line change
1
+ /** @type {Awaited<typeof import('./index.js')>['prompter'] } */
2
+ exports . prompter = async ( ...args ) => {
3
+ ( await import ( './index.js' ) ) . prompter ( ...args ) ;
4
+ } ;
You can’t perform that action at this time.
0 commit comments