From 57562ad22281f4326dec3c945568924e4103a2fb Mon Sep 17 00:00:00 2001 From: Matthias Kretschmann Date: Sat, 26 Sep 2015 22:22:40 +0200 Subject: [PATCH] output system user in console message --- gulpfile.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index 24aa9f09..a393e469 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -31,7 +31,7 @@ var isProduction = ($.util.env.production === true ? true : false); console.log(""); console.log(chalk.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>")); console.log(""); -console.log(chalk.cyan(" (o) Just what do you think you're doing, Matthias? ")); +console.log(chalk.cyan(" (o) Just what do you think you're doing,", process.env.USER, "? ")); console.log(""); console.log(chalk.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>")); console.log(""); @@ -375,7 +375,9 @@ gulp.task('default', function(cb) { // gulp.task('build', function(cb) { - console.log(chalk.green('Building ' + ($.util.env.production ? 'production' : 'dev') + ' version...')); + console.log(chalk.gray(" ------------------------------------------")); + console.log(chalk.green(' Building ' + ($.util.env.production ? 'production' : 'dev') + ' version...')); + console.log(chalk.gray(" ------------------------------------------")); runSequence( 'clean',