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? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bit of an edge case, but given file transformer defaults like:
someTransformer.defaults = { accept: /\..*/, ext: '.js' };
Output won't get mapped correctly because this line:
const destname = ( options.ext && ~options.accept.indexOf( ext ) ) ? ... : ... ;
is doing an indexOf check so regex fails
indexOf
The text was updated successfully, but these errors were encountered:
8f4af5d
fixed in 0.11.3 👍
Sorry, something went wrong.
No branches or pull requests
Bit of an edge case, but given file transformer defaults like:
Output won't get mapped correctly because this line:
is doing an
indexOf
check so regex failsThe text was updated successfully, but these errors were encountered: