Skip to content

Commit 6436bed

Browse files
committed
Merge pull request #948 from seonetartem/patch-1
fix missed space between html tags
2 parents 0e4fd50 + a583885 commit 6436bed

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

generators/app/templates/gulp/_build.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ gulp.task('partials', ['markups'], function () {
2020
.pipe($.minifyHtml({
2121
empty: true,
2222
spare: true,
23-
quotes: true
23+
quotes: true,
24+
loose: true
2425
}))
2526
.pipe($.angularTemplatecache('templateCacheHtml.js', {
2627
module: '<%- appName %>',
@@ -74,7 +75,8 @@ gulp.task('html', ['inject', 'partials'], function () {
7475
empty: true,
7576
spare: true,
7677
quotes: true,
77-
conditionals: true
78+
conditionals: true,
79+
loose: true
7880
}))
7981
.pipe(htmlFilter.restore)
8082
.pipe(gulp.dest(path.join(conf.paths.dist, '/')))

0 commit comments

Comments
 (0)