We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 555126a commit 8db905eCopy full SHA for 8db905e
src/constants.ts
@@ -283,9 +283,12 @@ const lazyZshRcPath = () =>
283
// Harden Node security.
284
// https://nodejs.org/en/learn/getting-started/security-best-practices
285
const nodeHardenFlags: string[] = [
286
- //'--disable-proto', 'delete',
287
- //'--frozen-intrinsics',
288
- //'--no-deprecation'
+ '--disable-proto',
+ 'delete',
+ // TODO: We can try --frozen-intrinsics once
289
+ // https://github.com/SBoudrias/Inquirer.js/pull/1683 is addressed.
290
+ // '--frozen-intrinsics',
291
+ '--no-deprecation'
292
]
293
294
const constants = createConstantsObject(
0 commit comments