summaryrefslogtreecommitdiffstats
path: root/gulpfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'gulpfile.js')
-rw-r--r--gulpfile.js17
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]);