From 9a9f0c1971fd89442cb2160babccb63a7f6be16b Mon Sep 17 00:00:00 2001 From: Nicolas Coden Date: Thu, 21 Jun 2018 00:07:13 +0200 Subject: [PATCH] style: remove unused "done" in "dist:deploy" gulp task --- gulp/tasks/deploy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/tasks/deploy.js b/gulp/tasks/deploy.js index c9ef0883f..58e7c544b 100644 --- a/gulp/tasks/deploy.js +++ b/gulp/tasks/deploy.js @@ -46,7 +46,7 @@ gulp.task('deploy:version', function() { }); // Generates compiled CSS and JS files and sourcemaps and puts them in the dist/ folder -gulp.task('deploy:dist', function(done) { +gulp.task('deploy:dist', function() { sequence('sass:foundation', 'javascript:foundation', function() { var cssFilter = filter(['**/*.css'], { restore: true }); var jsFilter = filter(['**/*.js'], { restore: true }); -- 2.47.3