diff options
author | Manuel Carrasco Moñino <manolo@apache.org> | 2016-06-02 08:59:41 +0300 |
---|---|---|
committer | Manuel Carrasco Moñino <manolo@apache.org> | 2016-06-02 08:59:41 +0300 |
commit | 6eb91bc45c65630ccd9c51dc9cdca7c8c278a07b (patch) | |
tree | a93c425ee5317d8f5983e20df1b59047605ef5ae /gulpfile.js | |
parent | efab1e9fb26170cca40092af2d67ade23411dcd1 (diff) | |
parent | e52f072328b4c77e87b7831c407401073cf9c9ee (diff) | |
download | vaadin-core-6eb91bc45c65630ccd9c51dc9cdca7c8c278a07b.tar.gz vaadin-core-6eb91bc45c65630ccd9c51dc9cdca7c8c278a07b.zip |
Merge pull request #51 from vaadin/restore-zip
Restore ZIP related steps
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gulpfile.js b/gulpfile.js index eb04af8..9f60d08 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]>\n'); + console.log('\n Use:\n gulp <stage|deploy[:cdn]>|<zip>\n'); }); -gulp.task('clean', ['clean:cdn']); +gulp.task('clean', ['clean:cdn', 'clean:zip']); gulp.task('deploy', ['deploy:cdn']); |