File tree Expand file tree Collapse file tree 5 files changed +25
-5
lines changed Expand file tree Collapse file tree 5 files changed +25
-5
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 22 "name" : " @commitlint/core" ,
33 "version" : " 8.3.5" ,
44 "description" : " Lint your commit messages" ,
5+ "main" : " lib/index.js" ,
6+ "types" : " lib/index.d.ts" ,
57 "files" : [
6- " index.js "
8+ " lib/ "
79 ],
810 "scripts" : {
911 "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 1717 { "path" : " @commitlint/read" },
1818 { "path" : " @commitlint/rules" },
1919 { "path" : " @commitlint/lint" },
20+ { "path" : " @commitlint/core" },
2021 ]
2122}
You can’t perform that action at this time.
0 commit comments