We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 978d932 commit 04dff62Copy full SHA for 04dff62
src/cli/run.js
@@ -100,7 +100,9 @@ module.exports = function (argv) {
100
101
// Be nice and create a default db.json if it doesn't exist
102
if (is.JSON(source) && !fs.existsSync(source)) {
103
- console.log(chalk.gray(` ${source} doesn't seem to exist, creating one`))
+ console.log(chalk.yellow(` Oops, ${source} doesn't seem to exist`))
104
+ console.log(chalk.yellow(` Creating ${source} with some default data`))
105
+ console.log()
106
fs.writeFileSync(source, JSON.stringify(example, null, 2))
107
}
108
0 commit comments