From 77564ba3b59baa52546f3b1170ee9cad16b7d413 Mon Sep 17 00:00:00 2001 From: zfarrell Date: Tue, 4 Feb 2014 11:56:05 -0800 Subject: [PATCH] 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. --- templates/common/Gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/common/Gruntfile.js b/templates/common/Gruntfile.js index ef35cdfb3..8f9c9e299 100644 --- a/templates/common/Gruntfile.js +++ b/templates/common/Gruntfile.js @@ -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' }] }