We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 28ed17a commit 8c88cc1Copy full SHA for 8c88cc1
registry/lib/constants/env.js
@@ -20,6 +20,10 @@ module.exports = Object.freeze({
20
// PRE_COMMIT is set to '1' by our 'test-pre-commit' script run by the
21
// .husky/pre-commit hook.
22
PRE_COMMIT: envAsBoolean(env.PRE_COMMIT),
23
+ // Flag set to help debug Socket CLI.
24
+ // eslint-disable-next-line no-warning-comments
25
+ // TODO: Make the environment variable name configurable.
26
+ SOCKET_CLI_DEBUG: envAsBoolean(env.SOCKET_CLI_DEBUG),
27
// TAP=1 is set by the tap-run test runner.
28
// https://node-tap.org/environment/#environment-variables-used-by-tap
29
TAP: envAsBoolean(env.TAP),
0 commit comments