You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
568 B
JavaScript
22 lines
568 B
JavaScript
10 years ago
|
/* bundleLogger
|
||
|
------------
|
||
|
Provides gulp style logs to the bundle method in browserify.js
|
||
|
*/
|
||
|
|
||
|
var gutil = require('gulp-util');
|
||
|
var prettyHrtime = require('pretty-hrtime');
|
||
|
var startTime;
|
||
|
|
||
|
module.exports = {
|
||
|
start: function() {
|
||
|
startTime = process.hrtime();
|
||
|
gutil.log('Running', gutil.colors.green("'bundle'") + '...');
|
||
|
},
|
||
|
|
||
|
end: function() {
|
||
|
var taskTime = process.hrtime(startTime);
|
||
|
var prettyTime = prettyHrtime(taskTime);
|
||
|
gutil.log('Finished', gutil.colors.green("'bundle'"), 'in', gutil.colors.magenta(prettyTime));
|
||
|
}
|
||
|
};
|