@oclif/plugin-help 6.1.0 → 6.2.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
@@ -27,7 +27,7 @@ DESCRIPTION
27
27
  Display help for oclif.
28
28
  ```
29
29
 
30
- _See code: [src/commands/help.ts](https://github.com/oclif/plugin-help/blob/v6.1.0/src/commands/help.ts)_
30
+ _See code: [src/commands/help.ts](https://github.com/oclif/plugin-help/blob/v6.2.0/src/commands/help.ts)_
31
31
  <!-- commandsstop -->
32
32
 
33
33
  # Contributing
package/lib/index.d.ts CHANGED
@@ -1,2 +1,4 @@
1
- declare const _default: {};
2
- export default _default;
1
+ import Help from './commands/help.js';
2
+ export declare const commands: {
3
+ help: typeof Help;
4
+ };
package/lib/index.js CHANGED
@@ -1 +1,4 @@
1
- export default {};
1
+ import Help from './commands/help.js';
2
+ export const commands = {
3
+ help: Help,
4
+ };
@@ -39,5 +39,5 @@
39
39
  ]
40
40
  }
41
41
  },
42
- "version": "6.1.0"
42
+ "version": "6.2.0"
43
43
  }
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@oclif/plugin-help",
3
3
  "description": "Standard help for oclif.",
4
- "version": "6.1.0",
4
+ "version": "6.2.0",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-help/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^4.0.0-beta.13"
8
+ "@oclif/core": "^4"
9
9
  },
10
10
  "devDependencies": {
11
11
  "@commitlint/config-conventional": "^19",
@@ -23,7 +23,7 @@
23
23
  "husky": "^9",
24
24
  "lint-staged": "^15",
25
25
  "mocha": "^10.4.0",
26
- "oclif": "^4.11.1",
26
+ "oclif": "^4.12.0",
27
27
  "prettier": "^3.2.5",
28
28
  "shx": "^0.3.4",
29
29
  "ts-node": "^10.9.2",