and removing more empty spaces...

This commit is contained in:
Holger Könemann 2018-03-07 11:49:14 +01:00
parent 3e1838671b
commit 2e70aee8af
1 changed files with 48 additions and 50 deletions

View File

@ -72,7 +72,6 @@ gulp.task( 'watch-scss', ['browser-sync'], function () {
gulp.watch( paths.sass + '/**/*.scss', ['scss-for-dev'] ); gulp.watch( paths.sass + '/**/*.scss', ['scss-for-dev'] );
}); });
// Run: // Run:
// gulp sass // gulp sass
// Compiles SCSS files in CSS // Compiles SCSS files in CSS
@ -91,7 +90,6 @@ gulp.task( 'sass', function () {
return stream; return stream;
}); });
// Run: // Run:
// gulp watch // gulp watch
// Starts watcher. Watcher runs gulp sass task on changes // Starts watcher. Watcher runs gulp sass task on changes
@ -203,7 +201,7 @@ gulp.task( 'scripts', function() {
// Deleting any file inside the /src folder // Deleting any file inside the /src folder
gulp.task( 'clean-source', function () { gulp.task( 'clean-source', function () {
return del(['src/**/*',]); return del(['src/**/*']);
}); });
// Run: // Run:
@ -272,7 +270,7 @@ gulp.task( 'dist', ['clean-dist'], function() {
// Deleting any file inside the /dist folder // Deleting any file inside the /dist folder
gulp.task( 'clean-dist', function () { gulp.task( 'clean-dist', function () {
return del([paths.dist + '/**',]); return del([paths.dist + '/**']);
}); });
// Run // Run
@ -285,5 +283,5 @@ gulp.task( 'dist-product', ['clean-dist-product'], function() {
// Deleting any file inside the /dist-product folder // Deleting any file inside the /dist-product folder
gulp.task( 'clean-dist-product', function () { gulp.task( 'clean-dist-product', function () {
return del([paths.distprod + '/**',]); return del( [paths.distprod + '/**'] );
}); });