From 30215156b5eeed47e42bf762bbdaf1e1753ef9d9 Mon Sep 17 00:00:00 2001 From: Gilad Peleg Date: Fri, 15 Nov 2013 00:49:18 +0200 Subject: [PATCH] feature(index.html): add support for bower installed css files during minifaction solve missing .css files during grunt:build minification due to files being installed via bower (and not copied with grunt:copy:styles) --- app/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/index.js b/app/index.js index 50ab74f1e..d20d14ff8 100644 --- a/app/index.js +++ b/app/index.js @@ -216,7 +216,7 @@ Generator.prototype.bootstrapFiles = function bootstrapFiles() { sourceFileList: files.map(function (file) { return 'styles/' + file.replace('.scss', '.css'); }), - searchPath: '.tmp' + searchPath: ['.tmp', 'app'] }); };