@@ -101,7 +101,7 @@ type PromptResult = {
101101 e2eFramework ?: 'cypress' | 'nightwatch' | 'playwright'
102102 experimentFeatures ?: ( typeof EXPERIMENTAL_FEATURE_OPTIONS ) [ number ] [ 'value' ] [ ]
103103 needsBareboneTemplates ? : boolean
104- needsAutomaticalllyInstallDependencies ? : boolean
104+ needsAutomaticallyInstallDependencies ? : boolean
105105}
106106
107107function isValidPackageName ( projectName ) {
@@ -257,7 +257,7 @@ async function init() {
257257 // TODO: default to true sometime in the future
258258 needsBareboneTemplates : false ,
259259 // TODO: default to false sometime in the future
260- needsAutomaticalllyInstallDependencies : false ,
260+ needsAutomaticallyInstallDependencies : false ,
261261 }
262262
263263 intro (
@@ -683,9 +683,9 @@ async function init() {
683683 } ) ,
684684 )
685685
686- result . needsAutomaticalllyInstallDependencies = await unwrapPrompt (
686+ result . needsAutomaticallyInstallDependencies = await unwrapPrompt (
687687 confirm ( {
688- message : language . needsAutomaticalllyInstallDependencies . message ,
688+ message : language . needsAutomaticallyInstallDependencies . message ,
689689 // TODO: default to true sometime in the future
690690 initialValue : false ,
691691 } ) ,
@@ -696,7 +696,7 @@ async function init() {
696696 const cdProjectName = path . relative ( cwd , root )
697697 outroMessage += ` ${ bold ( green ( `cd ${ cdProjectName . includes ( ' ' ) ? `"${ cdProjectName } "` : cdProjectName } ` ) ) } \n`
698698 }
699- if ( ! result . needsAutomaticalllyInstallDependencies ) {
699+ if ( ! result . needsAutomaticallyInstallDependencies ) {
700700 outroMessage += ` ${bold ( green ( getCommand ( packageManager , 'install' ) ) ) } \n`
701701 }
702702 if ( needsPrettier ) {
@@ -710,7 +710,7 @@ async function init() {
710710 ${ bold ( green ( 'git init && git add -A && git commit -m "initial commit"' ) ) } `
711711 }
712712
713- if ( ! result . needsAutomaticalllyInstallDependencies ) {
713+ if ( ! result . needsAutomaticallyInstallDependencies ) {
714714 outro ( outroMessage )
715715 return
716716 }
0 commit comments