We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e90ab6 commit fdbe2e7Copy full SHA for fdbe2e7
gulp/tasks/default.js
@@ -0,0 +1,8 @@
1
+var gulp = require('gulp');
2
+
3
+gulp.task('default', [
4
+ 'minify',
5
+ 'bootstrap',
6
+ 'bootstrap-datepicker',
7
+ 'non-minified-dist'
8
+]);
gulpfile.js
@@ -12,13 +12,6 @@ var jscs = require('gulp-jscs');
12
13
require('./gulp');
14
15
-gulp.task('default', [
16
- 'minify',
17
- 'bootstrap',
18
- 'bootstrap-datepicker',
19
- 'non-minified-dist'
20
-]);
21
-
22
gulp.task('watch', function() {
23
gulp.watch('./src/**/*', ['default']);
24
});
0 commit comments