Skip to content
New issue

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

feat(babel-preset-jsx): Make importSource API configurable #291

Merged
merged 1 commit into from
Aug 25, 2022

Conversation

emosheeep
Copy link
Contributor

I've encountered a situation that I need to make my lib compatible with both vue 2.6 and vue2.7 at the same time, so I used vue-demi.
I should ensure that all of imports from vue should be redirected to vue-demi which makes vue-demi work, but the plugin @vitejs/plugin-vue2-jsx which used @vue/babel-preset-jsx inside can't pass some options to control the import source. It will auto inject import {h} from 'vue' statements to the build result, which doesn't meet my needs.
So I create this PR to extend the abilities of this plugin, wish I can pass { compositionAPI: { importSource: 'vue-demi' } } to the @vitejs/plugin-vue2-jsx with using vite.
Please take a code review, thanks!

@emosheeep
Copy link
Contributor Author

@sodatea there is something needs to be reviewed, thanks!

@dongnaebi
Copy link

maybe add an enum is enough

compositionAPI: 'auto' | 'native' | 'plugin' | 'vue-demi' | false

@emosheeep
Copy link
Contributor Author

maybe add an enum is enough

compositionAPI: 'auto' | 'native' | 'plugin' | 'vue-demi' | false

of course, I just thought it might be more expansive. Does this commit can be merged after doing some modify?

@dongnaebi
Copy link

I need this too, @sodatea any suggestion? it's very useful to library author

Copy link
Member

@haoqunjiang haoqunjiang left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for the PR! I've added a few comments here

@emosheeep emosheeep force-pushed the dev branch 2 times, most recently from 6a93045 to cbc14e6 Compare August 25, 2022 03:43
@emosheeep
Copy link
Contributor Author

I made some changes, please review again, thanks!

@emosheeep emosheeep changed the title feat(babel-preset-jsx): Makes importSource API configurable feat(babel-preset-jsx): Make importSource API configurable Aug 25, 2022
@haoqunjiang haoqunjiang merged commit 60da266 into vuejs:dev Aug 25, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants