diff options
author | Guy Bedford <guybedford@gmail.com> | 2020-08-05 12:06:28 -0700 |
---|---|---|
committer | Guy Bedford <guybedford@gmail.com> | 2020-08-11 14:35:44 -0700 |
commit | 77a515c31aa4383e54e032bebdc399b3704e8a3d (patch) | |
tree | 7d9c73a93ab4314b1121ce4a62c17a408a7625e1 /src/node_options.h | |
parent | 420da0ccd195adfd36bf160d59af92567a8df74f (diff) | |
download | node-new-77a515c31aa4383e54e032bebdc399b3704e8a3d.tar.gz |
module: custom --conditions flag option
PR-URL: https://github.com/nodejs/node/pull/34637
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Geoffrey Booth <webmaster@geoffreybooth.com>
Reviewed-By: Jan Krems <jan.krems@gmail.com>
Diffstat (limited to 'src/node_options.h')
-rw-r--r-- | src/node_options.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/node_options.h b/src/node_options.h index fe20022bb2..3258d4b3f0 100644 --- a/src/node_options.h +++ b/src/node_options.h @@ -100,6 +100,7 @@ class DebugOptions : public Options { class EnvironmentOptions : public Options { public: bool abort_on_uncaught_exception = false; + std::vector<std::string> conditions; bool enable_source_maps = false; bool experimental_json_modules = false; bool experimental_modules = false; |