@oclif/plugin-help 3.2.0 → 3.2.4

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