提交 2493556c 编写于 作者: J Joao Moreno

fixes #9269

上级 e3cc6afb
......@@ -19,7 +19,7 @@ function onStart() {
}
startTime = new Date().getTime();
util.log(util.colors.green('Starting compilation'));
util.log(`Starting ${ util.colors.green('compilation') }...`);
}
function onEnd() {
......@@ -30,7 +30,7 @@ function onEnd() {
var errors = _.flatten(allErrors);
errors.map(err => util.log(`${ util.colors.red('Error') }: ${ err }`));
util.log(`${ util.colors.green('Finished compilation') } with ${ util.colors.red(errors.length + ' errors') } in ${ util.colors.blue((new Date().getTime() - startTime) + 'ms') }.`);
util.log(`Finished ${ util.colors.green('compilation') } with ${ errors.length } errors after ${ util.colors.magenta((new Date().getTime() - startTime) + ' ms') }`);
}
module.exports = function () {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册