diff options
author | Teemu Pòˆntelin <teemu@vaadin.com> | 2016-08-31 09:32:35 +0300 |
---|---|---|
committer | Teemu Pòˆntelin <teemu@vaadin.com> | 2016-08-31 09:32:35 +0300 |
commit | 59301895a76ceb93cfc8b665feb1046b23a80331 (patch) | |
tree | 0b8ccbe016a9c19793caaea7a994c84b9bb2dccb /tasks/cdn.js | |
parent | 199891513f89d5ef1ef7c526f876a4a9de166a0a (diff) | |
download | vaadin-core-59301895a76ceb93cfc8b665feb1046b23a80331.tar.gz vaadin-core-59301895a76ceb93cfc8b665feb1046b23a80331.zip |
Revert back to ES5 syntax
Diffstat (limited to 'tasks/cdn.js')
-rw-r--r-- | tasks/cdn.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/cdn.js b/tasks/cdn.js index 0db7bb9..7d8f28e 100644 --- a/tasks/cdn.js +++ b/tasks/cdn.js @@ -21,7 +21,7 @@ gulp.task('clean:cdn', function() { gulp.task('cdn:stage-bower.json', ['clean:cdn'], function() { // Load the bower.json, assign overrides and write back to disk. - let bowerJson = JSON.parse(fs.readFileSync('./bower.json', 'utf-8')); + var bowerJson = JSON.parse(fs.readFileSync('./bower.json', 'utf-8')); if (version === 'master') { gutil.log('Applying overrides to ' + stagingPath + '/bower.json'); |