@salesforce/core-bundle 8.14.0 → 8.14.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/lib/index.js +4 -2
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -7821,7 +7821,9 @@ var require_logger = __commonJS({
7821
7821
  return {
7822
7822
  target: "pino-pretty",
7823
7823
  options: {
7824
- colorize: env.getBoolean("SF_LOG_COLORIZE") ?? true,
7824
+ // NOTE: env.getBoolean() defaults to false if the env var is not set
7825
+ // so it's important to use `||` instead of `??`
7826
+ colorize: env.getBoolean("SF_LOG_COLORIZE") || true,
7825
7827
  destination: env.getBoolean("SF_LOG_STDERR") ? 2 : 1
7826
7828
  }
7827
7829
  };
@@ -12334,7 +12336,7 @@ var require_package2 = __commonJS({
12334
12336
  "package.json"(exports2, module2) {
12335
12337
  module2.exports = {
12336
12338
  name: "@salesforce/core-bundle",
12337
- version: "8.14.0",
12339
+ version: "8.14.1",
12338
12340
  description: "Core libraries to interact with SFDX projects, orgs, and APIs.",
12339
12341
  main: "lib/index",
12340
12342
  types: "lib/index.d.ts",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforce/core-bundle",
3
- "version": "8.14.0",
3
+ "version": "8.14.1",
4
4
  "description": "Core libraries to interact with SFDX projects, orgs, and APIs.",
5
5
  "main": "lib/index",
6
6
  "types": "lib/index.d.ts",