From 81e303ed5142e5bd66dd0a7b772a05b26494c058 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Fri, 5 May 2017 23:12:46 +0200 Subject: [PATCH] chore: update theme builder --- .gulp/tasks/themes.js | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.gulp/tasks/themes.js b/.gulp/tasks/themes.js index e9ec018..dbc61c1 100644 --- a/.gulp/tasks/themes.js +++ b/.gulp/tasks/themes.js @@ -33,6 +33,12 @@ files.forEach(file => { }); gulp.task('build:themes', cb => { + gutil.log( + gutil.colors.magenta('\n--------------'), + gutil.colors.blue('---------------'), + gutil.colors.red('---------------'), + gutil.colors.yellow('---------------' + )); themeVariants.forEach(variant => { const templateData = { 'commons': themeCommons, @@ -51,6 +57,14 @@ gulp.task('build:themes', cb => { 'utf-8' ); - gutil.log('Generated', gutil.colors.green(path)); + gutil.log('Generate', gutil.colors.green(path)); }); + + gutil.log( + 'Build completed ✔', + gutil.colors.magenta('\n--------------'), + gutil.colors.blue('---------------'), + gutil.colors.red('---------------'), + gutil.colors.yellow('---------------' + )); });