@oclif/plugin-help 3.2.1 → 3.2.5

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