diff options
author | Teemu Pòˆntelin <teemu@vaadin.com> | 2016-05-30 14:26:07 +0300 |
---|---|---|
committer | Teemu Pòˆntelin <teemu@vaadin.com> | 2016-05-31 09:25:13 +0300 |
commit | e52f072328b4c77e87b7831c407401073cf9c9ee (patch) | |
tree | a93c425ee5317d8f5983e20df1b59047605ef5ae /gulpfile.js | |
parent | efab1e9fb26170cca40092af2d67ade23411dcd1 (diff) | |
download | vaadin-core-e52f072328b4c77e87b7831c407401073cf9c9ee.tar.gz vaadin-core-e52f072328b4c77e87b7831c407401073cf9c9ee.zip |
Add "zip" Gulp task to create the zip package for a release
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']); |