@oclif/core 2.0.0-beta.6 → 2.0.0-beta.7

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/command.d.ts +1 -1
  2. package/package.json +1 -1
package/lib/command.d.ts CHANGED
@@ -105,7 +105,7 @@ export declare abstract class Command {
105
105
  /**
106
106
  * actual command run code goes here
107
107
  */
108
- abstract run(): PromiseLike<any>;
108
+ abstract run(): Promise<any>;
109
109
  protected init(): Promise<any>;
110
110
  protected warnIfFlagDeprecated(flags: Record<string, unknown>): void;
111
111
  protected warnIfCommandDeprecated(): void;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/core",
3
3
  "description": "base library for oclif CLIs",
4
- "version": "2.0.0-beta.6",
4
+ "version": "2.0.0-beta.7",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {