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
The current logic uses sander to read a filename whenever the sourceMappingURL= regexp matches.
sander
sourceMappingURL=
However, that regexp also matches inline sourcemaps like:
/*# sourceMappingURL=data:application/json;base64,aaaaaaaaaaaaaaaaaaaa== */
There is a need for parsing data: URLs (base64-decode them, then JSON.parse() them).
data:
JSON.parse()
In particular, the gobble-postcss transform generates inline sourcemaps by default, which are a problem if they are concatenated later.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The current logic uses
sander
to read a filename whenever thesourceMappingURL=
regexp matches.However, that regexp also matches inline sourcemaps like:
/*# sourceMappingURL=data:application/json;base64,aaaaaaaaaaaaaaaaaaaa== */
There is a need for parsing
data:
URLs (base64-decode them, thenJSON.parse()
them).In particular, the gobble-postcss transform generates inline sourcemaps by default, which are a problem if they are concatenated later.
The text was updated successfully, but these errors were encountered: