Commit dd805fc8 by xzyfer Committed by Michael Mifsud

Emit normal output as info not warn

parent abbc6577
......@@ -329,7 +329,7 @@ function run(options, emitter) {
function renderFile(file, options, emitter) {
options = getOptions([path.resolve(file)], options);
if (options.watch) {
emitter.emit('warn', util.format('=> changed: %s', file));
emitter.emit('info', util.format('=> changed: %s', file));
}
render(options, emitter);
}
......@@ -355,7 +355,7 @@ function renderDir(options, emitter) {
renderFile(subject, options, emitter);
}, function(successful, arr) {
var outputDir = path.join(process.cwd(), options.output);
emitter.emit('warn', util.format('Wrote %s CSS files to %s', arr.length, outputDir));
emitter.emit('info', util.format('Wrote %s CSS files to %s', arr.length, outputDir));
process.exit();
});
});
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment