Skip to content

Commit a7c02c9

Browse files
Fix indentation on bootstrap-datepicker
1 parent df9518c commit a7c02c9

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

gulp/tasks/bootstrap-datepicker.js

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
11
var gulp = require('gulp'),
2-
streamqueue = require('streamqueue'),
3-
minifyHtml = require('gulp-minify-html'),
4-
templateCache = require('gulp-angular-templatecache'),
5-
concat = require('gulp-concat'),
6-
uglify = require('gulp-uglify');
2+
streamqueue = require('streamqueue'),
3+
minifyHtml = require('gulp-minify-html'),
4+
templateCache = require('gulp-angular-templatecache'),
5+
concat = require('gulp-concat'),
6+
uglify = require('gulp-uglify');
77

88
gulp.task('bootstrap-datepicker', function() {
99
var stream = streamqueue({objectMode: true});
1010
stream.queue(
11-
gulp.src('./src/directives/decorators/bootstrap/datepicker/*.html')
12-
.pipe(minifyHtml({
13-
empty: true,
14-
spare: true,
15-
quotes: true
16-
}))
17-
.pipe(templateCache({
18-
module: 'schemaForm',
19-
root: 'directives/decorators/bootstrap/datepicker/'
20-
}))
11+
gulp.src('./src/directives/decorators/bootstrap/datepicker/*.html')
12+
.pipe(minifyHtml({
13+
empty: true,
14+
spare: true,
15+
quotes: true
16+
}))
17+
.pipe(templateCache({
18+
module: 'schemaForm',
19+
root: 'directives/decorators/bootstrap/datepicker/'
20+
}))
2121
);
2222
stream.queue(gulp.src('./src/directives/decorators/bootstrap/datepicker/*.js'));
2323

2424
stream.done()
25-
.pipe(concat('bootstrap-datepicker.min.js'))
26-
.pipe(uglify())
27-
.pipe(gulp.dest('./dist/'));
25+
.pipe(concat('bootstrap-datepicker.min.js'))
26+
.pipe(uglify())
27+
.pipe(gulp.dest('./dist/'));
2828

2929
});

0 commit comments

Comments
 (0)