From 3001d8859ede6e2797f78dba0b6aae9232bb6ef1 Mon Sep 17 00:00:00 2001 From: David Gomes Date: Fri, 12 Jul 2024 14:25:03 +0200 Subject: [PATCH] fix: color final instructions in green (#244) --- package-lock.json | 2 ++ src/commands/bootstrap/index.ts | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/package-lock.json b/package-lock.json index f21e07a..3c9b58c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -2191,6 +2191,7 @@ }, "node_modules/@types/validate-npm-package-name": { "version": "4.0.2", + "dev": true, "license": "MIT" }, "node_modules/@types/which": { @@ -9955,6 +9956,7 @@ }, "node_modules/picocolors": { "version": "1.0.1", + "dev": true, "license": "ISC" }, "node_modules/picomatch": { diff --git a/src/commands/bootstrap/index.ts b/src/commands/bootstrap/index.ts index 7efc43e..ca7f750 100644 --- a/src/commands/bootstrap/index.ts +++ b/src/commands/bootstrap/index.ts @@ -712,13 +712,13 @@ ${environmentVariables if (finalOptions.framework === 'Next.js') { log.info( - ` + chalk.green(` You can now run: cd ${appName} && ${finalOptions.packageManager} run dev -to start the app locally.`, +to start the app locally.`), ); } };