We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 288124f commit 0479aecCopy full SHA for 0479aec
dist/logger.js
@@ -7,13 +7,13 @@ var Logger = {
7
8
start: function (file) {
9
startTime = process.hrtime()
10
- gutil.log('Starting ' + gutil.colors.cyan(file) + '...')
+ gutil.log('Starting bundling of \'' + gutil.colors.cyan(file) + '\'.')
11
},
12
13
end: function (file) {
14
const taskTime = process.hrtime(startTime)
15
const prettyTime = prettyHrtime(taskTime)
16
- gutil.log('Finished ' + gutil.colors.green('bundling of ', file) + ' in ' +
+ gutil.log('Finished bundling of \'' + gutil.colors.green(file) + '\' in ' +
17
gutil.colors.magenta(prettyTime))
18
19
0 commit comments