1
- // Must not use `* as yargs`, see https://github.com/yargs/yargs/issues/1131
2
- import yargs from "yargs" ;
3
1
import fs from "node:fs" ;
4
2
import path from "node:path" ;
5
3
import Debug from "debug" ;
6
4
import { parse as parseYaml } from "yaml" ;
5
+ // Must not use `* as yargs`, see https://github.com/yargs/yargs/issues/1131
6
+ import yargs from "yargs" ;
7
7
import { hideBin } from "yargs/helpers" ;
8
8
9
9
const debug = Debug ( "@chainsafe/benchmark/cli" ) ;
10
10
11
- import { benchmarkOptions , CLIOptions , fileCollectionOptions , storageOptions } from "./options.js" ;
12
- import { run } from "./run.js" ;
11
+ import { consoleLog } from "../utils/output.js" ;
13
12
import { compare } from "./compare.js" ;
13
+ import { CLIOptions , benchmarkOptions , fileCollectionOptions , storageOptions } from "./options.js" ;
14
+ import { run } from "./run.js" ;
14
15
15
16
void yargs ( hideBin ( process . argv ) )
16
17
. env ( "BENCHMARK" )
17
18
. scriptName ( "benchmark" )
18
19
. command ( {
19
20
command : [ "$0 [spec..]" , "inspect" ] ,
20
21
describe : "Run benchmarks" ,
21
- builder : function ( yar ) {
22
- return yar . options ( { ...fileCollectionOptions , ...storageOptions , ...benchmarkOptions } ) ;
23
- } ,
22
+ builder : ( yar ) => yar . options ( { ...fileCollectionOptions , ...storageOptions , ...benchmarkOptions } ) ,
24
23
handler : async ( argv ) => {
25
24
const cliOpts = { ...argv } as unknown as CLIOptions & { spec : string [ ] } ;
26
25
debug ( "Executing command run with %O" , cliOpts ) ;
@@ -32,9 +31,8 @@ void yargs(hideBin(process.argv))
32
31
command : "compare <dirs...>" ,
33
32
aliases : [ "cmp" ] ,
34
33
describe : "Compare multiple benchmark outputs" ,
35
- builder : function ( yar ) {
36
- return yar . option ( "dir" , { type : "string" , array : true , normalize : true , desc : "List of directories to compare" } ) ;
37
- } ,
34
+ builder : ( yar ) =>
35
+ yar . option ( "dir" , { type : "string" , array : true , normalize : true , desc : "List of directories to compare" } ) ,
38
36
handler : async ( argv ) => {
39
37
const cliOpts = { ...argv } as unknown as { dirs : string [ ] } ;
40
38
debug ( "Executing command compare with %O" , cliOpts ) ;
@@ -46,7 +44,9 @@ void yargs(hideBin(process.argv))
46
44
const ext = path . extname ( configPath ) ;
47
45
if ( ext === ".json" ) {
48
46
return JSON . parse ( fs . readFileSync ( configPath , "utf-8" ) ) as CLIOptions ;
49
- } else if ( ext === ".yaml" || ext === ".yml" ) {
47
+ }
48
+
49
+ if ( ext === ".yaml" || ext === ".yml" ) {
50
50
return parseYaml ( fs . readFileSync ( configPath , "utf8" ) ) as CLIOptions ;
51
51
}
52
52
@@ -73,17 +73,13 @@ void yargs(hideBin(process.argv))
73
73
. recommendCommands ( )
74
74
. showHelpOnFail ( true )
75
75
. fail ( ( msg , err ) => {
76
- if ( msg ) {
77
- // Show command help message when no command is provided
78
- if ( msg . includes ( "Not enough non-option arguments" ) ) {
79
- // eslint-disable-next-line no-console
80
- console . log ( "\n" ) ;
81
- }
76
+ // Show command help message when no command is provided
77
+ if ( msg ?. includes ( "Not enough non-option arguments" ) ) {
78
+ consoleLog ( "\n" ) ;
82
79
}
83
80
84
81
const errorMessage = err ? err . stack || err . message : msg || "Unknown error" ;
85
82
86
- // eslint-disable-next-line no-console
87
83
console . error ( ` ✖ ${ errorMessage } \n` ) ;
88
84
process . exit ( 1 ) ;
89
85
} )
0 commit comments