@@ -15,11 +15,10 @@ module.exports = ObjectFreeze({
15
15
// Libraries like yocto-colors check for CI not by value but my existence,
16
16
// e.g. `'CI' in process.env`.
17
17
CI : ObjectHasOwn ( env , 'CI' ) ,
18
- // Variable to enable debug logging based on the 'debug' package.
18
+ // Enable debug logging based on the 'debug' package.
19
19
// https://socket.dev/npm/package/debug/overview/4.4.1
20
20
DEBUG ,
21
- // Variable to set the debug log level
22
- // (notice, error, warn, info, verbose, http, silly).
21
+ // Set the debug log level (notice, error, warn, info, verbose, http, silly).
23
22
LOG_LEVEL : envAsString ( env . LOG_LEVEL ) ,
24
23
// .github/workflows/provenance.yml defines this.
25
24
// https://docs.github.com/en/actions/use-cases-and-examples/publishing-packages/publishing-nodejs-packages
@@ -38,7 +37,7 @@ module.exports = ObjectFreeze({
38
37
// PRE_COMMIT is set to '1' by our 'test-pre-commit' script run by the
39
38
// .husky/pre-commit hook.
40
39
PRE_COMMIT : envAsBoolean ( env . PRE_COMMIT ) ,
41
- // Variable to enable debug logging in Socket CLI.
40
+ // Enable debug logging in Socket CLI.
42
41
SOCKET_CLI_DEBUG : ! ! DEBUG || envAsBoolean ( env . SOCKET_CLI_DEBUG ) ,
43
42
// TAP=1 is set by the tap-run test runner.
44
43
// https://node-tap.org/environment/#environment-variables-used-by-tap
0 commit comments