From: Sauli Tähkäpää Date: Thu, 26 Nov 2015 12:53:06 +0000 (+0200) Subject: Reformat cdn.js. X-Git-Tag: 0.3.0-beta13~3 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=520c925e10bceb088e16dc06a8abcca0e719f3d6;p=vaadin-core.git Reformat cdn.js. --- diff --git a/tasks/cdn.js b/tasks/cdn.js index d8a3ae6..c1ef345 100644 --- a/tasks/cdn.js +++ b/tasks/cdn.js @@ -1,4 +1,4 @@ -var bower = require('gulp-bower'); +var bower = require('gulp-bower'); var config = require('./config'); var common = require('./common'); var gulp = require('gulp'); @@ -28,25 +28,27 @@ gulp.task('cdn:stage-bower_components', function() { }); gulp.task('cdn:stage-vaadin-elements', function() { - return gulp.src(['LICENSE.html', 'README.md', 'vaadin-elements.html', 'demo/*', 'apidoc/*'], {base:"."}) + return gulp.src(['LICENSE.html', 'README.md', 'vaadin-elements.html', 'demo/*', 'apidoc/*'], { + base: "." + }) .pipe(modify({ - fileModifier: function(file, contents) { - if (/README.md/.test(file.path)) { - contents = contents.replace(/\/latest\//mg, '/' + version + '/'); - } else { - contents.replace('https://cdn.vaadin.com/vaadin-elements/latest/', '../../'); - } - return contents; + fileModifier: function(file, contents) { + if (/README.md/.test(file.path)) { + contents = contents.replace(/\/latest\//mg, '/' + version + '/'); + } else { + contents.replace('https://cdn.vaadin.com/vaadin-elements/latest/', '../../'); } - })) + return contents; + } + })) .pipe(gulp.dest(stagingPath + "/vaadin-elements")); }); -gulp.task('stage:cdn', [ 'clean:cdn', 'cdn:stage-bower_components', 'cdn:stage-vaadin-elements' ]); +gulp.task('stage:cdn', ['clean:cdn', 'cdn:stage-bower_components', 'cdn:stage-vaadin-elements']); gulp.task('upload:cdn', ['stage:cdn'], function() { common.checkArguments(['cdnUsername', 'cdnDestination']); - gutil.log('Uploading to cdn (rsync): ' + stagingPath + ' -> '+ args.cdnUsername + '@' + host + ':' + args.cdnDestination + version); + gutil.log('Uploading to cdn (rsync): ' + stagingPath + ' -> ' + args.cdnUsername + '@' + host + ':' + args.cdnDestination + version); return gulp.src(stagingPath) .pipe(rsync({ username: args.cdnUsername, @@ -62,8 +64,8 @@ gulp.task('upload:cdn', ['stage:cdn'], function() { gulp.task('deploy:cdn', ['upload:cdn'], function(done) { if (permalink) { - var cmd = 'rm -f ' + args.cdnDestination + permalink + '; ln -s ' + version + ' ' + args.cdnDestination + permalink + '; ls -l ' + args.cdnDestination; - gutil.log('Deploying CDN : ssh ' + args.cdnUsername + '@' + host + ' ' + cmd); + var cmd = 'rm -f ' + args.cdnDestination + permalink + '; ln -s ' + version + ' ' + args.cdnDestination + permalink + '; ls -l ' + args.cdnDestination; + gutil.log('Deploying CDN : ssh ' + args.cdnUsername + '@' + host + ' ' + cmd); common.ssh(args.cdnUsername, host, cmd, done); } else { done();