You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- build:js scripts/combined.concat.min.js--><!-- some comment --><scripttype="text/javascript" src="scripts/this.js"></script><scripttype="text/javascript" src="scripts/that.js"></script><!-- endbuild-->
As you can see there are no spaces after scripts/combined.concat.min.js and that's why the parsed html looks like this (the value of the "parsed" variable from src/index.js 178:7)
{
"type": "js",
"target": "scripts/combined.concat.min.js-->",
"attbs": "<!-- some comment"
}
I found that the reason in the following part of the "regbuild" regular expression
I am trying to parse the following html
As you can see there are no spaces after scripts/combined.concat.min.js and that's why the parsed html looks like this (the value of the "parsed" variable from src/index.js 178:7)
I found that the reason in the following part of the "regbuild" regular expression
The attribute group is not lazy. Making it lazy solves this issue, however, there are tests that fail.
The text was updated successfully, but these errors were encountered: