From b3c85c3548ac3c56f0cf0f3ace36a6f3de3bf823 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Tue, 14 Feb 2023 15:53:00 +0100 Subject: feat(node): stabilize Node-API (#17553) This commit stabilizes Node-API, the "--unstable" flag is no longer required to load native extensions. "--allow-ffi" permission is still required to load them. --- cli/build.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'cli') diff --git a/cli/build.rs b/cli/build.rs index d71b92e1a..867f3fb98 100644 --- a/cli/build.rs +++ b/cli/build.rs @@ -348,7 +348,7 @@ fn create_cli_snapshot(snapshot_path: PathBuf) { None, false, // No --unstable. None, ), - deno_napi::init::(false), + deno_napi::init::(), deno_http::init(), deno_flash::init::(false), // No --unstable ]; -- cgit v1.2.3