File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -55,15 +55,15 @@ const InitCommand: any = Command.extend({
55
55
56
56
// needs an explicit check in case it's just 'undefined'
57
57
// due to passing of options from 'new' and 'addon'
58
- let gitInit ;
58
+ let gitInit : any ;
59
59
if ( commandOptions . skipGit === false ) {
60
60
gitInit = new GitInit ( {
61
61
ui : this . ui ,
62
62
project : this . project
63
63
} ) ;
64
64
}
65
65
66
- let linkCli ;
66
+ let linkCli : any ;
67
67
if ( commandOptions . linkCli ) {
68
68
linkCli = new LinkCli ( {
69
69
ui : this . ui ,
@@ -72,7 +72,7 @@ const InitCommand: any = Command.extend({
72
72
} ) ;
73
73
}
74
74
75
- let npmInstall ;
75
+ let npmInstall : any ;
76
76
if ( ! commandOptions . skipNpm ) {
77
77
npmInstall = new NpmInstall ( {
78
78
ui : this . ui ,
@@ -81,7 +81,7 @@ const InitCommand: any = Command.extend({
81
81
} ) ;
82
82
}
83
83
84
- let bowerInstall ;
84
+ let bowerInstall : any ;
85
85
if ( ! commandOptions . skipBower ) {
86
86
bowerInstall = new this . tasks . BowerInstall ( {
87
87
ui : this . ui ,
You can’t perform that action at this time.
0 commit comments