@oclif/plugin-help 3.3.0 → 3.3.1

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
@@ -1,7 +1,7 @@
1
1
  @oclif/plugin-help
2
2
  ===================
3
3
 
4
- A CLI command to invoke the standard help functionality from [oclif/core](https://github.com/oclif/core).
4
+ standard help for oclif
5
5
 
6
6
  [![Version](https://img.shields.io/npm/v/@oclif/plugin-help.svg)](https://npmjs.org/package/@oclif/plugin-help)
7
7
  [![CircleCI](https://circleci.com/gh/oclif/plugin-help/tree/master.svg?style=svg)](https://circleci.com/gh/oclif/plugin-help/tree/master)
@@ -1,9 +1,7 @@
1
- import { Command } from '@oclif/core';
1
+ import Command, { flags } from '@oclif/command';
2
2
  export default class HelpCommand extends Command {
3
3
  static description: string;
4
- static flags: {
5
- all: import("@oclif/core/lib/interfaces").BooleanFlag<boolean>;
6
- };
4
+ static flags: flags.Input<any>;
7
5
  static args: {
8
6
  name: string;
9
7
  required: boolean;
@@ -1,17 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const core_1 = require("@oclif/core");
4
- class HelpCommand extends core_1.Command {
3
+ const command_1 = require("@oclif/command");
4
+ const help_1 = require("@oclif/help");
5
+ class HelpCommand extends command_1.default {
5
6
  async run() {
6
- const { flags, argv } = await this.parse(HelpCommand);
7
- const help = new core_1.Help(this.config, { all: flags.all });
7
+ const { flags, argv } = this.parse(HelpCommand);
8
+ const Help = help_1.getHelpClass(this.config);
9
+ const help = new Help(this.config, { all: flags.all });
8
10
  help.showHelp(argv);
9
11
  }
10
12
  }
11
13
  exports.default = HelpCommand;
12
14
  HelpCommand.description = 'display help for <%= config.bin %>';
13
15
  HelpCommand.flags = {
14
- all: core_1.Flags.boolean({ description: 'see all commands in CLI' }),
16
+ all: command_1.flags.boolean({ description: 'see all commands in CLI' }),
15
17
  };
16
18
  HelpCommand.args = [
17
19
  { name: 'command', required: false, description: 'command to show help for' },
package/lib/index.d.ts ADDED
@@ -0,0 +1 @@
1
+ export { Help, getHelpClass, HelpOptions, HelpBase } from '@oclif/help';
package/lib/index.js ADDED
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var help_1 = require("@oclif/help");
4
+ exports.Help = help_1.Help;
5
+ exports.getHelpClass = help_1.getHelpClass;
6
+ exports.HelpBase = help_1.HelpBase;
@@ -1 +1 @@
1
- {"version":"3.3.0","commands":{"commands:help":{"id":"commands:help","description":"display help for <%= config.bin %>","pluginName":"@oclif/plugin-help","pluginType":"core","aliases":[],"flags":{"json":{"name":"json","type":"boolean","description":"Format output as json.","allowNo":false},"all":{"name":"all","type":"boolean","description":"see all commands in CLI","allowNo":false}},"args":[{"name":"command","description":"command to show help for","required":false}]}}}
1
+ {"version":"3.3.1","commands":{"help":{"id":"help","description":"display help for <%= config.bin %>","pluginName":"@oclif/plugin-help","pluginType":"core","aliases":[],"flags":{"all":{"name":"all","type":"boolean","description":"see all commands in CLI","allowNo":false}},"args":[{"name":"command","description":"command to show help for","required":false}]}}}
package/package.json CHANGED
@@ -1,25 +1,41 @@
1
1
  {
2
2
  "name": "@oclif/plugin-help",
3
3
  "description": "standard help for oclif",
4
- "version": "3.3.0",
5
- "author": "Jeff Dickey @jdxcode",
4
+ "version": "3.3.1",
5
+ "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/plugin-help/issues",
7
7
  "dependencies": {
8
- "@oclif/core": "^0.5.28"
8
+ "@oclif/command": "^1.8.15",
9
+ "@oclif/config": "1.18.2",
10
+ "@oclif/errors": "1.3.5",
11
+ "@oclif/help": "^1.0.1",
12
+ "chalk": "^4.1.2",
13
+ "indent-string": "^4.0.0",
14
+ "lodash": "^4.17.21",
15
+ "string-width": "^4.2.0",
16
+ "strip-ansi": "^6.0.0",
17
+ "widest-line": "^3.1.0",
18
+ "wrap-ansi": "^6.2.0"
9
19
  },
10
20
  "devDependencies": {
11
- "@oclif/dev-cli": "^1.26.0",
12
- "@oclif/plugin-plugins": "^1.7.6",
13
- "@oclif/test": "core-v1",
21
+ "@oclif/dev-cli": "1.26.10",
22
+ "@oclif/plugin-legacy": "1.2.7",
23
+ "@oclif/plugin-plugins": "1.10.11",
24
+ "@oclif/test": "1.2.9",
14
25
  "@types/chai": "^4.1.7",
26
+ "@types/lodash": "^4.14.176",
15
27
  "@types/mocha": "^8.0.0",
28
+ "@types/node": "^14.0.14",
29
+ "@types/strip-ansi": "^5.2.1",
30
+ "@types/wrap-ansi": "^8.0.1",
16
31
  "chai": "^4.2.0",
17
32
  "eslint": "^7.3.1",
18
33
  "eslint-config-oclif": "^3.1.0",
19
34
  "eslint-config-oclif-typescript": "^0.2.0",
35
+ "globby": "^11.0.1",
20
36
  "mocha": "^8.2.1",
21
- "oclif": "^1.18.1",
22
- "shx": "^0.3.3",
37
+ "nock": "^13.0.0",
38
+ "sinon": "^10.0.0",
23
39
  "ts-node": "^9.1.1",
24
40
  "typescript": "3.8.3"
25
41
  },
@@ -35,23 +51,24 @@
35
51
  "oclif-plugin"
36
52
  ],
37
53
  "license": "MIT",
38
- "main": "./lib/help.js",
54
+ "main": "./lib/index.js",
39
55
  "oclif": {
40
- "commands": "./lib",
56
+ "commands": "./lib/commands",
41
57
  "bin": "oclif",
42
58
  "devPlugins": [
43
- "@oclif/plugin-plugins"
59
+ "@oclif/plugin-plugins",
60
+ "@oclif/plugin-legacy"
44
61
  ]
45
62
  },
46
63
  "repository": "oclif/plugin-help",
47
64
  "scripts": {
48
- "build": "shx rm -rf lib && tsc",
65
+ "build": "rm -rf lib && tsc",
49
66
  "lint": "eslint . --ext .ts --config .eslintrc",
50
- "pretest": "yarn build && tsc -p test --noEmit",
67
+ "pretest": "yarn build --noEmit && tsc -p test --noEmit",
51
68
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
52
69
  "posttest": "yarn lint",
53
70
  "prepack": "yarn run build && oclif-dev manifest",
54
- "postpack": "shx rm oclif.manifest.json"
71
+ "postpack": "rm oclif.manifest.json"
55
72
  },
56
- "types": "./lib/help.d.ts"
73
+ "types": "./lib/index.d.ts"
57
74
  }
package/CHANGELOG.md DELETED
@@ -1,648 +0,0 @@
1
- # Changelog
2
-
3
- All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
-
5
- ## [3.3.0](https://github.com/oclif/plugin-help/compare/v3.2.2...v3.3.0) (2021-08-06)
6
-
7
-
8
- ### Features
9
-
10
- * upgrade to oclif-core ([7154ae7](https://github.com/oclif/plugin-help/commit/7154ae7c5c1438d3fbf408d1f49a90165e7a21f3))
11
-
12
-
13
- ### Bug Fixes
14
-
15
- * re-add oclif/dev-cli ([5e17dd5](https://github.com/oclif/plugin-help/commit/5e17dd5567a2b7c6afa2bde5eb5504f5048447db))
16
-
17
- ## [3.2.2](https://github.com/oclif/plugin-help/compare/v3.2.1...v3.2.2) (2021-02-03)
18
-
19
-
20
- ### Bug Fixes
21
-
22
- * avoid recomputing topics in loop ([#189](https://github.com/oclif/plugin-help/issues/189)) ([eccb862](https://github.com/oclif/plugin-help/commit/eccb862e725f28d305de5cccde109c15abbb5f98)), closes [#101](https://github.com/oclif/plugin-help/issues/101)
23
-
24
- ## [3.2.1](https://github.com/oclif/plugin-help/compare/v3.2.0...v3.2.1) (2020-12-14)
25
-
26
-
27
- ### Bug Fixes
28
-
29
- * move oclif/errors to dependencies ([#179](https://github.com/oclif/plugin-help/issues/179)) ([a5e8320](https://github.com/oclif/plugin-help/commit/a5e8320ce480c55ba7800a8a9f444e681dee7a76))
30
-
31
- # [3.2.0](https://github.com/oclif/plugin-help/compare/v3.1.0...v3.2.0) (2020-08-03)
32
-
33
-
34
- ### Features
35
-
36
- * support src/command/index cmd ([#112](https://github.com/oclif/plugin-help/issues/112)) ([8957336](https://github.com/oclif/plugin-help/commit/8957336f3c35675bb243ac90c49c298fbef23e59))
37
-
38
- ## [2.1.4](https://github.com/oclif/plugin-help/compare/v2.1.3...v2.1.4) (2018-11-12)
39
-
40
-
41
- ### Bug Fixes
42
-
43
- * Expose command help method ([#33](https://github.com/oclif/plugin-help/issues/33)) ([0c0a0d9](https://github.com/oclif/plugin-help/commit/0c0a0d9))
44
-
45
- ## [2.1.3](https://github.com/oclif/plugin-help/compare/v2.1.2...v2.1.3) (2018-10-13)
46
-
47
-
48
- ### Bug Fixes
49
-
50
- * remove greenkeeper badge ([63640c7](https://github.com/oclif/plugin-help/commit/63640c7))
51
-
52
- ## [2.1.2](https://github.com/oclif/plugin-help/compare/v2.1.1...v2.1.2) (2018-09-13)
53
-
54
-
55
- ### Bug Fixes
56
-
57
- * move strip-ansi into dependencies ([17863f9](https://github.com/oclif/plugin-help/commit/17863f9))
58
-
59
- ## [2.1.1](https://github.com/oclif/plugin-help/compare/v2.1.0...v2.1.1) (2018-09-01)
60
-
61
-
62
- ### Bug Fixes
63
-
64
- * show docs for allowNo on boolean flags ([208a27a](https://github.com/oclif/plugin-help/commit/208a27a))
65
-
66
- <a name="2.1.0"></a>
67
- # [2.1.0](https://github.com/oclif/plugin-help/compare/v2.0.5...v2.1.0) (2018-08-17)
68
-
69
-
70
- ### Features
71
-
72
- * typescript 3 ([53c4d0f](https://github.com/oclif/plugin-help/commit/53c4d0f))
73
-
74
- <a name="2.0.5"></a>
75
- ## [2.0.5](https://github.com/oclif/plugin-help/compare/v2.0.4...v2.0.5) (2018-06-06)
76
-
77
-
78
- ### Bug Fixes
79
-
80
- * show argument options in help ([#26](https://github.com/oclif/plugin-help/issues/26)) ([0c8d1bf](https://github.com/oclif/plugin-help/commit/0c8d1bf))
81
-
82
- <a name="2.0.4"></a>
83
- ## [2.0.4](https://github.com/oclif/plugin-help/compare/v2.0.3...v2.0.4) (2018-05-31)
84
-
85
-
86
- ### Bug Fixes
87
-
88
- * trim descriptions ([d26baaa](https://github.com/oclif/plugin-help/commit/d26baaa))
89
-
90
- <a name="2.0.3"></a>
91
- ## [2.0.3](https://github.com/oclif/plugin-help/compare/v2.0.2...v2.0.3) (2018-05-31)
92
-
93
-
94
- ### Bug Fixes
95
-
96
- * read from `example` or `examples` ([d08f33b](https://github.com/oclif/plugin-help/commit/d08f33b))
97
-
98
- <a name="2.0.2"></a>
99
- ## [2.0.2](https://github.com/oclif/plugin-help/compare/v2.0.1...v2.0.2) (2018-05-30)
100
-
101
-
102
- ### Bug Fixes
103
-
104
- * allow setting COLUMNS env var ([961fea0](https://github.com/oclif/plugin-help/commit/961fea0))
105
-
106
- <a name="2.0.1"></a>
107
- ## [2.0.1](https://github.com/oclif/plugin-help/compare/v2.0.0...v2.0.1) (2018-05-30)
108
-
109
-
110
- ### Bug Fixes
111
-
112
- * single line to separate examples ([da1c488](https://github.com/oclif/plugin-help/commit/da1c488))
113
-
114
- <a name="2.0.0"></a>
115
- # [2.0.0](https://github.com/oclif/plugin-help/compare/v1.2.11...v2.0.0) (2018-05-28)
116
-
117
-
118
- ### Features
119
-
120
- * removed commands command ([cfcac30](https://github.com/oclif/plugin-help/commit/cfcac30))
121
-
122
-
123
- ### BREAKING CHANGES
124
-
125
- * `commands` command is no longer in this plugin
126
- it will be moved into @oclif/plugin-commands
127
-
128
- <a name="1.2.11"></a>
129
- ## [1.2.11](https://github.com/oclif/plugin-help/compare/v1.2.10...v1.2.11) (2018-05-14)
130
-
131
-
132
- ### Bug Fixes
133
-
134
- * use gray for ConEmu ([d0a469d](https://github.com/oclif/plugin-help/commit/d0a469d))
135
-
136
- <a name="1.2.10"></a>
137
- ## [1.2.10](https://github.com/oclif/plugin-help/compare/v1.2.9...v1.2.10) (2018-05-03)
138
-
139
-
140
- ### Bug Fixes
141
-
142
- * updated semantic-release ([e3ff4aa](https://github.com/oclif/plugin-help/commit/e3ff4aa))
143
-
144
- <a name="1.2.9"></a>
145
- ## [1.2.9](https://github.com/oclif/plugin-help/compare/v1.2.8...v1.2.9) (2018-05-03)
146
-
147
-
148
- ### Bug Fixes
149
-
150
- * manifest ([711b996](https://github.com/oclif/plugin-help/commit/711b996))
151
-
152
- <a name="1.2.8"></a>
153
- ## [1.2.8](https://github.com/oclif/plugin-help/compare/v1.2.7...v1.2.8) (2018-05-03)
154
-
155
-
156
- ### Bug Fixes
157
-
158
- * updated command ([6a725d4](https://github.com/oclif/plugin-help/commit/6a725d4))
159
-
160
- <a name="1.2.7"></a>
161
- ## [1.2.7](https://github.com/oclif/plugin-help/compare/v1.2.6...v1.2.7) (2018-05-01)
162
-
163
-
164
- ### Bug Fixes
165
-
166
- * updated command ([2909558](https://github.com/oclif/plugin-help/commit/2909558))
167
-
168
- <a name="1.2.6"></a>
169
- ## [1.2.6](https://github.com/oclif/plugin-help/compare/v1.2.5...v1.2.6) (2018-05-01)
170
-
171
-
172
- ### Bug Fixes
173
-
174
- * updated command and chalk ([136aaa3](https://github.com/oclif/plugin-help/commit/136aaa3))
175
-
176
- <a name="1.2.5"></a>
177
- ## [1.2.5](https://github.com/oclif/plugin-help/compare/v1.2.4...v1.2.5) (2018-04-20)
178
-
179
-
180
- ### Bug Fixes
181
-
182
- * show topic list without extra newline ([89d0bc5](https://github.com/oclif/plugin-help/commit/89d0bc5))
183
-
184
- <a name="1.2.4"></a>
185
- ## [1.2.4](https://github.com/oclif/plugin-help/compare/v1.2.3...v1.2.4) (2018-04-10)
186
-
187
-
188
- ### Bug Fixes
189
-
190
- * updated command ([5837908](https://github.com/oclif/plugin-help/commit/5837908))
191
-
192
- <a name="1.2.3"></a>
193
- ## [1.2.3](https://github.com/oclif/plugin-help/compare/v1.2.2...v1.2.3) (2018-04-07)
194
-
195
-
196
- ### Bug Fixes
197
-
198
- * show extra line between examples ([d05ec75](https://github.com/oclif/plugin-help/commit/d05ec75))
199
-
200
- <a name="1.2.2"></a>
201
- ## [1.2.2](https://github.com/oclif/plugin-help/compare/v1.2.1...v1.2.2) (2018-03-28)
202
-
203
-
204
- ### Bug Fixes
205
-
206
- * updated [@oclif](https://github.com/oclif)/command ([01e4d9b](https://github.com/oclif/plugin-help/commit/01e4d9b))
207
-
208
- <a name="1.2.1"></a>
209
- ## [1.2.1](https://github.com/oclif/plugin-help/compare/v1.2.0...v1.2.1) (2018-03-24)
210
-
211
-
212
- ### Bug Fixes
213
-
214
- * move help into its own section ([8099431](https://github.com/oclif/plugin-help/commit/8099431))
215
-
216
- <a name="1.2.0"></a>
217
- # [1.2.0](https://github.com/oclif/plugin-help/compare/v1.1.8...v1.2.0) (2018-03-24)
218
-
219
-
220
- ### Bug Fixes
221
-
222
- * use new semantic-release ([8bdc8fc](https://github.com/oclif/plugin-help/commit/8bdc8fc))
223
-
224
-
225
- ### Features
226
-
227
- * show version on root help ([988de52](https://github.com/oclif/plugin-help/commit/988de52))
228
-
229
- <a name="1.1.8"></a>
230
- ## [1.1.8](https://github.com/oclif/plugin-help/compare/a4a769687bd7a19f535773c5ab39064b6b35ac0b...v1.1.8) (2018-03-24)
231
-
232
-
233
- ### Bug Fixes
234
-
235
- * updated command ([5e3b8f5](https://github.com/oclif/plugin-help/commit/5e3b8f5))
236
-
237
- <a name="1.1.7"></a>
238
- ## [1.1.7](https://github.com/oclif/plugin-help/compare/cb5f9bea2c14d88afd94843026b09d245f584864...v1.1.7) (2018-03-23)
239
-
240
-
241
- ### Bug Fixes
242
-
243
- * updated deps ([a4a7696](https://github.com/oclif/plugin-help/commit/a4a7696))
244
-
245
- <a name="1.1.6"></a>
246
- ## [1.1.6](https://github.com/oclif/plugin-help/compare/967d74a74c77f4a8ac7a389b91b92dfaa9caaff1...v1.1.6) (2018-02-28)
247
-
248
-
249
- ### Bug Fixes
250
-
251
- * updated deps ([cb5f9be](https://github.com/oclif/plugin-help/commit/cb5f9be))
252
-
253
- <a name="1.1.5"></a>
254
- ## [1.1.5](https://github.com/oclif/plugin-help/compare/829e75edaf307223a1693b16d10e2216e0f5f9ba...v1.1.5) (2018-02-17)
255
-
256
-
257
- ### Bug Fixes
258
-
259
- * fix help command ([c60c0cb](https://github.com/oclif/plugin-help/commit/c60c0cb))
260
- * fixed tests ([967d74a](https://github.com/oclif/plugin-help/commit/967d74a))
261
-
262
- <a name="1.1.4"></a>
263
- ## [1.1.4](https://github.com/oclif/plugin-help/compare/7a9b7508cb0d44c8e1ab2c8ba081d30bbd99e230...v1.1.4) (2018-02-17)
264
-
265
-
266
- ### Bug Fixes
267
-
268
- * only show topics 1 level deep ([829e75e](https://github.com/oclif/plugin-help/commit/829e75e))
269
- * only show topics 1 level deep ([5af8a0b](https://github.com/oclif/plugin-help/commit/5af8a0b))
270
-
271
- <a name="1.1.3"></a>
272
- ## [1.1.3](https://github.com/oclif/plugin-help/compare/81c089f2b549984de4e8e25f1d941698b7f63cb3...v1.1.3) (2018-02-17)
273
-
274
-
275
- ### Bug Fixes
276
-
277
- * hide hidden topics ([7a9b750](https://github.com/oclif/plugin-help/commit/7a9b750))
278
-
279
- <a name="1.1.2"></a>
280
- ## [1.1.2](https://github.com/oclif/plugin-help/compare/165a53c8d7f6705b20fa56553e6d78cb689d882e...v1.1.2) (2018-02-17)
281
-
282
-
283
- ### Bug Fixes
284
-
285
- * use topics only ([81c089f](https://github.com/oclif/plugin-help/commit/81c089f))
286
-
287
- <a name="1.1.1"></a>
288
- ## [1.1.1](https://github.com/oclif/plugin-help/compare/67d1cba010649852ecbd1b6870e91e06df35aa28...v1.1.1) (2018-02-17)
289
-
290
-
291
- ### Bug Fixes
292
-
293
- * sort commands/topics ([165a53c](https://github.com/oclif/plugin-help/commit/165a53c))
294
-
295
- <a name="1.1.0"></a>
296
- # [1.1.0](https://github.com/oclif/plugin-help/compare/de750328be54793875516f99a40cc5dd8a7bc8cf...v1.1.0) (2018-02-17)
297
-
298
-
299
- ### Features
300
-
301
- * add topics ([67d1cba](https://github.com/oclif/plugin-help/commit/67d1cba))
302
-
303
- <a name="1.0.5"></a>
304
- ## [1.0.5](https://github.com/oclif/plugin-help/compare/66cd4cdfba29f6e6c81f45742a5528038375830f...v1.0.5) (2018-02-17)
305
-
306
-
307
- ### Bug Fixes
308
-
309
- * read options if flagValue is undefined ([abe43d8](https://github.com/oclif/plugin-help/commit/abe43d8))
310
- * updated deps ([de75032](https://github.com/oclif/plugin-help/commit/de75032))
311
-
312
- <a name="1.0.4"></a>
313
- ## [1.0.4](https://github.com/oclif/plugin-help/compare/a382ee982a225d48d7650f1ced7fd97ea90e1ebf...v1.0.4) (2018-02-17)
314
-
315
-
316
- ### Bug Fixes
317
-
318
- * trim usage ([06de470](https://github.com/oclif/plugin-help/commit/06de470))
319
- * updated deps ([66cd4cd](https://github.com/oclif/plugin-help/commit/66cd4cd))
320
-
321
- <a name="1.0.3"></a>
322
- ## [1.0.3](https://github.com/oclif/plugin-help/compare/7e709205248664666654cf0750c3209c43327298...v1.0.3) (2018-02-15)
323
-
324
-
325
- ### Bug Fixes
326
-
327
- * updated command ([a382ee9](https://github.com/oclif/plugin-help/commit/a382ee9))
328
-
329
- <a name="1.0.2"></a>
330
- ## [1.0.2](https://github.com/oclif/plugin-help/compare/651763997bf220f980aa43b522d8f2d1bdaf1275...v1.0.2) (2018-02-15)
331
-
332
-
333
- ### Bug Fixes
334
-
335
- * hide OPTIONS for now ([7e70920](https://github.com/oclif/plugin-help/commit/7e70920))
336
-
337
- <a name="1.0.1"></a>
338
- ## [1.0.1](https://github.com/oclif/plugin-help/compare/v1.0.0...v1.0.1) (2018-02-13)
339
-
340
-
341
- ### Bug Fixes
342
-
343
- * updated command ([6517639](https://github.com/oclif/plugin-help/commit/6517639))
344
-
345
- <a name="0.7.4"></a>
346
- ## [0.7.4](https://github.com/oclif/plugin-help/compare/v0.7.3...v0.7.4) (2018-02-13)
347
-
348
-
349
- ### Bug Fixes
350
-
351
- * oclif rename ([fb1bbe9](https://github.com/oclif/plugin-help/commit/fb1bbe9))
352
-
353
- <a name="0.7.2"></a>
354
- ## [0.7.2](https://github.com/anycli/plugin-help/compare/123c328fa036f3e17d21544fb2fa6fe76ac9407a...v0.7.2) (2018-02-07)
355
-
356
-
357
- ### Bug Fixes
358
-
359
- * async ([95e455e](https://github.com/anycli/plugin-help/commit/95e455e))
360
-
361
- <a name="0.7.1"></a>
362
- ## [0.7.1](https://github.com/oclif/plugin-help/compare/d33c3d84347133558382fbd9ee9a13af27418fd6...v0.7.1) (2018-02-07)
363
-
364
-
365
- ### Bug Fixes
366
-
367
- * async ([123c328](https://github.com/oclif/plugin-help/commit/123c328))
368
-
369
- <a name="0.7.0"></a>
370
- # [0.7.0](https://github.com/oclif/plugin-help/compare/476ec1dc0601bd75e8062759cb6e29aec1ce698b...v0.7.0) (2018-02-07)
371
-
372
-
373
- ### Bug Fixes
374
-
375
- * fixed tests ([d33c3d8](https://github.com/oclif/plugin-help/commit/d33c3d8))
376
-
377
-
378
- ### Features
379
-
380
- * add examples ([6fd821c](https://github.com/oclif/plugin-help/commit/6fd821c))
381
-
382
- <a name="0.6.9"></a>
383
- ## [0.6.9](https://github.com/oclif/plugin-help/compare/61a26af71387aae48988ff161a186c7728ad3e30...v0.6.9) (2018-02-07)
384
-
385
-
386
- ### Bug Fixes
387
-
388
- * updated config ([476ec1d](https://github.com/oclif/plugin-help/commit/476ec1d))
389
-
390
- <a name="0.6.8"></a>
391
- ## [0.6.8](https://github.com/oclif/plugin-help/compare/692a7e663f79a676e8de8c136bef6662f2ed29b3...v0.6.8) (2018-02-06)
392
-
393
-
394
- ### Bug Fixes
395
-
396
- * fixed topic list ([61a26af](https://github.com/oclif/plugin-help/commit/61a26af))
397
- * fixed topic list ([b42fde4](https://github.com/oclif/plugin-help/commit/b42fde4))
398
-
399
- <a name="0.6.7"></a>
400
- ## [0.6.7](https://github.com/oclif/plugin-help/compare/v0.6.6...v0.6.7) (2018-02-06)
401
-
402
-
403
- ### Bug Fixes
404
-
405
- * simplify ([692a7e6](https://github.com/oclif/plugin-help/commit/692a7e6))
406
-
407
- <a name="0.6.5"></a>
408
- ## [0.6.5](https://github.com/oclif/plugin-help/compare/3259b8742a5164bfdd6d5db516ef7ba59e1fba0b...v0.6.5) (2018-02-06)
409
-
410
-
411
- ### Bug Fixes
412
-
413
- * updated command ([6ee12a9](https://github.com/oclif/plugin-help/commit/6ee12a9))
414
-
415
- <a name="0.6.4"></a>
416
- ## [0.6.4](https://github.com/oclif/plugin-help/compare/b53cc909d0a29135360c95e110facee45602a764...v0.6.4) (2018-02-06)
417
-
418
-
419
- ### Bug Fixes
420
-
421
- * use [@oclif](https://github.com/oclif)/errors ([3259b87](https://github.com/oclif/plugin-help/commit/3259b87))
422
-
423
- <a name="0.6.3"></a>
424
- ## [0.6.3](https://github.com/oclif/plugin-help/compare/8d2a146505f02ccc0854601a28223ae3d2acbf2c...v0.6.3) (2018-02-05)
425
-
426
-
427
- ### Bug Fixes
428
-
429
- * require lodash.template ([b53cc90](https://github.com/oclif/plugin-help/commit/b53cc90))
430
-
431
- <a name="0.6.2"></a>
432
- ## [0.6.2](https://github.com/oclif/plugin-help/compare/32b9b620962c54b8102dc878f70104dd4084c62f...v0.6.2) (2018-02-05)
433
-
434
-
435
- ### Bug Fixes
436
-
437
- * reduce dependencies ([8d2a146](https://github.com/oclif/plugin-help/commit/8d2a146))
438
-
439
- <a name="0.6.1"></a>
440
- ## [0.6.1](https://github.com/oclif/plugin-help/compare/4cc24aa7608b55071b4b9bd3aece77a671eb84c5...v0.6.1) (2018-02-05)
441
-
442
-
443
- ### Bug Fixes
444
-
445
- * make dependencies optional ([32b9b62](https://github.com/oclif/plugin-help/commit/32b9b62))
446
-
447
- <a name="0.6.0"></a>
448
- # [0.6.0](https://github.com/oclif/plugin-help/compare/4f48c42033e51edbad3d8b721f3bc8ef625b5101...v0.6.0) (2018-02-03)
449
-
450
-
451
- ### Bug Fixes
452
-
453
- * tweaks to make help render better ([4cc24aa](https://github.com/oclif/plugin-help/commit/4cc24aa))
454
-
455
-
456
- ### Features
457
-
458
- * generalize help coordination inot showHelp() ([fa37288](https://github.com/oclif/plugin-help/commit/fa37288))
459
-
460
- <a name="0.5.1"></a>
461
- ## [0.5.1](https://github.com/oclif/plugin-help/compare/fcc41a0a404c914c93dbe925d77a57c31fb7c162...v0.5.1) (2018-02-03)
462
-
463
-
464
- ### Bug Fixes
465
-
466
- * updated config ([4f48c42](https://github.com/oclif/plugin-help/commit/4f48c42))
467
-
468
- <a name="0.5.0"></a>
469
- # [0.5.0](https://github.com/oclif/plugin-help/compare/64df8c5c7b792285348af0e55a30887bc7dbab96...v0.5.0) (2018-02-02)
470
-
471
-
472
- ### Features
473
-
474
- * use lodash template on help strings ([fcc41a0](https://github.com/oclif/plugin-help/commit/fcc41a0))
475
-
476
- <a name="0.4.7"></a>
477
- ## [0.4.7](https://github.com/oclif/plugin-help/compare/3d73da87de46d9f80bd2b2ce510a89f9930f8a7a...v0.4.7) (2018-02-02)
478
-
479
-
480
- ### Bug Fixes
481
-
482
- * add showHelp method ([64df8c5](https://github.com/oclif/plugin-help/commit/64df8c5))
483
-
484
- <a name="0.4.6"></a>
485
- ## [0.4.6](https://github.com/oclif/plugin-help/compare/cf0d4b42149d39aeb7e3956a6c94fb1c63d68d72...v0.4.6) (2018-02-02)
486
-
487
-
488
- ### Bug Fixes
489
-
490
- * cache bust ([3d73da8](https://github.com/oclif/plugin-help/commit/3d73da8))
491
-
492
- <a name="0.4.5"></a>
493
- ## [0.4.5](https://github.com/oclif/plugin-help/compare/30ca7c144bafb2e1ee6a701a559e755614115b76...v0.4.5) (2018-02-02)
494
-
495
-
496
- ### Bug Fixes
497
-
498
- * fixing manifest ([cf0d4b4](https://github.com/oclif/plugin-help/commit/cf0d4b4))
499
-
500
- <a name="0.4.4"></a>
501
- ## [0.4.4](https://github.com/oclif/plugin-help/compare/241df8abf10d3f96e025db6f9c83d0a94cccd801...v0.4.4) (2018-02-02)
502
-
503
-
504
- ### Bug Fixes
505
-
506
- * fixed manifest location ([30ca7c1](https://github.com/oclif/plugin-help/commit/30ca7c1))
507
-
508
- <a name="0.4.3"></a>
509
- ## [0.4.3](https://github.com/oclif/plugin-help/compare/08cf2fbb6583a3f8547705a1bc9e6a909f3866ec...v0.4.3) (2018-02-02)
510
-
511
-
512
- ### Bug Fixes
513
-
514
- * fix manifest writing ([241df8a](https://github.com/oclif/plugin-help/commit/241df8a))
515
-
516
- <a name="0.4.2"></a>
517
- ## [0.4.2](https://github.com/oclif/plugin-help/compare/67c842d81cb9975967654e148be2d630fb372c20...v0.4.2) (2018-02-02)
518
-
519
-
520
- ### Bug Fixes
521
-
522
- * add plugin manifest ([08cf2fb](https://github.com/oclif/plugin-help/commit/08cf2fb))
523
-
524
- <a name="0.4.1"></a>
525
- ## [0.4.1](https://github.com/oclif/plugin-help/compare/7bedad5eb4865c8b3c2264a06f52dd99af6b74dc...v0.4.1) (2018-02-02)
526
-
527
-
528
- ### Bug Fixes
529
-
530
- * prep for lodash templating ([67c842d](https://github.com/oclif/plugin-help/commit/67c842d))
531
-
532
- <a name="0.4.0"></a>
533
- # [0.4.0](https://github.com/oclif/plugin-help/compare/d8df03bee99d520c51bf1754c00ed084b6a01170...v0.4.0) (2018-02-02)
534
-
535
-
536
- ### Features
537
-
538
- * show default flag/arg values ([7bedad5](https://github.com/oclif/plugin-help/commit/7bedad5))
539
-
540
- <a name="0.3.7"></a>
541
- ## [0.3.7](https://github.com/oclif/plugin-help/compare/2977578c307c7092192179ee73cb1d4b634d8049...v0.3.7) (2018-02-02)
542
-
543
-
544
- ### Bug Fixes
545
-
546
- * fixed help in CI ([d8df03b](https://github.com/oclif/plugin-help/commit/d8df03b))
547
-
548
- <a name="0.3.6"></a>
549
- ## [0.3.6](https://github.com/oclif/plugin-help/compare/fc0f0f5b5ae0c36e0409398f361fbab41707e2bb...v0.3.6) (2018-02-02)
550
-
551
-
552
- ### Bug Fixes
553
-
554
- * triggering release ([2977578](https://github.com/oclif/plugin-help/commit/2977578))
555
-
556
- <a name="0.3.5"></a>
557
- ## [0.3.5](https://github.com/oclif/help/compare/608ba929331f1b5353e226d043c91863e2d60595...v0.3.5) (2018-02-01)
558
-
559
-
560
- ### Bug Fixes
561
-
562
- * remove blue color ([945ccc5](https://github.com/oclif/help/commit/945ccc5))
563
-
564
- <a name="0.3.4"></a>
565
- ## [0.3.4](https://github.com/oclif/help/compare/85ec92fc619517934f62d365a2610e6e04661cec...v0.3.4) (2018-02-01)
566
-
567
-
568
- ### Bug Fixes
569
-
570
- * updated command ([da099da](https://github.com/oclif/help/commit/da099da))
571
-
572
- <a name="0.3.3"></a>
573
- ## [0.3.3](https://github.com/oclif/help/compare/8c13ae47789018ad093f1fb6d3a248da10e8ac86...v0.3.3) (2018-02-01)
574
-
575
-
576
- ### Bug Fixes
577
-
578
- * hide underline if complex value ([85ec92f](https://github.com/oclif/help/commit/85ec92f))
579
-
580
- <a name="0.3.2"></a>
581
- ## [0.3.2](https://github.com/oclif/help/compare/8046612a23df4c73910a6624781ab0ae96a0998e...v0.3.2) (2018-02-01)
582
-
583
-
584
- ### Bug Fixes
585
-
586
- * hide commands command ([8c13ae4](https://github.com/oclif/help/commit/8c13ae4))
587
-
588
- <a name="0.3.1"></a>
589
- ## [0.3.1](https://github.com/oclif/help/compare/af7eb9b155fa44f2e7261b25b94dc76d05040422...v0.3.1) (2018-02-01)
590
-
591
-
592
- ### Bug Fixes
593
-
594
- * updated engine ([8046612](https://github.com/oclif/help/commit/8046612))
595
- * work on markdown generator ([0c50c69](https://github.com/oclif/help/commit/0c50c69))
596
-
597
- <a name="0.3.0"></a>
598
- # [0.3.0](https://github.com/oclif/help/compare/258a5b3873f6557959b72c1d116f44d0e5111e94...v0.3.0) (2018-01-31)
599
-
600
-
601
- ### Bug Fixes
602
-
603
- * add dev plugins ([7d8a3c7](https://github.com/oclif/help/commit/7d8a3c7))
604
-
605
-
606
- ### Features
607
-
608
- * added basic root command support ([af7eb9b](https://github.com/oclif/help/commit/af7eb9b))
609
-
610
- <a name="0.2.3"></a>
611
- ## [0.2.3](https://github.com/oclif/help/compare/1d28ed1244d6ac74fbd0a4fce9e1a74b1523c081...v0.2.3) (2018-01-31)
612
-
613
-
614
- ### Bug Fixes
615
-
616
- * updated deps ([258a5b3](https://github.com/oclif/help/commit/258a5b3))
617
-
618
- <a name="0.2.2"></a>
619
- ## [0.2.2](https://github.com/oclif/help/compare/b4bed623435a2f4ea73d2ad813589f3105e4299e...v0.2.2) (2018-01-31)
620
-
621
-
622
- ### Bug Fixes
623
-
624
- * updated engine ([1d28ed1](https://github.com/oclif/help/commit/1d28ed1))
625
-
626
- <a name="0.2.1"></a>
627
- ## [0.2.1](https://github.com/dxcli/help/compare/bc53900d424978ab143773eae4651e0ee591ee2f...v0.2.1) (2018-01-30)
628
-
629
-
630
- ### Bug Fixes
631
-
632
- * improve help output ([65a1ef8](https://github.com/dxcli/help/commit/65a1ef8))
633
-
634
- <a name="0.2.0"></a>
635
- # [0.2.0](https://github.com/dxcli/help/compare/a65df6995f0da999ccc9348f8d25582c3af637e9...v0.2.0) (2018-01-30)
636
-
637
-
638
- ### Features
639
-
640
- * added help command ([bc53900](https://github.com/dxcli/help/commit/bc53900))
641
-
642
- <a name="0.1.0"></a>
643
- # [0.1.0](https://github.com/dxcli/help/compare/v0.0.0...v0.1.0) (2018-01-30)
644
-
645
-
646
- ### Features
647
-
648
- * added command help ([a65df69](https://github.com/dxcli/help/commit/a65df69))