oclif 3.7.1 → 3.7.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/.oclif.manifest.json +1 -1
- package/lib/commands/manifest.js +1 -1
- package/package.json +2 -2
package/.oclif.manifest.json
CHANGED
package/lib/commands/manifest.js
CHANGED
|
@@ -54,7 +54,7 @@ class Manifest extends core_1.Command {
|
|
|
54
54
|
let plugin = new core_1.Plugin({ root, type: 'core', ignoreManifest: true, errorOnManifestCreate: true });
|
|
55
55
|
if (!plugin)
|
|
56
56
|
throw new Error('plugin not found');
|
|
57
|
-
await plugin.load(
|
|
57
|
+
await plugin.load();
|
|
58
58
|
if (!plugin.valid) {
|
|
59
59
|
const p = require.resolve('@oclif/plugin-legacy', { paths: [process.cwd()] });
|
|
60
60
|
const { PluginLegacy } = require(p);
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "oclif",
|
|
3
3
|
"description": "oclif: create your own CLI",
|
|
4
|
-
"version": "3.7.
|
|
4
|
+
"version": "3.7.2",
|
|
5
5
|
"author": "Salesforce",
|
|
6
6
|
"bin": {
|
|
7
7
|
"oclif": "bin/run"
|
|
8
8
|
},
|
|
9
9
|
"bugs": "https://github.com/oclif/oclif/issues",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@oclif/core": "^2.7.
|
|
11
|
+
"@oclif/core": "^2.7.1",
|
|
12
12
|
"@oclif/plugin-help": "^5.1.19",
|
|
13
13
|
"@oclif/plugin-not-found": "^2.3.7",
|
|
14
14
|
"@oclif/plugin-warn-if-update-available": "^2.0.14",
|