1
0
mirror of https://github.com/kremalicious/blog.git synced 2025-02-14 21:10:25 +01:00

output system user in console message

This commit is contained in:
Matthias Kretschmann 2015-09-26 22:22:40 +02:00
parent d5f898e92e
commit 57562ad222

View File

@ -31,7 +31,7 @@ var isProduction = ($.util.env.production === true ? true : false);
console.log(""); console.log("");
console.log(chalk.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>")); console.log(chalk.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>"));
console.log(""); 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("");
console.log(chalk.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>")); console.log(chalk.gray(" <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<>>>>>>>>>>>>>>>>>>>>>>>>>>>>"));
console.log(""); console.log("");
@ -375,7 +375,9 @@ gulp.task('default', function(cb) {
// //
gulp.task('build', 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( runSequence(
'clean', 'clean',