mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-25 19:34:48 +01:00
output system user in console message
This commit is contained in:
parent
d5f898e92e
commit
57562ad222
@ -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',
|
||||
|
Loading…
Reference in New Issue
Block a user