diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-02-14 15:53:00 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-14 15:53:00 +0100 |
commit | b3c85c3548ac3c56f0cf0f3ace36a6f3de3bf823 (patch) | |
tree | ccf6b840b1ae00f6e5ee39655308bc40933d0cb4 /runtime/build.rs | |
parent | 201737c518237b271b5bbbd8e2b1fd19ce51fdd9 (diff) |
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.
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 d3f92cf6a..e70e8fe5d 100644 --- a/runtime/build.rs +++ b/runtime/build.rs @@ -231,7 +231,7 @@ mod not_docs { None, false, // No --unstable. None, ), - deno_napi::init::<Permissions>(false), + deno_napi::init::<Permissions>(), deno_http::init(), deno_flash::init::<Permissions>(false), // No --unstable runtime_extension, |