diff --git a/.gulp/tasks/icons.js b/.gulp/tasks/icons.js index 0ee564f..f703349 100644 --- a/.gulp/tasks/icons.js +++ b/.gulp/tasks/icons.js @@ -41,7 +41,20 @@ gulp.task('build:icons', cb => { const path = './themes/.material-theme-icons.tmp'; fs.writeFileSync(path, contents, 'utf-8'); + gutil.log( + gutil.colors.magenta('\n--------------'), + gutil.colors.blue('---------------'), + gutil.colors.red('---------------'), + gutil.colors.yellow('---------------' + )); gutil.log('Generated', gutil.colors.green(path)); + gutil.log( + 'Build completed ✔', + gutil.colors.magenta('\n--------------'), + gutil.colors.blue('---------------'), + gutil.colors.red('---------------'), + gutil.colors.yellow('---------------' + )); cb(); }); diff --git a/package.json b/package.json index f15cea4..789218c 100644 --- a/package.json +++ b/package.json @@ -22,7 +22,7 @@ "vscode": "^1.12.0" }, "scripts": { - "build": "npm run icons && npm run build-themes", + "build": "npm run build-icons && npm run build-themes", "minimize-icons": "svgo -f src/icons/svgs -o icons", "minimize-json": "json-minify themes/.material-theme-icons.tmp > themes/Material-Theme-Icons.json && npm run remove-icons-tmp", "remove-icons": "rimraf icons && rimraf themes/Material-Theme-Icons.json",