Release 0.1.6
After gulp-minify-html my refs become like:
<script src=dist/app.js?rev=@@hash type=text/javascript></script>
And this didn't work while src=dist/app.js?rev=@@hash, but it will be work if it will be src"=dist/app.js?rev=@@hash"
So, in other words:
<script src="dist/app.js?rev=@@hash" type=text/javascript></script> - works
<script src=dist/app.js?rev=@@hash type=text/javascript></script> - not working
Release 0.1.6
After
gulp-minify-htmlmy refs become like:<script src=dist/app.js?rev=@@hash type=text/javascript></script>And this didn't work while
src=dist/app.js?rev=@@hash, but it will be work if it will besrc"=dist/app.js?rev=@@hash"So, in other words:
<script src="dist/app.js?rev=@@hash" type=text/javascript></script>- works<script src=dist/app.js?rev=@@hash type=text/javascript></script>- not working