Skip to content

Commit

Permalink
feature(index.html): add support for bower installed css files during…
Browse files Browse the repository at this point in the history
… minifaction

solve missing .css files during grunt:build minification due to files being installed via bower (and not copied with grunt:copy:styles)
  • Loading branch information
Gilad Peleg committed Nov 14, 2013
1 parent 9341eb9 commit 3021515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']
});
};

Expand Down

0 comments on commit 3021515

Please sign in to comment.