@salesforce/cli 2.8.3-esm.0 → 2.8.3-esm.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.
- package/dist/cli.js +2 -1
- package/npm-shrinkwrap.json +2 -2
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/dist/cli.js
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
*/
|
|
7
7
|
import * as os from 'os';
|
|
8
8
|
import * as path from 'path';
|
|
9
|
+
import { fileURLToPath } from 'url';
|
|
9
10
|
import { Config, run as oclifRun, settings } from '@oclif/core';
|
|
10
11
|
import { set } from '@salesforce/kit';
|
|
11
12
|
import Debug from 'debug';
|
|
@@ -88,7 +89,7 @@ function debugCliInfo(version, channel, env, config) {
|
|
|
88
89
|
export function create(opts) {
|
|
89
90
|
var _a;
|
|
90
91
|
settings.performanceEnabled = true;
|
|
91
|
-
const root = path.resolve(import.meta.url, '..');
|
|
92
|
+
const root = path.resolve(fileURLToPath(import.meta.url), '..');
|
|
92
93
|
const args = process.argv.slice(2);
|
|
93
94
|
const env = (_a = opts.env) !== null && _a !== void 0 ? _a : nodeEnv;
|
|
94
95
|
return {
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforce/cli",
|
|
3
|
-
"version": "2.8.3-esm.
|
|
3
|
+
"version": "2.8.3-esm.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@salesforce/cli",
|
|
9
|
-
"version": "2.8.3-esm.
|
|
9
|
+
"version": "2.8.3-esm.2",
|
|
10
10
|
"hasInstallScript": true,
|
|
11
11
|
"license": "BSD-3-Clause",
|
|
12
12
|
"dependencies": {
|
package/oclif.manifest.json
CHANGED