@oclif/plugin-commands 3.2.1 → 3.3.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
@@ -21,7 +21,7 @@ $ npm install -g @oclif/plugin-commands
21
21
  $ oclif-example COMMAND
22
22
  running command...
23
23
  $ oclif-example (--version)
24
- @oclif/plugin-commands/3.2.1 linux-x64 node-v20.11.1
24
+ @oclif/plugin-commands/3.3.0 linux-x64 node-v20.12.1
25
25
  $ oclif-example --help [COMMAND]
26
26
  USAGE
27
27
  $ oclif-example COMMAND
@@ -65,7 +65,7 @@ DESCRIPTION
65
65
  list all the commands
66
66
  ```
67
67
 
68
- _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.2.1/src/commands/commands.ts)_
68
+ _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.3.0/src/commands/commands.ts)_
69
69
  <!-- commandsstop -->
70
70
 
71
71
  # Contributing
package/lib/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
- declare const _default: {};
2
- export default _default;
1
+ import Commands from "./commands/commands.js";
2
+ export declare const commands: {
3
+ commands: typeof Commands;
4
+ };
package/lib/index.js CHANGED
@@ -1 +1,4 @@
1
- export default {};
1
+ import Commands from "./commands/commands.js";
2
+ export const commands = {
3
+ commands: Commands
4
+ };