Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCheng Zhao <zcbenz@gmail.com>2022-01-05 14:01:49 +0300
committerGitHub <noreply@github.com>2022-01-05 14:01:49 +0300
commita706342368ff7c05fc2ae6b55e9eaa47815785dd (patch)
tree15cddaa27f61e0ca4f9772038fd5447d64f9ebe4 /configure.py
parentf34c0e0bc00bac9d1f4e375b81b8669ff0b3ce6e (diff)
src: add kNoBrowserGlobals flag for Environment
PR-URL: https://github.com/nodejs/node/pull/40532 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Minwoo Jung <nodecorelab@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.py b/configure.py
index a1b5c5570b6..817bcbf8bfc 100755
--- a/configure.py
+++ b/configure.py
@@ -703,7 +703,8 @@ parser.add_argument('--no-browser-globals',
dest='no_browser_globals',
default=None,
help='do not export browser globals like setTimeout, console, etc. ' +
- '(This mode is not officially supported for regular applications)')
+ '(This mode is deprecated and not officially supported for regular ' +
+ 'applications)')
parser.add_argument('--without-inspector',
action='store_true',