added --verbose flag for grunt dev

v1.18.x
psychobunny 10 years ago
parent 8d121e7724
commit 6c5395dd05

@ -8,11 +8,15 @@ var fork = require('child_process').fork,
module.exports = function(grunt) {
function update(action, filepath, target) {
var args = ['--log-level=info'],
var args = [],
fromFile = '',
compiling = '',
time = Date.now();
if (grunt.option('verbose')) {
args.push('--log-level=info');
}
if (target === 'lessUpdated') {
fromFile = ['js','tpl'];
compiling = 'less';
@ -39,8 +43,11 @@ module.exports = function(grunt) {
worker.on('message', function() {
if (incomplete.length) {
incomplete = [];
if (grunt.option('verbose')) {
grunt.log.writeln('NodeBB restarted in ' + (Date.now() - time) + ' ms');
}
}
});
}

Loading…
Cancel
Save