@@ -186,9 +186,11 @@ export async function setupI18nSupport(
186
186
*/
187
187
export async function shouldInstallDependencies (
188
188
behavior : Behavior ,
189
+ isDev : boolean ,
189
190
) : Promise < boolean > {
190
191
if ( behavior === "autoYes" ) return true ;
191
192
if ( behavior === "autoNo" ) return false ;
193
+ if ( isDev ) return false ;
192
194
193
195
return await confirmPrompt ( {
194
196
title : "Would you like to install dependencies now?" ,
@@ -210,7 +212,7 @@ export async function handleDependencies(
210
212
config : ReliverseConfig ,
211
213
) {
212
214
const depsBehavior : Behavior = config ?. depsBehavior ?? "prompt" ;
213
- const shouldInstallDeps = await shouldInstallDependencies ( depsBehavior ) ;
215
+ const shouldInstallDeps = await shouldInstallDependencies ( depsBehavior , true ) ;
214
216
215
217
let shouldRunDbPush = false ;
216
218
if ( shouldInstallDeps ) {
@@ -347,7 +349,6 @@ export async function showSuccessAndNextSteps(
347
349
await handleNextActions (
348
350
effectiveProjectPath ,
349
351
vscodeInstalled ,
350
- frontendUsername ,
351
352
isDeployed ,
352
353
primaryDomain ,
353
354
allDomains ,
@@ -356,7 +357,7 @@ export async function showSuccessAndNextSteps(
356
357
357
358
relinka (
358
359
"success" ,
359
- "✨ One more thing you can try (experimental):" ,
360
+ "✨ One more thing you can try (highly experimental):" ,
360
361
"👉 `reliverse cli` in your new project to add/remove features." ,
361
362
) ;
362
363
@@ -374,7 +375,6 @@ export async function showSuccessAndNextSteps(
374
375
export async function handleNextActions (
375
376
projectPath : string ,
376
377
vscodeInstalled : boolean ,
377
- frontendUsername : string ,
378
378
isDeployed : boolean ,
379
379
primaryDomain : string ,
380
380
allDomains : string [ ] ,
@@ -417,10 +417,6 @@ export async function handleNextActions(
417
417
for ( const action of nextActions ) {
418
418
await handleNextAction ( action , projectPath , primaryDomain , allDomains ) ;
419
419
}
420
- relinka (
421
- "info" ,
422
- frontendUsername ? `See you soon, ${ frontendUsername } !` : "Done for now!" ,
423
- ) ;
424
420
}
425
421
426
422
/**
0 commit comments