summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
authorSauli Tähkäpää <sauli@vaadin.com>2015-11-26 14:50:21 +0200
committerSauli Tähkäpää <sauli@vaadin.com>2015-12-03 14:07:44 +0200
commite61208deeb4bc43b2c641b01b5d471dcc051bc03 (patch)
treebd97901e182475bc678383651bdbbabc27da85d5 /gulpfile.js
parent7f830907ef147848471ba46255bf43022cb11450 (diff)
downloadvaadin-core-e61208deeb4bc43b2c641b01b5d471dcc051bc03.tar.gz
vaadin-core-e61208deeb4bc43b2c641b01b5d471dcc051bc03.zip
Remove unused deployment CDN scripts.
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js16
1 files changed, 1 insertions, 15 deletions
diff --git a/gulpfile.js b/gulpfile.js
index 3d4ab28..e9485b2 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -12,18 +12,4 @@ gulp.task('default', function() {
gulp.task('clean', ['clean:cdn', 'clean:zip']);
-gulp.task('tag', ['deploy:cdn', 'deploy:zip'], function() {
- if(args.release) {
- version = args.version || version;
- return git.tag(version, 'Release version ' + version, {cwd: '.'}, function (err) {
- if (err) throw err;
- return git.push('origin', version, {cwd: '.', args: '--tags'});
- });
- }
-});
-
-gulp.task('deploy', ['tag']);
-
-// can't run all the verification concurrently until sauce-connect-launcher supports
-// multiple tunnels
-//gulp.task('verify', ['verify:cdn', 'verify:zip]);
+gulp.task('deploy', ['deploy:cdn', 'deploy:zip']);