We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
On https://github.com/ampedandwired/html-webpack-plugin/blob/master/index.js#L305 there is a .test method called on the match, but it should be the other way around, with .test called on the regex:
.test
if (/\smanifest\s*=/.test(match)) { return match; }
The text was updated successfully, but these errors were encountered:
Oh.. Good point - looks like this has never been tested. Do you have time to write a pull request?
Sorry, something went wrong.
@jantimon I didn't have time to write a full test case, but its a pretty simple fix and I've verified its working correctly for our build.
This issue has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
No branches or pull requests
On https://github.com/ampedandwired/html-webpack-plugin/blob/master/index.js#L305 there is a
.test
method called on the match, but it should be the other way around, with.test
called on the regex:The text was updated successfully, but these errors were encountered: