aboutsummaryrefslogtreecommitdiffstats
path: root/tasks/cdn.js
diff options
context:
space:
mode:
authorManolo Carrasco <manolo@apache.org>2015-10-19 09:42:52 +0200
committerManolo Carrasco <manolo@apache.org>2015-10-19 09:42:52 +0200
commit4739783afc01fb0a2291402bed28233fd8d6496d (patch)
tree0c2cdd6edcef88fe3d53de3ac9f9c6788b6d4b7e /tasks/cdn.js
parente1f8b8410a85693c92c0d25614b5ffc1b1a5fe08 (diff)
downloadvaadin-core-4739783afc01fb0a2291402bed28233fd8d6496d.tar.gz
vaadin-core-4739783afc01fb0a2291402bed28233fd8d6496d.zip
Renaming tasks components -> elements
Diffstat (limited to 'tasks/cdn.js')
-rw-r--r--tasks/cdn.js20
1 files changed, 10 insertions, 10 deletions
diff --git a/tasks/cdn.js b/tasks/cdn.js
index d1a8526..47c552d 100644
--- a/tasks/cdn.js
+++ b/tasks/cdn.js
@@ -31,14 +31,14 @@ gulp.task('cdn:stage-bower_components', function() {
});
});
-gulp.task('cdn:stage-vaadin-components', function() {
- return gulp.src(['LICENSE.html', 'ga.js', 'vaadin-components.html', 'demo/*', 'apidoc/*'], {base:"."})
- .pipe(replace('https://cdn.vaadin.com/vaadin-components/latest/', '../../'))
+gulp.task('cdn:stage-vaadin-elements', function() {
+ return gulp.src(['LICENSE.html', 'ga.js', 'vaadin-elements.html', 'demo/*', 'apidoc/*'], {base:"."})
+ .pipe(replace('https://cdn.vaadin.com/vaadin-elements/latest/', '../../'))
.pipe(addsrc('README.md'))
- .pipe(gulp.dest(stagingPath + "/vaadin-components"));
+ .pipe(gulp.dest(stagingPath + "/vaadin-elements"));
});
-gulp.task('stage:cdn', [ 'clean:cdn', 'cdn:stage-bower_components', 'cdn:stage-vaadin-components' ]);
+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']);
@@ -87,13 +87,13 @@ gulp.task('cdn-test:install-dependencies', function() {
}, [['web-component-tester#2.2.6']]);
});
-config.components.forEach(function (n) {
+config.elements.forEach(function (n) {
gulp.task('cdn-test:stage:' + n, ['cdn-test:clean', 'cdn-test:install-dependencies'], function(done) {
fs.mkdirsSync(testPath);
return git.clone('https://github.com/vaadin/' + n, {cwd: testPath}, function (err) {
gulp.src(testPath + '/' + n + '/test/**')
- .pipe(replace(/(src|href)=("|')(.*?)\.\.\/\.\.\/(bower_components|node_modules)\/(.*?)\//mg, '$1=$2https://cdn.vaadin.com/vaadin-components/'+ version + '/$5/'))
- .pipe(replace(/(src|href)=("|')(.*?)\.\.\//mg, '$1=$2https://cdn.vaadin.com/vaadin-components/'+ version +'/' + n + '/'))
+ .pipe(replace(/(src|href)=("|')(.*?)\.\.\/\.\.\/(bower_components|node_modules)\/(.*?)\//mg, '$1=$2https://cdn.vaadin.com/vaadin-elements/'+ version + '/$5/'))
+ .pipe(replace(/(src|href)=("|')(.*?)\.\.\//mg, '$1=$2https://cdn.vaadin.com/vaadin-elements/'+ version +'/' + n + '/'))
.pipe(replace(/(src|href)=("|')(.*?)(web-component-tester)\//mg, '$1=$2../../web-component-tester/'))
.pipe(gulp.dest(testPath + '/' + n + '/test/'));
done();
@@ -101,7 +101,7 @@ config.components.forEach(function (n) {
});
});
-gulp.task('cdn-test:stage', _.map(config.components, function (n) {
+gulp.task('cdn-test:stage', _.map(config.elements, function (n) {
return 'cdn-test:stage:' + n;
}));
@@ -115,7 +115,7 @@ gulp.task('verify:cdn', ['cdn-test:stage'], function(done) {
common.testSauce(
['target/cdn/' + version + '/test/**/index.html'],
['Windows 7/firefox@36'],
- 'vaadin-components / cdn.vaadin.com / ' + version,
+ 'vaadin-elements / cdn.vaadin.com / ' + version,
function(err) {
common.autoRevert(err, function() {
gutil.log('Deleting folder ' + args.cdnDestination + version);