feat: add transform-imports plugin#51
Merged
sapphi-red merged 6 commits intomainfrom Apr 20, 2026
Merged
Conversation
9325774 to
f790660
Compare
@rolldown/plugin-babel
@rolldown/plugin-emotion
@rolldown/plugin-jsx-remove-attributes
oxc-unshadowed-visitor
@rolldown/plugin-styled-jsx
@rolldown/plugin-transform-imports
commit: |
Member
|
I prefer the following form: transformImports({
'mock-lib': {
transform: 'mock-lib/{{kebabCase member}}',
},
});rather than: transformImports({
modules: {
'mock-lib': {
transform: 'mock-lib/{{kebabCase member}}',
},
},
});First, the |
Member
|
I pushed a small change. If you think it’s not appropriate, we can revert it at any time. |
Member
Author
|
It was to allow adding options in the future, but I guess it's ok to remove it. |
Member
Yes, I had the same thought about why it’s implemented that way. But after reconsidering, I think for now we should just focus on keeping things aligned. We can revisit and enhance the functionality later when there’s an actual user need. |
shulaoda
approved these changes
Apr 20, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR adds
@rolldown/plugin-transform-importswhich utilizes Rolldown's native magic string feature.In the synthetic benchmark included in this PR, this plugin is
@swc/plugin-transform-imports+@rollup/plugin-swcbabel-plugin-transform-imports+@rolldown/plugin-babelThe implementation is based on swc-project/plugins/packages/transform-imports (Apache License 2.0) and test cases are also adapted from it.
Normally, the lazy barrel feature in Rolldown (currently experimental) resolves the performance problem. But in some edge cases, this plugin can improve the performance further by ignoring minor semantics.