From 492fe3a6cfceadbbfb9143d550761f2ef1c8821c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Holger=20Ko=CC=88nemann?= Date: Wed, 7 Mar 2018 11:26:20 +0100 Subject: [PATCH] check for Travis error message --- gulpfile.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/gulpfile.js b/gulpfile.js index d9b1322..f1e2241 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -29,7 +29,7 @@ var paths = cfg.paths; // gulp sass + cssnano + rename // Prepare the min.css for production (with 2 pipes to be sure that "theme.css" == "theme.min.css") gulp.task( 'scss-for-prod', function() { - var source = gulp.src(paths.sass + '/*.scss') + var source = gulp.src( paths.sass + '/*.scss' ) .pipe(plumber({ errorHandler: function (err) { console.log(err); @@ -206,7 +206,7 @@ gulp.task( 'scripts', function() { // Deleting any file inside the /src folder gulp.task( 'clean-source', function () { - return del(['src/**/*',,]); + return del(['src/**/*',]); }); // Run: @@ -275,7 +275,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 @@ -288,5 +288,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 + '/**',]); });