-
Notifications
You must be signed in to change notification settings - Fork 29.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cli: fix flags on help output #22271
Conversation
src/node.cc
Outdated
" --experimental-modules experimental ES Module support\n" | ||
" and caching modules\n" | ||
#endif // defined(NODE_HAVE_I18N_SUPPORT) | ||
" --experimental-repl-await experimental await keyword support\n" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What were the NODE_HAVE_I18N_SUPPORT
checks about?
FWIW, there already were some doubts about the connection between Intl support and some CLI flags in #19878 |
'--icu-data-dir=dir', '--preserve-symlinks', | ||
'NODE_ICU_DATA', 'NODE_PRESERVE_SYMLINKS' ] }, | ||
flags: [ | ||
'--icu-data-dir=dir', 'NODE_ICU_DATA', 'NODE_PRESERVE_SYMLINKS', |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit: I'd rather be consistent with the existing entries in terms of style.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Test still fails. Is NODE_PRESERVE_SYMLINKS
still needed in this check?
Rebuild flaky and failed jobs: |
PR-URL: #22271 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
PR-URL: #22271 Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com>
Checklist
make -j4 test
(UNIX), orvcbuild test
(Windows) passes