@salesforce/cli 2.38.0 → 2.38.2

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.
@@ -21,7 +21,7 @@ function buildChoices(matches, config) {
21
21
  async function determineCommand(config, matches) {
22
22
  const [{ setTimeout }, { SfError }, select] = await Promise.all([
23
23
  import('node:timers/promises'),
24
- import('@salesforce/core'),
24
+ import('@salesforce/core/sfError'),
25
25
  import('@inquirer/select'),
26
26
  ]);
27
27
  const choices = buildChoices(matches, config);
package/dist/util/env.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Licensed under the BSD 3-Clause license.
5
5
  * For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
6
6
  */
7
- import { EnvVars } from '@salesforce/core/lib/config/envVars.js';
7
+ import { EnvVars } from '@salesforce/core/envVars';
8
8
  export class Env extends EnvVars {
9
9
  constructor(env = process.env) {
10
10
  super(env);