File tree Expand file tree Collapse file tree 5 files changed +21
-19
lines changed
Expand file tree Collapse file tree 5 files changed +21
-19
lines changed Original file line number Diff line number Diff line change 6565 "reformat" : " prettier --write ." ,
6666 "generate" : " pnpm run generate:api && pnpm run generate:arguments" ,
6767 "generate:api" : " ./scripts/generate.sh" ,
68- "generate:arguments" : " tsx scripts/generate/index.ts" ,
68+ "generate:arguments" : " tsx --tsconfig scripts/generate/tsconfig.json scripts/generate/index.ts" ,
6969 "pretest" : " pnpm run build" ,
7070 "test" : " vitest --project eslint-rules --project unit-and-integration --coverage --run" ,
7171 "test:accuracy" : " sh ./scripts/accuracy/runAccuracyTests.sh" ,
Original file line number Diff line number Diff line change 99import { generateArguments } from "./generateArguments.js" ;
1010import { generateToolDocumentation } from "./generateToolDocumentation.js" ;
1111
12- function main ( ) : void {
13- console . log ( "Generating arguments and configuration..." ) ;
14- generateArguments ( ) ;
12+ console . log ( "Generating arguments and configuration..." ) ;
13+ generateArguments ( ) ;
1514
16- console . log ( "\nGenerating tool documentation..." ) ;
17- generateToolDocumentation ( ) ;
15+ console . log ( "\nGenerating tool documentation..." ) ;
16+ generateToolDocumentation ( ) ;
1817
19- console . log ( "\n✅ All documentation generated successfully!" ) ;
20- }
21-
22- main ( ) ;
18+ console . log ( "\n✅ All documentation generated successfully!" ) ;
Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " ../../tsconfig.build.json" ,
3+ "compilerOptions" : {
4+ "rootDir" : " ." ,
5+ "noEmit" : true ,
6+ "paths" : {
7+ "ts-levenshtein" : [" ../node_modules/ts-levenshtein/dist/index.d.mts" ]
8+ }
9+ },
10+ "include" : [" **/*.ts" ]
11+ }
Original file line number Diff line number Diff line change 1919 "declaration" : true ,
2020 "declarationMap" : true ,
2121 "paths" : {
22- "ts-levenshtein" : [" ./node_modules/ts-levenshtein/dist/index.d.mts" ]
22+ "ts-levenshtein" : [" ./node_modules/ts-levenshtein/dist/index.d.mts" ],
23+ "mongodb-connection-string-url" : [
24+ " ./node_modules/mongodb-connection-string-url/lib/index.d.ts"
25+ ]
2326 }
2427 },
2528 "include" : [" src/**/*.ts" ]
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments