-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
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: use require for polyfills and helpers #6778
Conversation
@@ -1,2 +1,2 @@ | |||
var foo = function o() {}; | |||
var foo = function foo() {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure about this change..
I think this is caused by the type change of isModule.
Wasm build failed, but I don't know how to fix it. It works fine on my computer. |
@@ -92,6 +91,52 @@ macro_rules! add_import_to { | |||
}}; | |||
} | |||
|
|||
macro_rules! add_require_to { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please change this to a function.
It will fix Wasm issue
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
Co-authored-by: Donny/강동윤 <kdy1997.dev@gmail.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
swc-bump:
- swc_ecma_transforms_base --breaking
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Automated review comment generated by auto-rebase script
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
CI failed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Automated review comment generated by auto-rebase script
Description:
use require for polyfills and helpers
typeof isModule changed to Option.to allow test case set there isModule with swcrc.
#6760
BREAKING CHANGE:
Related issue (if exists):
close #6727