diff options
author | Tomi Virkki <virkki@vaadin.com> | 2015-09-09 15:39:06 +0300 |
---|---|---|
committer | Tomi Virkki <virkki@vaadin.com> | 2015-09-09 15:39:06 +0300 |
commit | c393e9ce28a354dc6fe526193e016cdd3c016cad (patch) | |
tree | 49004e2704d4d7b6b6d5da9b308e856fead92b9e /gulpfile.js | |
parent | 08d870e3efdb05d9350aee714155be7b2b7eb6eb (diff) | |
download | vaadin-core-c393e9ce28a354dc6fe526193e016cdd3c016cad.tar.gz vaadin-core-c393e9ce28a354dc6fe526193e016cdd3c016cad.zip |
Added the tasks for publishing
Diffstat (limited to 'gulpfile.js')
-rw-r--r-- | gulpfile.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/gulpfile.js b/gulpfile.js new file mode 100644 index 0000000..4277a46 --- /dev/null +++ b/gulpfile.js @@ -0,0 +1,17 @@ +"use strict"; +var gulp = require('gulp'); +require('require-dir')('./tasks'); + +var version = '0.3.0'; + +gulp.task('default', function() { + console.log('\n Use:\n gulp <stage|deploy[:cdn:zip]>\n'); +}); + +gulp.task('clean', ['clean:cdn', 'clean:zip']); + +gulp.task('deploy', ['deploy:cdn', 'deploy:zip']); + +// can't run all the verification concurrently until sauce-connect-launcher supports +// multiple tunnels +//gulp.task('verify', ['verify:cdn', 'verify:zip]); |