-
-
Notifications
You must be signed in to change notification settings - Fork 31.6k
esm: unflag --experimental-wasm-modules #57038
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -466,10 +466,7 @@ EnvironmentOptionsParser::EnvironmentOptionsParser() { | |
kAllowedInEnvvar); | ||
AddAlias("--loader", "--experimental-loader"); | ||
AddOption("--experimental-modules", "", NoOp{}, kAllowedInEnvvar); | ||
AddOption("--experimental-wasm-modules", | ||
"experimental ES Module support for webassembly modules", | ||
&EnvironmentOptions::experimental_wasm_modules, | ||
kAllowedInEnvvar); | ||
AddOption("--experimental-wasm-modules", "", NoOp{}, kAllowedInEnvvar); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think "unflag an experimental feature" should start with switching the default value to be BTW, if we are going to make this a no-op, There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I agree, if having WASM module enabled breaks something, it's useful to be able to disable it. We can make the falg a no-op in another major |
||
AddOption("--experimental-import-meta-resolve", | ||
"experimental ES Module import.meta.resolve() parentURL support", | ||
&EnvironmentOptions::experimental_import_meta_resolve, | ||
|
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.