Skip to content

Commit 77564ba

Browse files
committed
fix(grunt): include partial sub-directories in htmlmin
With this change, partial sub-directories are now processed with htmlmin and copied over to dist on grunt build.
1 parent 0c26a19 commit 77564ba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: templates/common/Gruntfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ module.exports = function (grunt) {
300300
files: [{
301301
expand: true,
302302
cwd: '<%%= yeoman.app %>/views',
303-
src: ['*.html', 'partials/*.html'],
303+
src: ['*.html', 'partials/**/*.html'],
304304
dest: '<%%= yeoman.dist %>/views'
305305
}]
306306
}

0 commit comments

Comments
 (0)