File tree 2 files changed +14
-13
lines changed
2 files changed +14
-13
lines changed Original file line number Diff line number Diff line change @@ -78,7 +78,7 @@ declare namespace meow {
78
78
readonly autoVersion ?: boolean ;
79
79
80
80
/**
81
- package.json as an `Object`. Default: Closest package.json upwards.
81
+ ` package.json` as an `Object`. Default: Closest ` package.json` upwards.
82
82
83
83
_You most likely don't need this option._
84
84
*/
@@ -89,7 +89,7 @@ declare namespace meow {
89
89
90
90
@default process.argv.slice(2)
91
91
*/
92
- readonly argv ?: ReadonlyArray < string > ;
92
+ readonly argv ?: readonly string [ ] ;
93
93
94
94
/**
95
95
Infer the argument type.
@@ -213,12 +213,12 @@ declare namespace meow {
213
213
214
214
@param exitCode - The exit code to use. Default: `2`.
215
215
*/
216
- showHelp ( exitCode ?: number ) : void ;
216
+ showHelp : ( exitCode ?: number ) => void ;
217
217
218
218
/**
219
219
Show the version text and exit.
220
220
*/
221
- showVersion ( ) : void ;
221
+ showVersion : ( ) => void ;
222
222
}
223
223
}
224
224
/**
Original file line number Diff line number Diff line change 41
41
],
42
42
"dependencies" : {
43
43
"@types/minimist" : " ^1.2.0" ,
44
- "camelcase-keys" : " ^6.1.1 " ,
44
+ "camelcase-keys" : " ^6.2.2 " ,
45
45
"decamelize-keys" : " ^1.1.0" ,
46
- "hard-rejection" : " ^2.0 .0" ,
47
- "minimist-options" : " ^4.0.1 " ,
46
+ "hard-rejection" : " ^2.1 .0" ,
47
+ "minimist-options" : " ^4.0.2 " ,
48
48
"normalize-package-data" : " ^2.5.0" ,
49
- "read-pkg-up" : " ^7.0.0 " ,
49
+ "read-pkg-up" : " ^7.0.1 " ,
50
50
"redent" : " ^3.0.0" ,
51
51
"trim-newlines" : " ^3.0.0" ,
52
- "type-fest" : " ^0.8 .1" ,
53
- "yargs-parser" : " ^18.1.1 "
52
+ "type-fest" : " ^0.13 .1" ,
53
+ "yargs-parser" : " ^18.1.3 "
54
54
},
55
55
"devDependencies" : {
56
56
"ava" : " ^2.4.0" ,
57
- "execa" : " ^3.3 .0" ,
57
+ "execa" : " ^4.0 .0" ,
58
58
"indent-string" : " ^4.0.0" ,
59
59
"tsd" : " ^0.11.0" ,
60
- "xo" : " ^0.25.3 "
60
+ "xo" : " ^0.30.0 "
61
61
},
62
62
"xo" : {
63
63
"rules" : {
64
- "unicorn/no-process-exit" : " off"
64
+ "unicorn/no-process-exit" : " off" ,
65
+ "node/no-unsupported-features/es-syntax" : " off"
65
66
}
66
67
}
67
68
}
You can’t perform that action at this time.
0 commit comments