gabrielflorit / gulp-smoosher

Inline css and js links with file contents
MIT License
35 stars 6 forks source link

do not delete propertys after smooshing.. #16

Closed nimo23 closed 9 years ago

nimo23 commented 9 years ago

Actually this

<script type="application/json" id="my-id" src=".."></script>

becomes this after using smoosher

<script> ..content </script>

But I need my id and I need my type-propery. Please do not delete these propertys after smoosing.

gabrielflorit commented 9 years ago

oh, good point.

gabrielflorit commented 9 years ago

Might go without saying, but I'm only going to do this for script.

gabrielflorit commented 9 years ago

Done. Let me know if this works for you.

nimo23 commented 9 years ago

Yes, fine! It works as expected. Thanks for the fast job!