Skip to content

Commit fdbe2e7

Browse files
Move default task into gulp/tasks
1 parent 6e90ab6 commit fdbe2e7

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

gulp/tasks/default.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,6 @@ var jscs = require('gulp-jscs');
1212

1313
require('./gulp');
1414

15-
gulp.task('default', [
16-
'minify',
17-
'bootstrap',
18-
'bootstrap-datepicker',
19-
'non-minified-dist'
20-
]);
21-
2215
gulp.task('watch', function() {
2316
gulp.watch('./src/**/*', ['default']);
2417
});

0 commit comments

Comments
 (0)