From 36285c8a90f48e96c976877fb8c552a0106f88eb Mon Sep 17 00:00:00 2001 From: given Date: Wed, 22 Jun 2022 04:59:35 -0400 Subject: [PATCH] chore(init): change wording for existing .gitignore warning (#13926) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: Joël Galeran --- packages/cli/src/Init.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/cli/src/Init.ts b/packages/cli/src/Init.ts index 352fced6a2f3..d29d70d861a7 100644 --- a/packages/cli/src/Init.ts +++ b/packages/cli/src/Init.ts @@ -262,7 +262,7 @@ export class Init implements Command { warnings.push( `${chalk.yellow( 'warn', - )} You already have a .gitignore. Don't forget to exclude .env to not commit any secret.`, + )} You already have a .gitignore file. Don't forget to add \`.env\` in it to not commit any private information.`, ) } else { console.error('Failed to write .gitignore file, reason: ', e)