We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3933487 commit 77b3fd4Copy full SHA for 77b3fd4
src/constants.ts
@@ -252,7 +252,8 @@ const lazyNmBinPath = () =>
252
// https://nodejs.org/en/learn/getting-started/security-best-practices
253
const lazyNodeHardenFlags = () =>
254
// The '@rollup/plugin-replace' will replace "process.env[INLINED_SOCKET_CLI_SENTRY_BUILD]".
255
- process.env[INLINED_SOCKET_CLI_SENTRY_BUILD]
+ // Lazily access constants.WIN32.
256
+ process.env[INLINED_SOCKET_CLI_SENTRY_BUILD] || constants.WIN32
257
? []
258
: // We have contributed the following patches to our dependencies to make
259
// Node's --frozen-intrinsics workable.
0 commit comments