From db182ddbfd4b44f025f5f97e9994085818495d9a Mon Sep 17 00:00:00 2001 From: Abhinav R <76396917+Abhinav-ark@users.noreply.github.com> Date: Thu, 19 Sep 2024 20:45:51 +0530 Subject: [PATCH] chalk added for "npm init" command status indicator. --- bin/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/index.js b/bin/index.js index bec539d..7f6a1b1 100644 --- a/bin/index.js +++ b/bin/index.js @@ -31,7 +31,7 @@ program const parentDir = path.dirname(__dirname); const templatePath = path.join(parentDir, "templates", template.name); const destinationPath = path.join(targetDir); - const npmInit = chalk.bgWhite.black("npm init"); + const npmInit = chalk.yellow.bold("npm init"); const initSpinner = createSpinner(`Running ${npmInit}...`).start(); try {