From b12818f971d4f07fc4c3d8ab08d2dccc0e581561 Mon Sep 17 00:00:00 2001 From: Mattia Astorino Date: Tue, 16 May 2017 21:14:01 +0200 Subject: [PATCH] chore: Update builder --- .gulp/tasks/icons.js | 4 ++-- .gulp/tasks/themes.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gulp/tasks/icons.js b/.gulp/tasks/icons.js index 58ffda0..9c1bef8 100644 --- a/.gulp/tasks/icons.js +++ b/.gulp/tasks/icons.js @@ -44,11 +44,11 @@ Gulp.task('build:icons', cb => { const path = './themes/.material-theme-icons.tmp'; fs.writeFileSync(path, contents, 'utf-8'); gutil.log( - gutil.colors.gray('\n████████████████████████████████████████████████████████\n') + gutil.colors.gray('\n———————————————————————————————————————————————————————————————\n') ); gutil.log('Generated', gutil.colors.green(path)); gutil.log( - gutil.colors.gray('\n████████████████████████████████████████████████████████\n') + gutil.colors.gray('\n———————————————————————————————————————————————————————————————\n') ); cb(); diff --git a/.gulp/tasks/themes.js b/.gulp/tasks/themes.js index 92d89e9..553c33d 100644 --- a/.gulp/tasks/themes.js +++ b/.gulp/tasks/themes.js @@ -36,7 +36,7 @@ files.forEach(file => { Gulp.task('build:themes', cb => { gutil.log( - gutil.colors.gray('\n████████████████████████████████████████████████████████\n') + gutil.colors.gray('\n———————————————————————————————————————————————————————————————\n') ); themeVariants.forEach(variant => { const templateData = { @@ -60,6 +60,6 @@ Gulp.task('build:themes', cb => { }); gutil.log( - gutil.colors.gray('\n████████████████████████████████████████████████████████\n') + gutil.colors.gray('\n———————————————————————————————————————————————————————————————\n') ); });