ericclemmons / grunt-angular-templates

Grunt build task to concatenate & pre-load your AngularJS templates
MIT License
710 stars 107 forks source link

Update html-minifier dependency to fix some problems #96

Closed gwkunze closed 10 years ago

gwkunze commented 10 years ago

In my use case, I want to use the collaspeWhitespace option to reduce the size of my templates but html-minifier 0.5.4 has some problems where it is a bit too greedy with collapsing whitespace. For example: html <input type='checkbox' /> Foo is minified to: html <input type='checkbox'>Foo

Note the missing whitespace in front of Foo, this whitespace is significant with regards to styling and shouldn't be stripped; 0.6+ fixes this problem.

ericclemmons commented 10 years ago

v0.5.6 is out for you!

gwkunze commented 10 years ago

Great, thanks!