@oclif/core 1.16.4 → 1.16.6

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/lib/command.d.ts CHANGED
@@ -98,9 +98,7 @@ export default abstract class Command {
98
98
  protected parse<F extends Interfaces.FlagOutput, G extends Interfaces.FlagOutput, A extends {
99
99
  [name: string]: any;
100
100
  }>(options?: Interfaces.Input<F, G>, argv?: string[]): Promise<Interfaces.ParserOutput<F, G, A>>;
101
- protected catch(err: Error & {
102
- exitCode?: number;
103
- }): Promise<any>;
101
+ protected catch(err: Interfaces.CommandError): Promise<any>;
104
102
  protected finally(_: Error | undefined): Promise<any>;
105
103
  protected toSuccessJson(result: unknown): any;
106
104
  protected toErrorJson(err: unknown): any;
package/lib/command.js CHANGED
@@ -136,6 +136,7 @@ class Command {
136
136
  const opts = { context: this, ...options };
137
137
  // the spread operator doesn't work with getters so we have to manually add it here
138
138
  opts.flags = options?.flags;
139
+ opts.args = options?.args;
139
140
  return Parser.parse(argv, opts);
140
141
  }
141
142
  async catch(err) {
@@ -138,15 +138,14 @@ class CommandHelp extends formatter_1.HelpFormatter {
138
138
  description = (cmd.description || '').split(POSSIBLE_LINE_FEED).slice(1);
139
139
  }
140
140
  else if (cmd.description) {
141
- description = [
142
- ...(cmd.summary || '').split(POSSIBLE_LINE_FEED),
141
+ const summary = cmd.summary ? `${cmd.summary}\n` : null;
142
+ description = summary ? [
143
+ ...summary.split(POSSIBLE_LINE_FEED),
143
144
  ...(cmd.description || '').split(POSSIBLE_LINE_FEED),
144
- ];
145
+ ] : (cmd.description || '').split(POSSIBLE_LINE_FEED);
145
146
  }
146
147
  if (description) {
147
- // Lines separated with only one newline or more than 2 can be hard to read in the terminal.
148
- // Always separate by two newlines.
149
- return this.wrap((0, util_1.compact)(description).join('\n\n'));
148
+ return this.wrap(description.join('\n'));
150
149
  }
151
150
  }
152
151
  aliases(aliases) {
@@ -1,3 +1,6 @@
1
+ export declare type CommandError = Error & {
2
+ exitCode?: number;
3
+ };
1
4
  export interface OclifError {
2
5
  oclif: {
3
6
  exit?: number | false;
@@ -1,7 +1,7 @@
1
1
  export { AlphabetLowercase, AlphabetUppercase } from './alphabet';
2
2
  export { Config, ArchTypes, PlatformTypes, LoadOptions } from './config';
3
3
  export { Command, Example } from './command';
4
- export { OclifError, PrettyPrintableError } from './errors';
4
+ export { OclifError, PrettyPrintableError, CommandError } from './errors';
5
5
  export { HelpOptions } from './help';
6
6
  export { Hook, Hooks } from './hooks';
7
7
  export { Manifest } from './manifest';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@oclif/core",
3
3
  "description": "base library for oclif CLIs",
4
- "version": "1.16.4",
4
+ "version": "1.16.6",
5
5
  "author": "Salesforce",
6
6
  "bugs": "https://github.com/oclif/core/issues",
7
7
  "dependencies": {
@@ -110,8 +110,8 @@
110
110
  "posttest": "yarn lint",
111
111
  "prepack": "yarn run build",
112
112
  "test": "mocha --forbid-only \"test/**/*.test.ts\"",
113
- "test:e2e": "mocha \"test/**/*.e2e.ts\" --timeout 600000",
113
+ "test:e2e": "mocha \"test/**/*.e2e.ts\" --timeout 1200000",
114
114
  "pretest": "yarn build --noEmit && tsc -p test --noEmit --skipLibCheck"
115
115
  },
116
116
  "types": "lib/index.d.ts"
117
- }
117
+ }
package/CHANGELOG.md DELETED
@@ -1,797 +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
- ### [1.16.4](https://github.com/oclif/core/compare/v1.16.3...v1.16.4) (2022-09-23)
6
-
7
-
8
- ### Bug Fixes
9
-
10
- * work with 4.8.3 ([#493](https://github.com/oclif/core/issues/493)) ([2f09a72](https://github.com/oclif/core/commit/2f09a725bb7ff7ef8b4f4d6d6f67d0d83a1ed1f8))
11
-
12
- ### [1.16.3](https://github.com/oclif/core/compare/v1.16.2...v1.16.3) (2022-09-16)
13
-
14
- ### [1.16.2](https://github.com/oclif/core/compare/v1.16.1...v1.16.2) (2022-09-16)
15
-
16
-
17
- ### Bug Fixes
18
-
19
- * throw if unexpected argument ([#491](https://github.com/oclif/core/issues/491)) ([da6d20c](https://github.com/oclif/core/commit/da6d20c388e48f65560822cee141d4f2fc5955a5))
20
-
21
- ### [1.16.1](https://github.com/oclif/core/compare/v1.16.0...v1.16.1) (2022-09-08)
22
-
23
-
24
- ### Bug Fixes
25
-
26
- * support environment variables for boolean flags ([#488](https://github.com/oclif/core/issues/488)) ([#490](https://github.com/oclif/core/issues/490)) ([506945c](https://github.com/oclif/core/commit/506945c6ea2f8b75f0d56ad1f6e62a3717384a42)), closes [#487](https://github.com/oclif/core/issues/487)
27
-
28
- ## [1.16.0](https://github.com/oclif/core/compare/v1.15.0...v1.16.0) (2022-08-24)
29
-
30
-
31
- ### Features
32
-
33
- * support complex flag relationships ([#468](https://github.com/oclif/core/issues/468)) ([222d1f6](https://github.com/oclif/core/commit/222d1f67012557ac0707077d6c8840966dbf00cb))
34
-
35
- ## [1.15.0](https://github.com/oclif/core/compare/v1.14.2...v1.15.0) (2022-08-23)
36
-
37
-
38
- ### Features
39
-
40
- * add InferredFlags type ([#473](https://github.com/oclif/core/issues/473)) ([ee5ce65](https://github.com/oclif/core/commit/ee5ce651899c0ef586d425567ef3b78468dca627))
41
-
42
- ### [1.14.2](https://github.com/oclif/core/compare/v1.14.1...v1.14.2) (2022-08-18)
43
-
44
-
45
- ### Bug Fixes
46
-
47
- * add overloads to enum flag ([799455b](https://github.com/oclif/core/commit/799455bbb526b221c806bf8feff6b625dcf50a56))
48
-
49
- ### [1.14.1](https://github.com/oclif/core/compare/v1.14.0...v1.14.1) (2022-08-16)
50
-
51
-
52
- ### Bug Fixes
53
-
54
- * parser doesn't validate against options parameter if the value is provided through a env var ([#474](https://github.com/oclif/core/issues/474)) ([fe6dfea](https://github.com/oclif/core/commit/fe6dfea0bcc5cae69c91962430996670decf7887))
55
-
56
- ## [1.14.0](https://github.com/oclif/core/compare/v1.13.11...v1.14.0) (2022-08-16)
57
-
58
-
59
- ### Features
60
-
61
- * all oclif flag types support custom parsers ([ad86faf](https://github.com/oclif/core/commit/ad86faf08f7a6d7984afe356819df458aaf04674))
62
-
63
- ### [1.13.11](https://github.com/oclif/core/compare/v1.13.10...v1.13.11) (2022-08-16)
64
-
65
-
66
- ### Bug Fixes
67
-
68
- * more custom flag type overloads ([#471](https://github.com/oclif/core/issues/471)) ([ac4baf2](https://github.com/oclif/core/commit/ac4baf260f8e87bb5618c7b790f35372d55096c7))
69
-
70
- ### [1.13.10](https://github.com/oclif/core/compare/v1.13.9...v1.13.10) (2022-08-09)
71
-
72
- ### [1.13.9](https://github.com/oclif/core/compare/v1.13.8...v1.13.9) (2022-08-09)
73
-
74
-
75
- ### Bug Fixes
76
-
77
- * remove json flag if subclass overrides enableJsonFlag ([#467](https://github.com/oclif/core/issues/467)) ([05dd12a](https://github.com/oclif/core/commit/05dd12ad114f37d0512df2d89a8e51d0984fa3d4))
78
-
79
- ### [1.13.8](https://github.com/oclif/core/compare/v1.13.7...v1.13.8) (2022-08-09)
80
-
81
-
82
- ### Bug Fixes
83
-
84
- * revert [#460](https://github.com/oclif/core/issues/460) ([#466](https://github.com/oclif/core/issues/466)) ([4c28acf](https://github.com/oclif/core/commit/4c28acfc2131eadbac423fa722b8cc0dc16a1b5b))
85
-
86
- ### [1.13.7](https://github.com/oclif/core/compare/v1.13.6...v1.13.7) (2022-08-08)
87
-
88
-
89
- ### Bug Fixes
90
-
91
- * types on custom flags ([#463](https://github.com/oclif/core/issues/463)) ([2728e23](https://github.com/oclif/core/commit/2728e2310406137e0356d039a90d321daafd6578))
92
-
93
- ### [1.13.6](https://github.com/oclif/core/compare/v1.13.5...v1.13.6) (2022-08-08)
94
-
95
-
96
- ### Bug Fixes
97
-
98
- * flush not hitting drain condition ([#448](https://github.com/oclif/core/issues/448)) ([05dd5fe](https://github.com/oclif/core/commit/05dd5fe08b57aa716c07cc51e8ed407c9e7b6aa5))
99
-
100
- ### [1.13.5](https://github.com/oclif/core/compare/v1.13.4...v1.13.5) (2022-08-08)
101
-
102
-
103
- ### Bug Fixes
104
-
105
- * skip loadDevPlugins ([#459](https://github.com/oclif/core/issues/459)) ([21c948c](https://github.com/oclif/core/commit/21c948cd41b08b3aad4df5c3439d33e235f6979e))
106
-
107
- ### [1.13.4](https://github.com/oclif/core/compare/v1.13.3...v1.13.4) (2022-08-08)
108
-
109
-
110
- ### Bug Fixes
111
-
112
- * retain enable json flag get/set apply flag at parse ([#460](https://github.com/oclif/core/issues/460)) ([9812937](https://github.com/oclif/core/commit/9812937e43a573cf4a10d4b03fca47555de5a1d9))
113
-
114
- ### [1.13.3](https://github.com/oclif/core/compare/v1.13.2...v1.13.3) (2022-08-06)
115
-
116
-
117
- ### Bug Fixes
118
-
119
- * improve flag types ([6d0b4e1](https://github.com/oclif/core/commit/6d0b4e1f1761baba0e085ea8d342a7bc913e7e5d))
120
-
121
- ### [1.13.2](https://github.com/oclif/core/compare/v1.13.1...v1.13.2) (2022-08-05)
122
-
123
-
124
- ### Bug Fixes
125
-
126
- * flag types ([#454](https://github.com/oclif/core/issues/454)) ([2938ba4](https://github.com/oclif/core/commit/2938ba4082d1b0c603a55678fe47f5beed9acbb5))
127
-
128
- ### [1.13.1](https://github.com/oclif/core/compare/v1.13.0...v1.13.1) (2022-08-02)
129
-
130
-
131
- ### Bug Fixes
132
-
133
- * throw appropriate error in runCommand ([#455](https://github.com/oclif/core/issues/455)) ([66e9bbc](https://github.com/oclif/core/commit/66e9bbca08f9e1f4a08e1c8c144bf85c274b7f82))
134
-
135
- ## [1.13.0](https://github.com/oclif/core/compare/v1.12.1...v1.13.0) (2022-07-28)
136
-
137
-
138
- ### Features
139
-
140
- * drop node12, use es2020 ([ac749e3](https://github.com/oclif/core/commit/ac749e32917400386f0ee4056aa5b66a52f3d0e0))
141
- * min/max for integer flag ([7e05ef7](https://github.com/oclif/core/commit/7e05ef7195269012055f30095552e61359fad47e))
142
- * node14/es2020 for bigint, pr feedback ([03a50b8](https://github.com/oclif/core/commit/03a50b874a8e7ef621c23d846e63864e3850ee4a))
143
-
144
- ### [1.12.1](https://github.com/oclif/core/compare/v1.12.0...v1.12.1) (2022-07-21)
145
-
146
-
147
- ### Bug Fixes
148
-
149
- * flag setter order ([#450](https://github.com/oclif/core/issues/450)) ([a02f86c](https://github.com/oclif/core/commit/a02f86cb1094a86ba0cd8689fd82908ff3d46386))
150
-
151
- ## [1.12.0](https://github.com/oclif/core/compare/v1.11.0...v1.12.0) (2022-07-20)
152
-
153
-
154
- ### Features
155
-
156
- * improve the instantiation of global flags ([#445](https://github.com/oclif/core/issues/445)) ([d264535](https://github.com/oclif/core/commit/d2645358ccf1cddd0bb65d236e73ecf4c5ac7c0c))
157
-
158
- ## [1.11.0](https://github.com/oclif/core/compare/v1.10.0...v1.11.0) (2022-07-18)
159
-
160
-
161
- ### Features
162
-
163
- * print error info when module not found ([#427](https://github.com/oclif/core/issues/427)) ([223e79b](https://github.com/oclif/core/commit/223e79b363ad01da327e264244daf23810849d70))
164
-
165
- ## [1.10.0](https://github.com/oclif/core/compare/v1.9.10...v1.10.0) (2022-07-15)
166
-
167
-
168
- ### Features
169
-
170
- * add stderr method ([#441](https://github.com/oclif/core/issues/441)) ([d9490f7](https://github.com/oclif/core/commit/d9490f77ff4cac0ee9767f1386f18c7357e0666e))
171
-
172
- ### [1.9.10](https://github.com/oclif/core/compare/v1.9.9...v1.9.10) (2022-07-15)
173
-
174
- ### [1.9.9](https://github.com/oclif/core/compare/v1.9.8...v1.9.9) (2022-07-14)
175
-
176
-
177
- ### Bug Fixes
178
-
179
- * help for single command CLIs ([#442](https://github.com/oclif/core/issues/442)) ([44aacc1](https://github.com/oclif/core/commit/44aacc12fbc68f9909796c4ad2a1c9d45f47e653))
180
-
181
- ### [1.9.8](https://github.com/oclif/core/compare/v1.9.7...v1.9.8) (2022-07-14)
182
-
183
- ### [1.9.7](https://github.com/oclif/core/compare/v1.9.6...v1.9.7) (2022-07-14)
184
-
185
-
186
- ### Bug Fixes
187
-
188
- * can not find module 'cli-ux' ([#403](https://github.com/oclif/core/issues/403)) ([f16b67f](https://github.com/oclif/core/commit/f16b67f8b6cd3eaaf24c26d4e7c4d490c0937ff3))
189
-
190
- ### [1.9.6](https://github.com/oclif/core/compare/v1.9.5...v1.9.6) (2022-07-14)
191
-
192
- ### [1.9.5](https://github.com/oclif/core/compare/v1.9.4...v1.9.5) (2022-06-23)
193
-
194
- ### [1.9.4](https://github.com/oclif/core/compare/v1.9.3...v1.9.4) (2022-06-23)
195
-
196
- ### [1.9.3](https://github.com/oclif/core/compare/v1.9.2...v1.9.3) (2022-06-16)
197
-
198
- ### [1.9.2](https://github.com/oclif/core/compare/v1.9.1...v1.9.2) (2022-06-14)
199
-
200
- ### [1.9.1](https://github.com/oclif/core/compare/v1.9.0...v1.9.1) (2022-06-14)
201
-
202
-
203
- ### Bug Fixes
204
-
205
- * support CLIs with single top level command ([#426](https://github.com/oclif/core/issues/426)) ([44adb4d](https://github.com/oclif/core/commit/44adb4d387695548a017b38249b0bc3453aedbdf))
206
-
207
- ## [1.9.0](https://github.com/oclif/core/compare/v1.8.2...v1.9.0) (2022-05-20)
208
-
209
-
210
- ### Features
211
-
212
- * support TS directory imports for ESM ([#422](https://github.com/oclif/core/issues/422)) ([4c58e78](https://github.com/oclif/core/commit/4c58e782e86dd7ecf91294bac0d2c759b4454596))
213
-
214
- ### [1.8.2](https://github.com/oclif/core/compare/v1.8.1...v1.8.2) (2022-05-18)
215
-
216
-
217
- ### Bug Fixes
218
-
219
- * properly load index.js ES modules (cont) ([#417](https://github.com/oclif/core/issues/417)) ([77ba8b8](https://github.com/oclif/core/commit/77ba8b891f941e371bacd0dbedb32be25d6d2599))
220
-
221
- ### [1.8.1](https://github.com/oclif/core/compare/v1.8.0...v1.8.1) (2022-05-10)
222
-
223
-
224
- ### Bug Fixes
225
-
226
- * improve algo for collating command id ([#415](https://github.com/oclif/core/issues/415)) ([1a9bfdb](https://github.com/oclif/core/commit/1a9bfdb810e13506ed8fc4138cde1912981b97e3))
227
-
228
- ## [1.8.0](https://github.com/oclif/core/compare/v1.7.0...v1.8.0) (2022-05-06)
229
-
230
-
231
- ### Features
232
-
233
- * improve Command interface ([#416](https://github.com/oclif/core/issues/416)) ([ed625e1](https://github.com/oclif/core/commit/ed625e1554a09e578e645ddd7aa2ddb1b368c03f))
234
-
235
- ## [1.7.0](https://github.com/oclif/core/compare/v1.6.4...v1.7.0) (2022-04-11)
236
-
237
-
238
- ### Features
239
-
240
- * move console.log to single class method ([#400](https://github.com/oclif/core/issues/400)) ([2ccb274](https://github.com/oclif/core/commit/2ccb2740912dba3b81c4d36712fbb20fd6a03c23))
241
-
242
- ### [1.6.4](https://github.com/oclif/core/compare/v1.6.3...v1.6.4) (2022-03-31)
243
-
244
-
245
- ### Bug Fixes
246
-
247
- * dynamic help ([#395](https://github.com/oclif/core/issues/395)) ([8ecc8f4](https://github.com/oclif/core/commit/8ecc8f41ec62ef5b05bdb70a79dce09b5913d14b))
248
-
249
- ### [1.6.3](https://github.com/oclif/core/compare/v1.6.2...v1.6.3) (2022-03-23)
250
-
251
-
252
- ### Bug Fixes
253
-
254
- * use plugin alias if available ([245d841](https://github.com/oclif/core/commit/245d84197a64e55b17524c22cbc17ec025a07c08))
255
-
256
- ### [1.6.2](https://github.com/oclif/core/compare/v1.6.1...v1.6.2) (2022-03-23)
257
-
258
-
259
- ### Bug Fixes
260
-
261
- * load correct plugin when using dynamic help ([#394](https://github.com/oclif/core/issues/394)) ([15c1fbe](https://github.com/oclif/core/commit/15c1fbe1e870b6da1372a5786a9ffb09746ce8f6))
262
-
263
- ### [1.6.1](https://github.com/oclif/core/compare/v1.6.0...v1.6.1) (2022-03-17)
264
-
265
-
266
- ### Bug Fixes
267
-
268
- * set id to alias when adding commands ([#390](https://github.com/oclif/core/issues/390)) ([84ab722](https://github.com/oclif/core/commit/84ab7223a2196c6a33f64a3e4ba75a050b02d1c3))
269
-
270
- ## [1.6.0](https://github.com/oclif/core/compare/v1.5.3...v1.6.0) (2022-03-14)
271
-
272
-
273
- ### Features
274
-
275
- * POC for allowing flexible command taxonomy ([#376](https://github.com/oclif/core/issues/376)) ([c47c6c6](https://github.com/oclif/core/commit/c47c6c6fb689a92f66d40aacfa146d885f08d962))
276
-
277
- ### [1.5.3](https://github.com/oclif/core/compare/v1.5.2...v1.5.3) (2022-03-09)
278
-
279
-
280
- ### Bug Fixes
281
-
282
- * rid core of transient refs to cli-ux ([#379](https://github.com/oclif/core/issues/379)) ([a593a27](https://github.com/oclif/core/commit/a593a2751dbdd4bcd9cf05349154d0fa6e4d7e2d))
283
-
284
- ### [1.5.2](https://github.com/oclif/core/compare/v1.5.1...v1.5.2) (2022-03-04)
285
-
286
-
287
- ### Bug Fixes
288
-
289
- * direct styled header text thru cliux.ux.info ([#387](https://github.com/oclif/core/issues/387)) ([5ebe8de](https://github.com/oclif/core/commit/5ebe8de3adcf2e45c952dd5aeaf5b2848b928e94))
290
-
291
- ### [1.5.1](https://github.com/oclif/core/compare/v1.5.0...v1.5.1) (2022-03-03)
292
-
293
- ## [1.5.0](https://github.com/oclif/core/compare/v1.4.0...v1.5.0) (2022-03-02)
294
-
295
-
296
- ### Features
297
-
298
- * dir and file flags that validate existence and type ([#384](https://github.com/oclif/core/issues/384)) ([44dff41](https://github.com/oclif/core/commit/44dff41c5a3ffcdcbf2f10dcefb7c1ab233bfc4f))
299
-
300
- ## [1.4.0](https://github.com/oclif/core/compare/v1.3.6...v1.4.0) (2022-03-01)
301
-
302
-
303
- ### Features
304
-
305
- * make global flags settable ([#385](https://github.com/oclif/core/issues/385)) ([e14061c](https://github.com/oclif/core/commit/e14061ca7e6a4c288eb50e0e9954b38e042682df))
306
-
307
- ### [1.3.6](https://github.com/oclif/core/compare/v1.3.5...v1.3.6) (2022-02-28)
308
-
309
-
310
- ### Bug Fixes
311
-
312
- * parsing the default is wrong types ([ba08723](https://github.com/oclif/core/commit/ba087237773e6f4b3649d03dc88f693a22681de9))
313
-
314
- ### [1.3.5](https://github.com/oclif/core/compare/v1.3.4...v1.3.5) (2022-02-25)
315
-
316
-
317
- ### Bug Fixes
318
-
319
- * print valid flag values in error message when using `exactlyOne` ([#349](https://github.com/oclif/core/issues/349)) ([ddcaeb2](https://github.com/oclif/core/commit/ddcaeb2f9b690d9b92dd0ac4937b6399f606adfa))
320
-
321
- ### [1.3.4](https://github.com/oclif/core/compare/v1.3.3...v1.3.4) (2022-02-11)
322
-
323
-
324
- ### Bug Fixes
325
-
326
- * use error type instead of record ([#371](https://github.com/oclif/core/issues/371)) ([136ffe0](https://github.com/oclif/core/commit/136ffe06fe3dc3ddb6d018ced2b2cfaa9399d943))
327
-
328
- ### [1.3.3](https://github.com/oclif/core/compare/v1.3.2...v1.3.3) (2022-02-09)
329
-
330
-
331
- ### Bug Fixes
332
-
333
- * update isProd utility ([#368](https://github.com/oclif/core/issues/368)) ([a58315d](https://github.com/oclif/core/commit/a58315dc401071675c0f1b08a7ab82c35846ce6d))
334
-
335
- ### [1.3.2](https://github.com/oclif/core/compare/v1.3.1...v1.3.2) (2022-02-08)
336
-
337
-
338
- ### Bug Fixes
339
-
340
- * fix default import of lodash ([#366](https://github.com/oclif/core/issues/366)) ([99fc7d1](https://github.com/oclif/core/commit/99fc7d1fdddbcd1509f649723057cd0ba7ee414c))
341
-
342
- ### [1.3.1](https://github.com/oclif/core/compare/v1.3.0...v1.3.1) (2022-02-07)
343
-
344
-
345
- ### Bug Fixes
346
-
347
- * Command parsing hangs under unit test ([#363](https://github.com/oclif/core/issues/363)) ([cb88427](https://github.com/oclif/core/commit/cb88427be5c1d5303b5cd7ef2d671f25ac6e91e6))
348
-
349
- ## [1.3.0](https://github.com/oclif/core/compare/v1.2.1...v1.3.0) (2022-02-01)
350
-
351
-
352
- ### Features
353
-
354
- * add S3Manifest ([#354](https://github.com/oclif/core/issues/354)) ([ea5585d](https://github.com/oclif/core/commit/ea5585db6361f12c3c0608b05d1e33e16bc0b4b6))
355
-
356
- ### [1.2.1](https://github.com/oclif/core/compare/v1.2.0...v1.2.1) (2022-01-28)
357
-
358
-
359
- ### Bug Fixes
360
-
361
- * module resolution of linked plugins ([#352](https://github.com/oclif/core/issues/352)) ([c7f5d34](https://github.com/oclif/core/commit/c7f5d3439e7e60b6562362c87fe0d16a99a42a08))
362
-
363
- ## [1.2.0](https://github.com/oclif/core/compare/v1.1.2...v1.2.0) (2022-01-26)
364
-
365
-
366
- ### Features
367
-
368
- * merge cli-ux library with oclif/core ([#345](https://github.com/oclif/core/issues/345)) ([27175d6](https://github.com/oclif/core/commit/27175d6f0693533b7cfbf57de65da626168d872f)), closes [npm/cli#4234](https://github.com/npm/cli/issues/4234)
369
-
370
- ### [1.1.2](https://github.com/oclif/core/compare/v1.1.1...v1.1.2) (2022-01-10)
371
-
372
- ### [1.1.1](https://github.com/oclif/core/compare/v1.1.0...v1.1.1) (2022-01-06)
373
-
374
-
375
- ### Bug Fixes
376
-
377
- * regenerate yarn.lock ([#340](https://github.com/oclif/core/issues/340)) ([75bf208](https://github.com/oclif/core/commit/75bf20819f2af574004cb7fe698938b51c6f2e44))
378
-
379
- ## [1.1.0](https://github.com/oclif/core/compare/v1.0.11...v1.1.0) (2022-01-05)
380
-
381
-
382
- ### Features
383
-
384
- * add integration tests ([#339](https://github.com/oclif/core/issues/339)) ([2159c0b](https://github.com/oclif/core/commit/2159c0b970a0090f8bf21ff59e63dea1e788b5f9))
385
-
386
- ### [1.0.11](https://github.com/oclif/core/compare/v1.0.10...v1.0.11) (2021-12-17)
387
-
388
-
389
- ### Bug Fixes
390
-
391
- * update imports in errors/cli.ts ([#325](https://github.com/oclif/core/issues/325)) ([b3d6e9b](https://github.com/oclif/core/commit/b3d6e9bf34928ac59486807576a2ee2643b22464))
392
-
393
- ### [1.0.10](https://github.com/oclif/core/compare/v1.0.9...v1.0.10) (2021-12-08)
394
-
395
-
396
- ### Bug Fixes
397
-
398
- * bump deps ([#317](https://github.com/oclif/core/issues/317)) ([3e656e0](https://github.com/oclif/core/commit/3e656e0b6909bedb879a267bf341cfb992f4d208))
399
-
400
- ### [1.0.9](https://github.com/oclif/core/compare/v1.0.8...v1.0.9) (2021-12-08)
401
-
402
- ### [1.0.8](https://github.com/oclif/core/compare/v1.0.7...v1.0.8) (2021-12-07)
403
-
404
-
405
- ### Bug Fixes
406
-
407
- * bump deps ([#314](https://github.com/oclif/core/issues/314)) ([e989d1c](https://github.com/oclif/core/commit/e989d1c078d24df3023f2abf61dd454435f08956))
408
-
409
- ### [1.0.7](https://github.com/oclif/core/compare/v1.0.6...v1.0.7) (2021-12-02)
410
-
411
-
412
- ### Bug Fixes
413
-
414
- * bump cli-ux ([2334c7d](https://github.com/oclif/core/commit/2334c7d05d003a167b41375d55cc67e28403863e))
415
-
416
- ### [1.0.6](https://github.com/oclif/core/compare/v1.0.5...v1.0.6) (2021-12-01)
417
-
418
-
419
- ### Bug Fixes
420
-
421
- * bump cli-ux version in core ([#308](https://github.com/oclif/core/issues/308)) ([ea0a457](https://github.com/oclif/core/commit/ea0a45701981dbffaa0fbeab20f4fa678a75c4e0))
422
-
423
- ### [1.0.5](https://github.com/oclif/core/compare/v1.0.4...v1.0.5) (2021-12-01)
424
-
425
-
426
- ### Bug Fixes
427
-
428
- * bump deps ([#306](https://github.com/oclif/core/issues/306)) ([52ee252](https://github.com/oclif/core/commit/52ee25247836b80d1d0c39f8f4793049a6ccbde7))
429
-
430
- ### [1.0.4](https://github.com/oclif/core/compare/v1.0.3...v1.0.4) (2021-11-18)
431
-
432
-
433
- ### Bug Fixes
434
-
435
- * resolve typescript compilation errors ([#290](https://github.com/oclif/core/issues/290)) ([7079932](https://github.com/oclif/core/commit/70799324b19e36c3cff5618de49083c68d0d9fc6))
436
-
437
- ### [1.0.3](https://github.com/oclif/core/compare/v1.0.2...v1.0.3) (2021-11-08)
438
-
439
-
440
- ### Bug Fixes
441
-
442
- * remove module lodash.template in favor of lodash ([#286](https://github.com/oclif/core/issues/286)) ([caaff0b](https://github.com/oclif/core/commit/caaff0b4918ab2e01bc01cad2c0d8158c2fcc1c5))
443
-
444
- ### [1.0.2](https://github.com/oclif/core/compare/v1.0.1...v1.0.2) (2021-10-13)
445
-
446
-
447
- ### Bug Fixes
448
-
449
- * remove ability to enable json flag globally ([#272](https://github.com/oclif/core/issues/272)) ([3c754e7](https://github.com/oclif/core/commit/3c754e7eee04ef078ff4ab08849191e6a5779ee0))
450
-
451
- ### [1.0.1](https://github.com/oclif/core/compare/v1.0.0...v1.0.1) (2021-10-08)
452
-
453
-
454
- ### Bug Fixes
455
-
456
- * use default separator if none is configured ([#271](https://github.com/oclif/core/issues/271)) ([602cf12](https://github.com/oclif/core/commit/602cf121ec676182a71a7e87b37714670cee0bf0))
457
-
458
- ## [1.0.0](https://github.com/oclif/core/compare/v0.6.0...v1.0.0) (2021-09-29)
459
-
460
- ## [0.6.0](https://github.com/oclif/core/compare/v0.5.41...v0.6.0) (2021-09-29)
461
-
462
-
463
- ### ⚠ BREAKING CHANGES
464
-
465
- * release v1 (#261)
466
-
467
- ### readme
468
-
469
- * release v1 ([#261](https://github.com/oclif/core/issues/261)) ([115d7ae](https://github.com/oclif/core/commit/115d7ae820afb574b1765f3f4df54322e991df69))
470
-
471
- ### [0.5.41](https://github.com/oclif/core/compare/v0.5.40...v0.5.41) (2021-09-29)
472
-
473
-
474
- ### Bug Fixes
475
-
476
- * only show warnings when json is not enabled ([#260](https://github.com/oclif/core/issues/260)) ([0890917](https://github.com/oclif/core/commit/0890917f79c671c4635dc577c6821d544eef3c69))
477
-
478
- ### [0.5.40](https://github.com/oclif/core/compare/v0.5.39...v0.5.40) (2021-09-27)
479
-
480
-
481
- ### Bug Fixes
482
-
483
- * adjust help text to new style guide ([#259](https://github.com/oclif/core/issues/259)) ([28d9d78](https://github.com/oclif/core/commit/28d9d78f5118886632a200e51cb34f7896210304))
484
-
485
- ### [0.5.39](https://github.com/oclif/core/compare/v0.5.38...v0.5.39) (2021-09-17)
486
-
487
-
488
- ### Features
489
-
490
- * parallelize runHook ([#253](https://github.com/oclif/core/issues/253)) ([34abf7c](https://github.com/oclif/core/commit/34abf7cd80f2f8825682ca782e42f62002215ebb))
491
-
492
- ### [0.5.38](https://github.com/oclif/core/compare/v0.5.37...v0.5.38) (2021-09-15)
493
-
494
-
495
- ### Features
496
-
497
- * have --json global flag disabled by default ([#252](https://github.com/oclif/core/issues/252)) ([c2a7799](https://github.com/oclif/core/commit/c2a7799ce036697c77917a830a12bce5db6c68a7))
498
-
499
- ### [0.5.37](https://github.com/oclif/core/compare/v0.5.36...v0.5.37) (2021-09-15)
500
-
501
-
502
- ### Bug Fixes
503
-
504
- * don't warn on hook errors ([#246](https://github.com/oclif/core/issues/246)) ([ba4be4b](https://github.com/oclif/core/commit/ba4be4b010f5f861e44b43ac31f33ce4b749982e))
505
-
506
- ### [0.5.36](https://github.com/oclif/core/compare/v0.5.35...v0.5.36) (2021-09-14)
507
-
508
-
509
- ### Bug Fixes
510
-
511
- * move ctor for command help class to its own function ([#244](https://github.com/oclif/core/issues/244)) ([26f2445](https://github.com/oclif/core/commit/26f24457c71276c38f86821c2b1498ecb8e4e2a4))
512
-
513
- ### [0.5.35](https://github.com/oclif/core/compare/v0.5.34...v0.5.35) (2021-09-08)
514
-
515
-
516
- ### Bug Fixes
517
-
518
- * clear hook timeout ([#243](https://github.com/oclif/core/issues/243)) ([0c32c65](https://github.com/oclif/core/commit/0c32c65c5c30b02bc3ea6e36b0598adfc5b23ec1))
519
-
520
- ### [0.5.34](https://github.com/oclif/core/compare/v0.5.33...v0.5.34) (2021-08-30)
521
-
522
-
523
- ### Bug Fixes
524
-
525
- * add support all properties for a command class in manifest ([deb0765](https://github.com/oclif/core/commit/deb0765f81dbea54c831beba0b608b1a8cd0ecdb))
526
-
527
- ### [0.5.33](https://github.com/oclif/core/compare/v0.5.32...v0.5.33) (2021-08-30)
528
-
529
-
530
- ### Bug Fixes
531
-
532
- * improve Hooks interface ([#234](https://github.com/oclif/core/issues/234)) ([32d0d62](https://github.com/oclif/core/commit/32d0d62ed30c65cdbca7c6da630b5542b38ab3b1))
533
-
534
- ### [0.5.32](https://github.com/oclif/core/compare/v0.5.31...v0.5.32) (2021-08-23)
535
-
536
-
537
- ### Bug Fixes
538
-
539
- * account for aliases when converting spaced commands to commandID ([#232](https://github.com/oclif/core/issues/232)) ([b8ee9b2](https://github.com/oclif/core/commit/b8ee9b209ddacdf95f164a05473a05d1b6c53d6b))
540
-
541
- ### [0.5.31](https://github.com/oclif/core/compare/v0.5.30...v0.5.31) (2021-08-18)
542
-
543
-
544
- ### Bug Fixes
545
-
546
- * command name parsing when flag=value present ([#231](https://github.com/oclif/core/issues/231)) ([6497514](https://github.com/oclif/core/commit/64975145085b6a9e287dd146a7fda8d3accfab58))
547
-
548
- ### [0.5.30](https://github.com/oclif/core/compare/v0.5.29...v0.5.30) (2021-08-16)
549
-
550
-
551
- ### Bug Fixes
552
-
553
- * update collateSpacedCmdIDFromArgs ([#230](https://github.com/oclif/core/issues/230)) ([4687287](https://github.com/oclif/core/commit/46872871cb8c7e8749298344a575751638ab2c04))
554
-
555
- ### [0.5.29](https://github.com/oclif/core/compare/v0.5.28...v0.5.29) (2021-08-10)
556
-
557
-
558
- ### Features
559
-
560
- * support multiple examples commands under a single description ([#229](https://github.com/oclif/core/issues/229)) ([b7ad583](https://github.com/oclif/core/commit/b7ad5838adcc2e3f274a563b302090b697afc96a))
561
-
562
-
563
- ### Bug Fixes
564
-
565
- * don't put multiple newlines between flag summaries in help output ([#225](https://github.com/oclif/core/issues/225)) ([bfbd15c](https://github.com/oclif/core/commit/bfbd15c7c60f663b9a17f02d4f5a1e8798b4d613))
566
- * switch ci to main ([849aeee](https://github.com/oclif/core/commit/849aeee378761f2edf52e7e9f44d4a0deab9cb3b))
567
-
568
- ### [0.5.28](https://github.com/oclif/core/compare/v0.5.27...v0.5.28) (2021-08-03)
569
-
570
-
571
- ### Features
572
-
573
- * add state property ([#206](https://github.com/oclif/core/issues/206)) ([07f9092](https://github.com/oclif/core/commit/07f9092128f979e3e4e22aeee07bf4d4caa3024c))
574
-
575
- ### [0.5.27](https://github.com/oclif/core/compare/v0.5.26...v0.5.27) (2021-07-29)
576
-
577
-
578
- ### Bug Fixes
579
-
580
- * restore short flags for --help and --version ([#205](https://github.com/oclif/core/issues/205)) ([67dadd4](https://github.com/oclif/core/commit/67dadd413dfbdd7742a3cd91e7ce1d5dfc7421da))
581
-
582
- ### [0.5.26](https://github.com/oclif/core/compare/v0.5.25...v0.5.26) (2021-07-22)
583
-
584
-
585
- ### Bug Fixes
586
-
587
- * set exitCode on --json errors ([67f5eea](https://github.com/oclif/core/commit/67f5eea6e43345203ba7a79f5d27aeb65e7c2bab))
588
-
589
- ### [0.5.25](https://github.com/oclif/core/compare/v0.5.24...v0.5.25) (2021-07-22)
590
-
591
-
592
- ### Bug Fixes
593
-
594
- * remove default flags ([403e5d8](https://github.com/oclif/core/commit/403e5d89351d2f9bc2494179e1514f0ed7500384))
595
-
596
- ### [0.5.24](https://github.com/oclif/core/compare/v0.5.23...v0.5.24) (2021-07-22)
597
-
598
-
599
- ### Bug Fixes
600
-
601
- * set this.flags to empty object by default ([8f5d5ed](https://github.com/oclif/core/commit/8f5d5ed1f691ed442d88c19087bc50e0dadda88b))
602
-
603
- ### [0.5.23](https://github.com/oclif/core/compare/v0.5.22...v0.5.23) (2021-07-19)
604
-
605
-
606
- ### Bug Fixes
607
-
608
- * make findCommand deterministic ([#204](https://github.com/oclif/core/issues/204)) ([3a37a8c](https://github.com/oclif/core/commit/3a37a8c7c5ab20da781a6682e41952b482622413))
609
-
610
- ### [0.5.22](https://github.com/oclif/core/compare/v0.5.21...v0.5.22) (2021-07-14)
611
-
612
-
613
- ### Bug Fixes
614
-
615
- * respect variable args when using spaces ([#203](https://github.com/oclif/core/issues/203)) ([d458dfd](https://github.com/oclif/core/commit/d458dfd602bcdd8bfdf0ee920ff710a59b5d831a))
616
-
617
- ### [0.5.21](https://github.com/oclif/core/compare/v0.5.20...v0.5.21) (2021-07-07)
618
-
619
-
620
- ### Bug Fixes
621
-
622
- * update cli-ux ([6608e12](https://github.com/oclif/core/commit/6608e12f488fa260ba952aa54ced780b1dfc4470))
623
-
624
- ### [0.5.20](https://github.com/oclif/core/compare/v0.5.19...v0.5.20) (2021-07-01)
625
-
626
-
627
- ### Bug Fixes
628
-
629
- * allow for no args on top level topic ([1231eae](https://github.com/oclif/core/commit/1231eae78310d0da064ed74b53ad58e10e6905b6))
630
-
631
- ### [0.5.19](https://github.com/oclif/core/compare/v0.5.18...v0.5.19) (2021-06-30)
632
-
633
-
634
- ### Bug Fixes
635
-
636
- * jsonEnabled when json is disabled ([4575be8](https://github.com/oclif/core/commit/4575be87f40622c13ed8060765d341365bc8bd6e))
637
-
638
- ### [0.5.18](https://github.com/oclif/core/compare/v0.5.17...v0.5.18) (2021-06-28)
639
-
640
-
641
- ### Features
642
-
643
- * add docopts ([#188](https://github.com/oclif/core/issues/188)) ([4f38877](https://github.com/oclif/core/commit/4f38877b1e9abb1a19a3bcecde17945f80b2d52d))
644
-
645
- ### [0.5.17](https://github.com/oclif/core/compare/v0.5.16...v0.5.17) (2021-06-28)
646
-
647
-
648
- ### Bug Fixes
649
-
650
- * simplify toSuccessJson ([442195e](https://github.com/oclif/core/commit/442195eb6ee5e7728fe0bb4e9e1d8ecb5633f105))
651
-
652
- ### [0.5.16](https://github.com/oclif/core/compare/v0.5.15...v0.5.16) (2021-06-28)
653
-
654
-
655
- ### Features
656
-
657
- * return results from runHook ([#187](https://github.com/oclif/core/issues/187)) ([5355203](https://github.com/oclif/core/commit/535520326a354e3d12abc77ba9148a314fa957ba))
658
-
659
- ### [0.5.15](https://github.com/oclif/core/compare/v0.5.14...v0.5.15) (2021-06-24)
660
-
661
-
662
- ### Bug Fixes
663
-
664
- * return type on toSuccessJson ([e2a9751](https://github.com/oclif/core/commit/e2a9751c84d5582ff4f0b3e24b12b198c0318dd1))
665
-
666
- ### [0.5.14](https://github.com/oclif/core/compare/v0.5.13...v0.5.14) (2021-06-17)
667
-
668
-
669
- ### Features
670
-
671
- * help improvements and customizability ([#184](https://github.com/oclif/core/issues/184)) ([cb2109b](https://github.com/oclif/core/commit/cb2109b113864534ceb08978ae1b209be7ae70d8))
672
-
673
- ### [0.5.13](https://github.com/oclif/core/compare/v0.5.12...v0.5.13) (2021-06-09)
674
-
675
- ### [0.5.12](https://github.com/oclif/core/compare/v0.5.11...v0.5.12) (2021-06-07)
676
-
677
- ### [0.5.11](https://github.com/oclif/core/compare/v0.5.10...v0.5.11) (2021-06-07)
678
-
679
- ### [0.5.10](https://github.com/oclif/core/compare/v0.5.9...v0.5.10) (2021-05-28)
680
-
681
- ### [0.5.9](https://github.com/oclif/core/compare/v0.5.8...v0.5.9) (2021-05-27)
682
-
683
- ### [0.5.8](https://github.com/oclif/core/compare/v0.5.7...v0.5.8) (2021-05-26)
684
-
685
-
686
- ### Features
687
-
688
- * strengthened ModuleLoader & unit tests; now supports mixed ESM / CJS plugins ([#163](https://github.com/oclif/core/issues/163)) ([788bf17](https://github.com/oclif/core/commit/788bf175b7e39b7d61fc07279e5cedca2fdbd540))
689
-
690
- ### [0.5.7](https://github.com/oclif/core/compare/v0.5.6...v0.5.7) (2021-05-17)
691
-
692
-
693
- ### Bug Fixes
694
-
695
- * conversion of spaced commands to colon commands ([#164](https://github.com/oclif/core/issues/164)) ([9503d32](https://github.com/oclif/core/commit/9503d323d6e0dffe98a0a7005f676daeebd9ec44))
696
-
697
- ### [0.5.6](https://github.com/oclif/core/compare/v0.5.5...v0.5.6) (2021-05-13)
698
-
699
-
700
- ### Features
701
-
702
- * integrate ESM loading of commands & hooks ([#160](https://github.com/oclif/core/issues/160)) ([ff47444](https://github.com/oclif/core/commit/ff47444b549566e40015d33f29d2687b74a980f4))
703
-
704
- ### [0.5.5](https://github.com/oclif/core/compare/v0.5.4...v0.5.5) (2021-04-26)
705
-
706
- ### [0.5.4](https://github.com/oclif/core/compare/v0.5.3...v0.5.4) (2021-04-20)
707
-
708
- ### [0.5.3](https://github.com/oclif/core/compare/v0.5.2...v0.5.3) (2021-04-19)
709
-
710
- ### [0.5.2](https://github.com/oclif/core/compare/v0.5.1...v0.5.2) (2021-04-19)
711
-
712
- ### [0.5.1](https://github.com/oclif/core/compare/v0.5.0...v0.5.1) (2021-04-15)
713
-
714
-
715
- ### Features
716
-
717
- * support misspelled spaced commands ([#143](https://github.com/oclif/core/issues/143)) ([50c1789](https://github.com/oclif/core/commit/50c1789120a4d73703c0ce560a6a312d391f594a))
718
-
719
- # [0.5.0](https://github.com/oclif/core/compare/v0.4.0...v0.5.0) (2021-04-08)
720
-
721
-
722
- ### Bug Fixes
723
-
724
- * don't resolve lib to src in development mode ([#129](https://github.com/oclif/core/issues/129)) ([abd10fd](https://github.com/oclif/core/commit/abd10fdbb313c25170f4492cc8dfea8ffa3a9928))
725
-
726
-
727
-
728
- # [0.4.0](https://github.com/oclif/core/compare/v0.3.0...v0.4.0) (2021-03-01)
729
-
730
-
731
- ### Features
732
-
733
- * add topic separator option ([#111](https://github.com/oclif/core/issues/111)) ([b3ca07f](https://github.com/oclif/core/commit/b3ca07f4e6f7e6e87e675a9de0dbce611a9f1950))
734
-
735
-
736
-
737
- # [0.3.0](https://github.com/oclif/core/compare/v0.2.0...v0.3.0) (2021-02-01)
738
-
739
-
740
- ### Bug Fixes
741
-
742
- * default ExitError to exit error code 1 ([#95](https://github.com/oclif/core/issues/95)) ([2005c5f](https://github.com/oclif/core/commit/2005c5f092dc60c0cfafcb1d5c90fd62c2048dca))
743
- * filter help argvs before invoking ([#103](https://github.com/oclif/core/issues/103)) ([698125d](https://github.com/oclif/core/commit/698125d602de9bc085b4080768a564a7b01fe27d))
744
- * only --version & --help are special global flags ([#96](https://github.com/oclif/core/issues/96)) ([364d6dd](https://github.com/oclif/core/commit/364d6dd8fd5a54334a6e77255cd6b3a5e7321632))
745
-
746
-
747
- ### Features
748
-
749
- * add default command (rm root cmd) ([#97](https://github.com/oclif/core/issues/97)) ([fbf1a0f](https://github.com/oclif/core/commit/fbf1a0f827208da75c77009fedd48b8886a00520))
750
- * args read stdin ([#100](https://github.com/oclif/core/issues/100)) ([caea554](https://github.com/oclif/core/commit/caea55484c0cdf6803b9fa472f9fa8a622f57a80))
751
- * parse async ([#99](https://github.com/oclif/core/issues/99)) ([57924df](https://github.com/oclif/core/commit/57924df5c168b677df9d1d1f43155a89e9cb2c98))
752
- * rm duplicate ts-node registering ([#102](https://github.com/oclif/core/issues/102)) ([b8b5333](https://github.com/oclif/core/commit/b8b5333047eb939e79c8cadf460e3c76ff751460))
753
- * run single & multi cmd clis with same invoking/runner ([#98](https://github.com/oclif/core/issues/98)) ([8828ca9](https://github.com/oclif/core/commit/8828ca9d05f87bc321bbd2394191b194764bba7a))
754
-
755
-
756
-
757
- # [0.2.0](https://github.com/oclif/core/compare/v0.1.2...v0.2.0) (2020-09-18)
758
-
759
-
760
- ### Bug Fixes
761
-
762
- * capitalize Flags module export ([#41](https://github.com/oclif/core/issues/41)) ([9b1d2a8](https://github.com/oclif/core/commit/9b1d2a8f8bae42f2b5e1115db42adc6d159e351b))
763
- * config debug scope ([#38](https://github.com/oclif/core/issues/38)) ([be0d001](https://github.com/oclif/core/commit/be0d0018637d3809e487fb750a1e7166a49f70bd))
764
- * export TSConfig in Interfaces ([#43](https://github.com/oclif/core/issues/43)) ([187f5b8](https://github.com/oclif/core/commit/187f5b8a8f98e6e743ebd5cd45cae2f36a1b0781))
765
-
766
-
767
- ### Features
768
-
769
- * export Config, Plugin at root & namespace interfaces ([#40](https://github.com/oclif/core/issues/40)) ([0817fc0](https://github.com/oclif/core/commit/0817fc0133859ddf98b4d85f29839d5dadc7ec6e))
770
- * export HelpOptions in Interfaces ([#45](https://github.com/oclif/core/issues/45)) ([5d4212f](https://github.com/oclif/core/commit/5d4212f6a3f8f56c66b6eeb4680da0ad0c944325))
771
- * export OclifError & PrettyPrintableError in Interfaces ([#44](https://github.com/oclif/core/issues/44)) ([766b6f5](https://github.com/oclif/core/commit/766b6f553f3861e247258142005a8ca035c209af))
772
- * export parser interfaces in Interfaces ([#46](https://github.com/oclif/core/issues/46)) ([d5ad46d](https://github.com/oclif/core/commit/d5ad46db55f9510e5cd3235111fe93bfa4a4c1c4))
773
- * mv Command & flag export to root ([#37](https://github.com/oclif/core/issues/37)) ([70ea6e1](https://github.com/oclif/core/commit/70ea6e16ada0ce18ebbeb52ed9802d3a1536276d))
774
- * mv getHelpClass, Help & HelpBase export to root ([#39](https://github.com/oclif/core/issues/39)) ([3d272d8](https://github.com/oclif/core/commit/3d272d8a5308e1063326bcfc1eb8998c2a4f8585))
775
-
776
-
777
-
778
- ## [0.1.2](https://github.com/oclif/core/compare/v0.1.1...v0.1.2) (2020-09-11)
779
-
780
-
781
- ### Bug Fixes
782
-
783
- * export run ([#36](https://github.com/oclif/core/issues/36)) ([0a2fa9a](https://github.com/oclif/core/commit/0a2fa9a9e90baebd41d15f6b70a11f5ad75dc6c7))
784
-
785
-
786
-
787
- ## [0.1.1](https://github.com/oclif/core/compare/v0.1.0...v0.1.1) (2020-09-09)
788
-
789
-
790
- ### Bug Fixes
791
-
792
- * accept integer 0 as valid arg input ([#34](https://github.com/oclif/core/issues/34)) ([36eb02f](https://github.com/oclif/core/commit/36eb02f168eaa179e260010443fd33e526a94763))
793
- * support src/commands/index cmd ([#35](https://github.com/oclif/core/issues/35)) ([2c14c3c](https://github.com/oclif/core/commit/2c14c3c0987e9cf97ff1d34648cf4a0a90e595d2))
794
-
795
-
796
-
797
- # 0.1.0 (2020-09-02)