From da86f51aed203f34794e7a250b2d314132177dda Mon Sep 17 00:00:00 2001 From: Chrilleweb Date: Fri, 6 Feb 2026 20:07:36 +0100 Subject: [PATCH] fix: Added more space after prompt --- src/ui/compare/printPrompt.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/ui/compare/printPrompt.ts b/src/ui/compare/printPrompt.ts index 6e35762..9eeb0e1 100644 --- a/src/ui/compare/printPrompt.ts +++ b/src/ui/compare/printPrompt.ts @@ -6,6 +6,7 @@ import path from 'path'; */ export const printPrompt = { noEnvFound() { + console.log(); console.log( chalk.yellow( '⚠️ No .env* or .env.example file found. Skipping comparison.', @@ -19,10 +20,12 @@ export const printPrompt = { }, skipCreation(fileType: string) { + console.log(); console.log(chalk.gray(`🚫 Skipping ${fileType} creation.`)); }, envCreated(envPath: string, examplePath: string) { + console.log(); console.log( chalk.green( `✅ ${path.basename(envPath)} file created successfully from ${path.basename(examplePath)}.`, @@ -31,6 +34,7 @@ export const printPrompt = { }, exampleCreated(examplePath: string, envPath: string) { + console.log(); console.log( chalk.green( `✅ ${path.basename(examplePath)} file created successfully from ${path.basename(envPath)}.`,