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') ); });