usemin block build is not working when src attribute have space.
Closed this issue · 2 comments
zeakd commented
It means
<!-- build:js scripts/vendor/my.js -->
<script src='my.js'></script>
<!-- endbuild -->
works, but
<!-- build:js scripts/vendor/my.js -->
<script src ='my.js'></script>
<!-- endbuild -->
or
<!-- build:js scripts/vendor/my.js -->
<script src= 'my.js'></script>
<!-- endbuild -->
doesn.t.
is this bug?
sindresorhus commented
Already fixed by 39cc8c8
zeakd commented
thanks :)