1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-02 12:28:46 -05:00

fix(ext/node): export process.allowedNodeEnvironmentFlags (#25629)

This commit is contained in:
Divy Srivastava 2024-09-15 08:15:19 +05:30 committed by GitHub
parent ccd1ca8a8b
commit 4655172c0b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -748,6 +748,8 @@ Object.defineProperty(Process.prototype, "allowedNodeEnvironmentFlags", {
},
});
export const allowedNodeEnvironmentFlags = ALLOWED_FLAGS;
Process.prototype.features = { inspector: false };
// TODO(kt3k): Get the value from --no-deprecation flag.