UNPKG

generator-karma-gulp-browserify

Version:
19 lines (15 loc) 458 B
'use strict'; const gutil = require('gulp-util'); const prettyHrtime = require('pretty-hrtime'); let startTime; module.exports = { start() { startTime = process.hrtime(); gutil.log('Running', gutil.colors.green('bundle') + '...'); }, end() { const taskTime = process.hrtime(startTime); const prettyTime = prettyHrtime(taskTime); gutil.log('Finished', gutil.colors.green('bundle'), 'in', gutil.colors.magenta(prettyTime)); } };