File tree 5 files changed +25
-5
lines changed
5 files changed +25
-5
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2
2
"name" : " @commitlint/core" ,
3
3
"version" : " 8.3.5" ,
4
4
"description" : " Lint your commit messages" ,
5
+ "main" : " lib/core.js" ,
6
+ "types" : " lib/core.d.ts" ,
5
7
"files" : [
6
- " index.js "
8
+ " lib/ "
7
9
],
8
10
"scripts" : {
9
11
"deps" : " dep-check" ,
Original file line number Diff line number Diff line change
1
+ import format from '@commitlint/format' ;
2
+ import load from '@commitlint/load' ;
3
+ import lint from '@commitlint/lint' ;
4
+ import read from '@commitlint/read' ;
5
+
6
+ export = {
7
+ format,
8
+ load,
9
+ lint,
10
+ read
11
+ } ;
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../../tsconfig.shared.json" ,
3
+ "compilerOptions" : {
4
+ "composite" : true ,
5
+ "rootDir" : " ./src" ,
6
+ "outDir" : " ./lib"
7
+ },
8
+ "include" : [" ./src/**/*.ts" ],
9
+ "exclude" : [" ./src/**/*.test.ts" , " ./lib/**/*" ]
10
+ }
Original file line number Diff line number Diff line change 18
18
{ "path" : " @commitlint/read" },
19
19
{ "path" : " @commitlint/rules" },
20
20
{ "path" : " @commitlint/lint" },
21
+ { "path" : " @commitlint/core" },
21
22
]
22
23
}
You can’t perform that action at this time.
0 commit comments