File tree Expand file tree Collapse file tree 2 files changed +3
-8
lines changed
Expand file tree Collapse file tree 2 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 1111 },
1212 "files" : [
1313 " public/" ,
14- " server/" ,
1514 " dist/"
1615 ],
1716 "scripts" : {
1817 "build" : " tsc -p tsconfig.build.json && tsc-esm-fix --ext .js ./dist && chmod +x dist/cli.js" ,
1918 "cli:dashboard" : " node --watch --import tsx/esm src/cli.ts dashboard" ,
20- "cli:extract-metrics" : " node --watch -- import tsx/esm src/cli.ts extract-metrics" ,
21- "cli:generate-summary" : " node --watch -- import tsx/esm src/cli.ts generate-summary" ,
19+ "cli:extract-metrics" : " node --import tsx/esm src/cli.ts extract-metrics" ,
20+ "cli:generate-summary" : " node --import tsx/esm src/cli.ts generate-summary" ,
2221 "lint" : " eslint src/**/*.ts" ,
2322 "lint:fix" : " eslint src/**/*.ts --fix" ,
2423 "prepare" : " husky"
Original file line number Diff line number Diff line change @@ -44,11 +44,7 @@ yargs(hideBin(process.argv))
4444 async ( ) => {
4545 try {
4646 const subArgs = process . argv . slice ( 0 , 2 ) . concat ( process . argv . slice ( 3 ) ) ;
47- const result = await GenerateSummary . generate ( subArgs ) ;
48-
49- if ( ! result . success ) {
50- process . exit ( 1 ) ;
51- }
47+ await GenerateSummary . generate ( subArgs ) ;
5248 } catch ( error ) {
5349 logger . error ( 'Unexpected error during summary generation:' , error ) ;
5450 process . exit ( 1 ) ;
You can’t perform that action at this time.
0 commit comments