@oclif/plugin-update 4.4.16 → 4.5.0

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/README.md CHANGED
@@ -55,7 +55,7 @@ EXAMPLES
55
55
  $ oclif-example update --available
56
56
  ```
57
57
 
58
- _See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.4.16/src/commands/update.ts)_
58
+ _See code: [src/commands/update.ts](https://github.com/oclif/plugin-update/blob/v4.5.0/src/commands/update.ts)_
59
59
  <!-- commandsstop -->
60
60
 
61
61
  # Contributing
@@ -0,0 +1,7 @@
1
+ import CommandsUpdate from './commands/update.js';
2
+ export declare const commands: {
3
+ update: typeof CommandsUpdate;
4
+ };
5
+ export declare const hooks: {
6
+ init: import("@oclif/core").Hook<"init">;
7
+ };
package/dist/index.js ADDED
@@ -0,0 +1,8 @@
1
+ import CommandsUpdate from './commands/update.js';
2
+ import { init } from './hooks/init.js';
3
+ export const commands = {
4
+ update: CommandsUpdate,
5
+ };
6
+ export const hooks = {
7
+ init,
8
+ };
@@ -96,5 +96,5 @@
96
96
  ]
97
97
  }
98
98
  },
99
- "version": "4.4.16"
99
+ "version": "4.5.0"
100
100
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oclif/plugin-update",
3
- "version": "4.4.16",
3
+ "version": "4.5.0",
4
4
  "author": "Salesforce",
5
5
  "bugs": "https://github.com/oclif/plugin-update/issues",
6
6
  "dependencies": {