summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
Diffstat (limited to 'ext')
-rw-r--r--ext/node/polyfills/child_process.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/node/polyfills/child_process.ts b/ext/node/polyfills/child_process.ts
index 0f45230d9..c88266cbe 100644
--- a/ext/node/polyfills/child_process.ts
+++ b/ext/node/polyfills/child_process.ts
@@ -9,6 +9,7 @@
import { core, internals } from "ext:core/mod.js";
const {
op_node_child_ipc_pipe,
+ op_bootstrap_unstable_args,
} = core.ensureFastOps();
const {
op_npm_process_state,
@@ -130,7 +131,7 @@ export function fork(
}
args = [
"run",
- "--unstable", // TODO(kt3k): Remove when npm: is stable
+ ...op_bootstrap_unstable_args(),
"--node-modules-dir",
"-A",
...stringifiedV8Flags,