Skip to content

Commit

Permalink
fix(grunt): include partial sub-directories in htmlmin
Browse files Browse the repository at this point in the history
With this change, partial sub-directories are now processed with htmlmin and copied over to dist on grunt build.
  • Loading branch information
zfarrell committed Feb 4, 2014
1 parent 0c26a19 commit 77564ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion templates/common/Gruntfile.js
Expand Up @@ -300,7 +300,7 @@ module.exports = function (grunt) {
files: [{
expand: true,
cwd: '<%%= yeoman.app %>/views',
src: ['*.html', 'partials/*.html'],
src: ['*.html', 'partials/**/*.html'],
dest: '<%%= yeoman.dist %>/views'
}]
}
Expand Down

0 comments on commit 77564ba

Please sign in to comment.