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
When using SWC to transform JavaScript, I need to convert the source map returned by SWC into the source map of rspack-sources.
SWC
rspack-sources
I expect to reuse the data in the source map during the conversion process, so I hope there could be an API like the following:
let sources: Vec<Arc<str>> = sourcemap.take_sources(); let sources_content: Vec<Arc<str>> = sourcemap.take_sources_content();
The text was updated successfully, but these errors were encountered:
Hi, thank you for the suggestion.
Sorry, something went wrong.
No branches or pull requests
When using
SWC
to transform JavaScript, I need to convert the source map returned by SWC into the source map ofrspack-sources
.I expect to reuse the data in the source map during the conversion process, so I hope there could be an API like the following:
The text was updated successfully, but these errors were encountered: