From f8e237b26526bd6b4c377a7a5af6f5cbd3ba46d0 Mon Sep 17 00:00:00 2001 From: Rich Harris Date: Sat, 23 Dec 2017 10:55:55 -0500 Subject: [PATCH] make invalidation message look less like an error --- lib/utils/create_watcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/create_watcher.js b/lib/utils/create_watcher.js index 9239bdd..b4ed3bf 100644 --- a/lib/utils/create_watcher.js +++ b/lib/utils/create_watcher.js @@ -42,7 +42,7 @@ module.exports = function create_watcher() { const compiler = compilers[type]; compiler.plugin('invalid', filename => { - console.log(chalk.red(`${type} bundle invalidated, file changed: ${chalk.bold(filename)}`)); + console.log(chalk.cyan(`${type} bundle invalidated, file changed: ${chalk.bold(filename)}`)); deferreds[type] = deferred(); watcher.ready = invalidate(); });