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 12bc324 commit 6c55737Copy full SHA for 6c55737
dist/logger.js
@@ -7,13 +7,13 @@ var Logger = {
7
8
start: function (file) {
9
startTime = process.hrtime()
10
- gutil.log('Starting ' + gutil.colors.green('Bundling', file) + '...')
+ gutil.log('Starting ' + 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.yellow('bundling of', file) + ' in ' +
+ gutil.log('Finished ' + gutil.colors.green('bundling of ', file) + ' in ' +
17
gutil.colors.magenta(prettyTime))
18
19
0 commit comments