From bb9d36af91b2853a090b2c6db00e6d08ca2c7da8 Mon Sep 17 00:00:00 2001 From: Segev Finer Date: Sun, 10 Sep 2023 23:40:10 +0300 Subject: [PATCH] Replace pino-colada in help messages with pino-pretty --- generate.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/generate.js b/generate.js index 68371321..90be981f 100755 --- a/generate.js +++ b/generate.js @@ -36,7 +36,7 @@ const javascriptTemplate = { log('info', `project ${pkg.name} generated successfully`) log('debug', `run '${chalk.bold('npm install')}' to install the dependencies`) log('debug', `run '${chalk.bold('npm start')}' to start the application`) - log('debug', `run '${chalk.bold('npm run dev')}' to start the application with pino-colada pretty logging (not suitable for production)`) + log('debug', `run '${chalk.bold('npm run dev')}' to start the application with pino-pretty pretty logging (not suitable for production)`) log('debug', `run '${chalk.bold('npm test')}' to execute the unit tests`) if (pkg.scripts.lint) { @@ -82,7 +82,7 @@ const typescriptTemplate = { log('debug', `run '${chalk.bold('npm install')}' to install the dependencies`) log('debug', `run '${chalk.bold('npm start')}' to start the application`) log('debug', `run '${chalk.bold('npm build:ts')}' to compile the typescript application`) - log('debug', `run '${chalk.bold('npm run dev')}' to start the application with pino-colada pretty logging (not suitable for production)`) + log('debug', `run '${chalk.bold('npm run dev')}' to start the application with pino-pretty pretty logging (not suitable for production)`) log('debug', `run '${chalk.bold('npm test')}' to execute the unit tests`) } }