UNPKG

ng-packery

Version:
26 lines (19 loc) 558 B
'use strict'; /* bundleLogger * ------------ * Provides gulp style logs to the bundle method in browserify.js */ import gutil from 'gulp-util'; import prettyHrtime from 'pretty-hrtime'; var startTime; export default { start() { startTime = process.hrtime(); gutil.log('Running', gutil.colors.green(`'bundle'`) + '...'); }, end() { var taskTime = process.hrtime(startTime); var prettyTime = prettyHrtime(taskTime); gutil.log('Finished', gutil.colors.green(`'bundle'`), 'in', gutil.colors.magenta(prettyTime)); } };