This repository was archived by the owner on Aug 22, 2023. It is now read-only.
File tree 3 files changed +11
-11
lines changed
3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 13
13
"lodash" : " ^4.17.4"
14
14
},
15
15
"devDependencies" : {
16
- "@anycli/config" : " ^1.0.11 " ,
16
+ "@anycli/config" : " ^1.0.16 " ,
17
17
"@anycli/plugin-help" : " ^0.5.0" ,
18
18
"@anycli/tslint" : " ^0.2.5" ,
19
19
"@types/chai" : " ^4.1.2" ,
29
29
"concurrently" : " ^3.5.1" ,
30
30
"eslint" : " ^4.17.0" ,
31
31
"eslint-config-anycli" : " ^1.3.2" ,
32
- "fancy-test" : " ^0.6.9 " ,
32
+ "fancy-test" : " ^0.6.10 " ,
33
33
"http-call" : " ^5.0.2" ,
34
34
"mocha" : " ^5.0.0" ,
35
35
"nock" : " ^9.1.6" ,
Original file line number Diff line number Diff line change @@ -29,9 +29,9 @@ export default abstract class Command {
29
29
/**
30
30
* instantiate and run the command
31
31
*/
32
- static run : Config . Command . Full [ 'run' ] = async function ( this : Config . Command . Full , argv = process . argv . slice ( 2 ) , opts ) {
33
- let cmd = new this < Command > ( argv , opts )
34
- await cmd . _run ( )
32
+ static run : Config . Command . Class [ 'run' ] = async function ( this : Config . Command . Class , argv = process . argv . slice ( 2 ) , opts ) {
33
+ let cmd = new this ( argv , opts )
34
+ await cmd . _run ( argv )
35
35
}
36
36
37
37
// we disable these so that it's clear they need to be static not instance properties
Original file line number Diff line number Diff line change 12
12
lodash "^4.17.4"
13
13
tslib "^1.9.0"
14
14
15
- " @anycli/config@^1.0.11 " :
16
- version "1.0.11 "
17
- resolved "https://registry.yarnpkg.com/@anycli/config/-/config-1.0.11 .tgz#c7cbf17c07abd1a2f68e0c1992edf5fbbf0dd87b "
15
+ " @anycli/config@^1.0.16 " :
16
+ version "1.0.16 "
17
+ resolved "https://registry.yarnpkg.com/@anycli/config/-/config-1.0.16 .tgz#dc21f8487655fee9b225acfbda65cd2939f997cf "
18
18
dependencies :
19
19
cli-ux "^3.3.13"
20
20
debug "^3.1.0"
@@ -665,9 +665,9 @@ extract-stack@^1.0.0:
665
665
version "1.0.0"
666
666
resolved "https://registry.yarnpkg.com/extract-stack/-/extract-stack-1.0.0.tgz#b97acaf9441eea2332529624b732fc5a1c8165fa"
667
667
668
- fancy-test@^0.6.9 :
669
- version "0.6.9 "
670
- resolved "https://registry.yarnpkg.com/fancy-test/-/fancy-test-0.6.9 .tgz#058242ae313b80d3e720120876c79d429e6a8b02 "
668
+ fancy-test@^0.6.10 :
669
+ version "0.6.10 "
670
+ resolved "https://registry.yarnpkg.com/fancy-test/-/fancy-test-0.6.10 .tgz#39001bcb117b7067c851dc58da6236a08a49e267 "
671
671
dependencies :
672
672
lodash "^4.17.4"
673
673
stdout-stderr "^0.1.6"
You can’t perform that action at this time.
0 commit comments