@oclif/plugin-commands 3.1.6 → 3.1.7-dev.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
@@ -20,7 +20,7 @@ $ npm install -g @oclif/plugin-commands
20
20
  $ oclif-example COMMAND
21
21
  running command...
22
22
  $ oclif-example (--version)
23
- @oclif/plugin-commands/3.1.6 linux-x64 node-v20.11.1
23
+ @oclif/plugin-commands/3.1.7-dev.0 linux-x64 node-v20.11.1
24
24
  $ oclif-example --help [COMMAND]
25
25
  USAGE
26
26
  $ oclif-example COMMAND
@@ -64,5 +64,5 @@ DESCRIPTION
64
64
  list all the commands
65
65
  ```
66
66
 
67
- _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.1.6/src/commands/commands.ts)_
67
+ _See code: [src/commands/commands.ts](https://github.com/oclif/plugin-commands/blob/v3.1.7-dev.0/src/commands/commands.ts)_
68
68
  <!-- commandsstop -->
package/lib/index.d.ts CHANGED
@@ -1,2 +1,5 @@
1
- declare const _default: {};
1
+ import Commands from './commands/commands.js';
2
+ declare const _default: {
3
+ Commands: typeof Commands;
4
+ };
2
5
  export default _default;
package/lib/index.js CHANGED
@@ -1 +1,4 @@
1
- export default {};
1
+ import Commands from './commands/commands.js';
2
+ export default {
3
+ Commands,
4
+ };