From 53e974b276b095faf52918c4c6e988e9d2788cef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Thu, 10 Nov 2022 17:57:10 +0100 Subject: 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. --- runtime/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/build.rs') 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::(false, None), // No --unstable. + deno_node::init::(None), deno_ffi::init::(false), deno_net::init::( None, false, // No --unstable. -- cgit v1.2.3