diff options
author | Teemu Pòˆntelin <teemu@vaadin.com> | 2015-12-15 15:17:45 +0200 |
---|---|---|
committer | Teemu Pòˆntelin <teemu@vaadin.com> | 2015-12-15 15:17:45 +0200 |
commit | 6fa0d7c6beafcc3b7757cd5a7aaf15151166974c (patch) | |
tree | 138be6c6454dcbfcabd2d609d2e0d3620bf3a152 | |
parent | d910abebf959d6b122b15a18e43f1d1dad5c36e7 (diff) | |
download | vaadin-core-6fa0d7c6beafcc3b7757cd5a7aaf15151166974c.tar.gz vaadin-core-6fa0d7c6beafcc3b7757cd5a7aaf15151166974c.zip |
Add missing semicolons
-rw-r--r-- | tasks/docsite.js | 6 | ||||
-rw-r--r-- | tasks/zip.js | 2 |
2 files changed, 3 insertions, 5 deletions
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) { |