and removing more empty spaces...
This commit is contained in:
parent
3e1838671b
commit
2e70aee8af
|
@ -72,7 +72,6 @@ gulp.task( 'watch-scss', ['browser-sync'], function () {
|
|||
gulp.watch( paths.sass + '/**/*.scss', ['scss-for-dev'] );
|
||||
});
|
||||
|
||||
|
||||
// Run:
|
||||
// gulp sass
|
||||
// Compiles SCSS files in CSS
|
||||
|
@ -91,7 +90,6 @@ gulp.task( 'sass', function () {
|
|||
return stream;
|
||||
});
|
||||
|
||||
|
||||
// Run:
|
||||
// gulp watch
|
||||
// Starts watcher. Watcher runs gulp sass task on changes
|
||||
|
@ -203,7 +201,7 @@ gulp.task( 'scripts', function() {
|
|||
|
||||
// Deleting any file inside the /src folder
|
||||
gulp.task( 'clean-source', function () {
|
||||
return del(['src/**/*',]);
|
||||
return del(['src/**/*']);
|
||||
});
|
||||
|
||||
// Run:
|
||||
|
@ -272,7 +270,7 @@ gulp.task( 'dist', ['clean-dist'], function() {
|
|||
|
||||
// Deleting any file inside the /dist folder
|
||||
gulp.task( 'clean-dist', function () {
|
||||
return del([paths.dist + '/**',]);
|
||||
return del([paths.dist + '/**']);
|
||||
});
|
||||
|
||||
// Run
|
||||
|
@ -285,5 +283,5 @@ gulp.task( 'dist-product', ['clean-dist-product'], function() {
|
|||
|
||||
// Deleting any file inside the /dist-product folder
|
||||
gulp.task( 'clean-dist-product', function () {
|
||||
return del([paths.distprod + '/**',]);
|
||||
return del( [paths.distprod + '/**'] );
|
||||
});
|
||||
|
|
Reference in New Issue