diff options
| author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-10 17:57:10 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-10 17:57:10 +0100 |
| commit | 53e974b276b095faf52918c4c6e988e9d2788cef (patch) | |
| tree | 44b9807d87e90005f02192bb01e96ef053096f1a /runtime/build.rs | |
| parent | fd32f75da997b805a4ba95c68b4aaeed9f020cb1 (diff) | |
feat: remove --unstable flag requirement for npm: specifiers (#16473)
This commit makes "npm:" specifiers not require "--unstable" flag.
At the moment some APIs used by Node polyfills still require
"--unstable" which will be addressed in follow up PRs.
Diffstat (limited to 'runtime/build.rs')
| -rw-r--r-- | runtime/build.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/build.rs b/runtime/build.rs index 23411fc77..71301a36b 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -194,7 +194,7 @@ mod not_docs { deno_broadcast_channel::InMemoryBroadcastChannel::default(), false, // No --unstable. ), - deno_node::init::<Permissions>(false, None), // No --unstable. + deno_node::init::<Permissions>(None), deno_ffi::init::<Permissions>(false), deno_net::init::<Permissions>( None, false, // No --unstable. |
