Commit c101a3fa9747a1f0046ac14fe22ab138316d6954

Jannik Zschiesche 2014-07-29T10:53:54

Added default gulp task It just builds components, plugins and the main prism.js file.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/gulpfile.js b/gulpfile.js
index 90c9f91..25de6e5 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -43,4 +43,6 @@ gulp.task('plugins', function() {
 gulp.task('watch', function() {
 	gulp.watch(paths.components, ['components', 'build']);
 	gulp.watch(paths.plugins, ['plugins', 'build']);
-});
\ No newline at end of file
+});
+
+gulp.task('default', ['components', 'plugins', 'build']);