aurelia / bundler

A library for bundling JavaScript, HTML and CSS for use with SystemJS.
MIT License
37 stars 25 forks source link

Bundler removes type="text" by default #108

Closed JeroenVinke closed 8 years ago

JeroenVinke commented 8 years ago

Because of this option the html minifier removes type="text" from input tags by default. Because the type was removed it caused some CSS styles to not be applied when my application was running in bundled state, and it was very confusing to find how that could happen.

The html-minifier has a different default setting for this option: image

Please consider to disable this option's default value. You can close this issue as it serves as documentation for others and I can fix this by using the htmlminopts property

EisenbergEffect commented 8 years ago

@ahmedshuhel I think it would be a good idea to change this.

ahmedshuhel commented 8 years ago

Fixed in master.

JeroenVinke commented 8 years ago

Thanks :+1: