@@ -101,7 +101,7 @@ type PromptResult = {
101
101
e2eFramework ?: 'cypress' | 'nightwatch' | 'playwright'
102
102
experimentFeatures ?: ( typeof EXPERIMENTAL_FEATURE_OPTIONS ) [ number ] [ 'value' ] [ ]
103
103
needsBareboneTemplates ? : boolean
104
- needsAutomaticalllyInstallDependencies ? : boolean
104
+ needsAutomaticallyInstallDependencies ? : boolean
105
105
}
106
106
107
107
function isValidPackageName ( projectName ) {
@@ -257,7 +257,7 @@ async function init() {
257
257
// TODO: default to true sometime in the future
258
258
needsBareboneTemplates : false ,
259
259
// TODO: default to false sometime in the future
260
- needsAutomaticalllyInstallDependencies : false ,
260
+ needsAutomaticallyInstallDependencies : false ,
261
261
}
262
262
263
263
intro (
@@ -683,9 +683,9 @@ async function init() {
683
683
} ) ,
684
684
)
685
685
686
- result . needsAutomaticalllyInstallDependencies = await unwrapPrompt (
686
+ result . needsAutomaticallyInstallDependencies = await unwrapPrompt (
687
687
confirm ( {
688
- message : language . needsAutomaticalllyInstallDependencies . message ,
688
+ message : language . needsAutomaticallyInstallDependencies . message ,
689
689
// TODO: default to true sometime in the future
690
690
initialValue : false ,
691
691
} ) ,
@@ -696,7 +696,7 @@ async function init() {
696
696
const cdProjectName = path . relative ( cwd , root )
697
697
outroMessage += ` ${ bold ( green ( `cd ${ cdProjectName . includes ( ' ' ) ? `"${ cdProjectName } "` : cdProjectName } ` ) ) } \n`
698
698
}
699
- if ( ! result . needsAutomaticalllyInstallDependencies ) {
699
+ if ( ! result . needsAutomaticallyInstallDependencies ) {
700
700
outroMessage += ` ${bold ( green ( getCommand ( packageManager , 'install' ) ) ) } \n`
701
701
}
702
702
if ( needsPrettier ) {
@@ -710,7 +710,7 @@ async function init() {
710
710
${ bold ( green ( 'git init && git add -A && git commit -m "initial commit"' ) ) } `
711
711
}
712
712
713
- if ( ! result . needsAutomaticalllyInstallDependencies ) {
713
+ if ( ! result . needsAutomaticallyInstallDependencies ) {
714
714
outro ( outroMessage )
715
715
return
716
716
}
0 commit comments