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