From: Teemu Pòˆntelin Date: Tue, 15 Dec 2015 13:17:45 +0000 (+0200) Subject: Add missing semicolons X-Git-Tag: v1.0.0~54 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=6fa0d7c6beafcc3b7757cd5a7aaf15151166974c;p=vaadin-core.git Add missing semicolons --- diff --git a/tasks/docsite.js b/tasks/docsite.js index 2526f8d..811bbb0 100644 --- a/tasks/docsite.js +++ b/tasks/docsite.js @@ -33,7 +33,7 @@ gulp.task('cdn:docsite:bower_components', ['cdn:stage-bower_components'], functi .pipe(modify({ fileModifier: function(file, contents) { if (/webcomponents-lite.*js/.test(file.path)) { - contents = contents.replace(/(if ?\()(\w+\.log)(\))/mg, '$1$2 && $2.split$3') + contents = contents.replace(/(if ?\()(\w+\.log)(\))/mg, '$1$2 && $2.split$3'); } return contents; } @@ -115,9 +115,7 @@ gulp.task('cdn:docsite:upload', ['cdn:docsite:clean', 'cdn:docsite:zip'], functi path: args.cdnDestination + version }, function(err) { done(err); - }) + }); }); gulp.task('cdn:docsite', ['cdn:docsite:upload']); - - diff --git a/tasks/zip.js b/tasks/zip.js index 43b21f3..f8f3571 100644 --- a/tasks/zip.js +++ b/tasks/zip.js @@ -41,7 +41,7 @@ gulp.task('zip:upload', ['stage:zip'], function(done) { path: dst }, function(err) { done(err); - }) + }); }); gulp.task('zip:update-references', ['zip:upload'], function(done) {