Skip to content

Commit 617ea4a

Browse files
cola119ruyadorno
authored andcommitted
lib: add missing env vars to --help
PR-URL: #43492 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: James M Snell <[email protected]> Reviewed-By: Michael Dawson <[email protected]> Reviewed-By: Feng Yu <[email protected]>
1 parent 4249276 commit 617ea4a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/internal/main/print_help.js

+5
Original file line numberDiff line numberDiff line change
@@ -55,10 +55,15 @@ const envVars = new SafeMap(ArrayPrototypeConcat([
5555
'of stderr' }],
5656
['NODE_REPL_HISTORY', { helpText: 'path to the persistent REPL ' +
5757
'history file' }],
58+
['NODE_REPL_EXTERNAL_MODULE', { helpText: 'path to a Node.js module ' +
59+
'which will be loaded in place of the built-in REPL' }],
60+
['NODE_SKIP_PLATFORM_CHECK', { helpText: 'set to 1 to skip ' +
61+
'the check for a supported platform during Node.js startup' }],
5862
['NODE_TLS_REJECT_UNAUTHORIZED', { helpText: 'set to 0 to disable TLS ' +
5963
'certificate validation' }],
6064
['NODE_V8_COVERAGE', { helpText: 'directory to output v8 coverage JSON ' +
6165
'to' }],
66+
['TZ', { helpText: 'specify the timezone configuration' }],
6267
['UV_THREADPOOL_SIZE', { helpText: 'sets the number of threads used in ' +
6368
'libuv\'s threadpool' }],
6469
], hasIntl ? [

0 commit comments

Comments
 (0)