diff options
author | Sauli Tähkäpää <sauli@vaadin.com> | 2016-05-17 14:32:36 +0300 |
---|---|---|
committer | Teemu Pöntelin <teemu@vaadin.com> | 2016-06-02 14:22:08 +0300 |
commit | 2cf54d65c19c50f50028b906b89d89d28c043b22 (patch) | |
tree | 84b2b8da777dff23d387d88e0b72b6a8f69be537 /gulpfile.js | |
parent | 54f16084e31b67619872d3ac44516142850a05a2 (diff) | |
download | vaadin-core-2cf54d65c19c50f50028b906b89d89d28c043b22.tar.gz vaadin-core-2cf54d65c19c50f50028b906b89d89d28c043b22.zip |
Removed ZIP related steps
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gulpfile.js b/gulpfile.js index e9485b2..eb04af8 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -7,9 +7,9 @@ var git = require('gulp-git'); var version = '0.3.0'; gulp.task('default', function() { - console.log('\n Use:\n gulp <stage|deploy[:cdn:zip]>\n'); + console.log('\n Use:\n gulp <stage|deploy[:cdn]>\n'); }); -gulp.task('clean', ['clean:cdn', 'clean:zip']); +gulp.task('clean', ['clean:cdn']); -gulp.task('deploy', ['deploy:cdn', 'deploy:zip']); +gulp.task('deploy', ['deploy:cdn']); |