diff --git a/src/cli/run.js b/src/cli/run.js index b935e50..e80be91 100644 --- a/src/cli/run.js +++ b/src/cli/run.js @@ -100,7 +100,9 @@ module.exports = function (argv) { // Be nice and create a default db.json if it doesn't exist if (is.JSON(source) && !fs.existsSync(source)) { - console.log(chalk.gray(` ${source} doesn't seem to exist, creating one`)) + console.log(chalk.yellow(` Oops, ${source} doesn't seem to exist`)) + console.log(chalk.yellow(` Creating ${source} with some default data`)) + console.log() fs.writeFileSync(source, JSON.stringify(example, null, 2)) }