File tree 4 files changed +11
-14
lines changed
4 files changed +11
-14
lines changed Original file line number Diff line number Diff line change @@ -501,7 +501,7 @@ class Jack {
501
501
cause = { name : field , found : value , validOptions : validOptions } ;
502
502
}
503
503
if ( valid && ! valid ( value ) ) {
504
- cause ??= { name : field , found : value } ;
504
+ cause = cause || { name : field , found : value } ;
505
505
}
506
506
if ( cause ) {
507
507
throw new Error ( `Invalid value provided for --${ field } : ${ JSON . stringify ( value ) } ` , { cause } ) ;
@@ -565,7 +565,7 @@ class Jack {
565
565
} ;
566
566
}
567
567
if ( config . validate && ! config . validate ( value ) ) {
568
- cause ??= { name : field , found : value } ;
568
+ cause = cause || { name : field , found : value } ;
569
569
}
570
570
if ( cause ) {
571
571
throw new Error ( `Invalid config value for ${ field } : ${ value } ` , {
Original file line number Diff line number Diff line change @@ -493,7 +493,7 @@ export class Jack {
493
493
cause = { name : field , found : value , validOptions : validOptions } ;
494
494
}
495
495
if ( valid && ! valid ( value ) ) {
496
- cause ??= { name : field , found : value } ;
496
+ cause = cause || { name : field , found : value } ;
497
497
}
498
498
if ( cause ) {
499
499
throw new Error ( `Invalid value provided for --${ field } : ${ JSON . stringify ( value ) } ` , { cause } ) ;
@@ -557,7 +557,7 @@ export class Jack {
557
557
} ;
558
558
}
559
559
if ( config . validate && ! config . validate ( value ) ) {
560
- cause ??= { name : field , found : value } ;
560
+ cause = cause || { name : field , found : value } ;
561
561
}
562
562
if ( cause ) {
563
563
throw new Error ( `Invalid config value for ${ field } : ${ value } ` , {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " jackspeak" ,
3
- "version" : " 3.4.0" ,
3
+ "publishConfig" : {
4
+ "tag" : " v3-legacy"
5
+ },
6
+ "version" : " 3.4.3" ,
4
7
"description" : " A very strict and proper argument parser." ,
5
8
"tshy" : {
6
9
"main" : true ,
66
69
"dependencies" : {
67
70
"@isaacs/cliui" : " ^8.0.2"
68
71
},
69
- "engines" : {
70
- "node" : " >=14"
71
- },
72
72
"funding" : {
73
73
"url" : " https://github.com/sponsors/isaacs"
74
74
},
Original file line number Diff line number Diff line change 7345
7345
}
7346
7346
},
7347
7347
"node_modules/jackspeak": {
7348
- "version": "3.4.0 ",
7349
- "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.0 .tgz",
7350
- "integrity": "sha512-JVYhQnN59LVPFCEcVa2C3CrEKYacvjRfqIQl+h8oi91aLYQVWRYbxjPcv1bUiUy/kLmQaANrYfNMCO3kuEDHfw ==",
7348
+ "version": "3.4.3 ",
7349
+ "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3 .tgz",
7350
+ "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw ==",
7351
7351
"inBundle": true,
7352
7352
"license": "BlueOak-1.0.0",
7353
7353
"dependencies": {
7354
7354
"@isaacs/cliui": "^8.0.2"
7355
7355
},
7356
- "engines": {
7357
- "node": ">=14"
7358
- },
7359
7356
"funding": {
7360
7357
"url": "https://github.com/sponsors/isaacs"
7361
7358
},
You can’t perform that action at this time.
0 commit comments