Skip to content

Commit f1da16f

Browse files
committed
release: 1.1.3 [skip ci]
### [1.1.3](v1.1.2...v1.1.3) (2024-03-15) #### 🪄 Fixes * Add support for `export default X` syntax ([bad391d](bad391d)) * Ensure `demandOption` is properly supported ([2f205c1](2f205c1))
1 parent 2f205c1 commit f1da16f

File tree

3 files changed

+48
-38
lines changed

3 files changed

+48
-38
lines changed

CHANGELOG.md

+45-35
Original file line numberDiff line numberDiff line change
@@ -4,68 +4,78 @@ All notable changes to this project will be documented in this auto-generated
44
file. The format is based on [Conventional Commits][1];
55
this project adheres to [Semantic Versioning][2].
66

7-
### [1.1.2][3] (2023-12-31)
7+
### [1.1.3][3] (2024-03-15)
88

99
#### 🪄 Fixes
1010

11-
- **readme:** move parserConfiguration call out of dead zone in example ([f79c114][4])
11+
- Add support for `export default X` syntax ([bad391d][4])
12+
- Ensure `demandOption` is properly supported ([2f205c1][5])
1213

13-
### [1.1.1][5] (2023-12-31)
14+
### [1.1.2][6] (2023-12-31)
1415

1516
#### 🪄 Fixes
1617

17-
- Fix Node10 type resolution failure ([b6178c9][6])
18+
- **readme:** move parserConfiguration call out of dead zone in example ([f79c114][7])
1819

19-
## [1.1.0][7] (2023-12-31)
20+
### [1.1.1][8] (2023-12-31)
21+
22+
#### 🪄 Fixes
23+
24+
- Fix Node10 type resolution failure ([b6178c9][9])
25+
26+
## [1.1.0][10] (2023-12-31)
2027

2128
#### ✨ Features
2229

23-
- **src:** support file://-style URLs ([0e5067e][8])
30+
- **src:** support file://-style URLs ([0e5067e][11])
2431

2532
#### 🪄 Fixes
2633

27-
- **src:** ensure --version is included in help text output when relevant ([4f159dc][9])
34+
- **src:** ensure --version is included in help text output when relevant ([4f159dc][12])
2835

2936
#### ⚙️ Build System
3037

31-
- **babel:** fix ESM<=>CJS interop issue ([5470091][10])
38+
- **babel:** fix ESM<=>CJS interop issue ([5470091][13])
3239

33-
## [1.0.0][11] (2023-12-29)
40+
## [1.0.0][14] (2023-12-29)
3441

3542
#### ✨ Features
3643

37-
- **src:** disallow creating commands with conflicting names/aliases ([78bf8ff][12])
44+
- **src:** disallow creating commands with conflicting names/aliases ([78bf8ff][15])
3845

3946
#### 🪄 Fixes
4047

41-
- Rename package from "black-flag" to "[@black-][13]flag/core" npm typosquat workaround ([292ead5][14])
48+
- Rename package from "black-flag" to "[@black-][16]flag/core" npm typosquat workaround ([292ead5][17])
4249

4350
#### ⚙️ Build System
4451

45-
- Fix horrible decision by marked devs to break output for no reason ([036e350][15])
46-
- **jest:** ensure pkg-up is transformed ([c7f4aef][16])
47-
- **jest:** fix transformIgnorePatterns ([0548d34][17])
48-
- **jest:** transpile node\_modules ([5cf7a6c][18])
49-
- **tsconfig:** fix internal path resolution ([fbe3a69][19])
50-
- **tsconfig:** upgrade to NodeNext ([d3a499e][20])
52+
- Fix horrible decision by marked devs to break output for no reason ([036e350][18])
53+
- **jest:** ensure pkg-up is transformed ([c7f4aef][19])
54+
- **jest:** fix transformIgnorePatterns ([0548d34][20])
55+
- **jest:** transpile node\_modules ([5cf7a6c][21])
56+
- **tsconfig:** fix internal path resolution ([fbe3a69][22])
57+
- **tsconfig:** upgrade to NodeNext ([d3a499e][23])
5158

5259
[1]: https://conventionalcommits.org
5360
[2]: https://semver.org
54-
[3]: https://github.com/Xunnamius/black-flag/compare/v1.1.1...v1.1.2
55-
[4]: https://github.com/Xunnamius/black-flag/commit/f79c11476de47bee3fa01e139269393b604b4271
56-
[5]: https://github.com/Xunnamius/black-flag/compare/v1.1.0...v1.1.1
57-
[6]: https://github.com/Xunnamius/black-flag/commit/b6178c9670a95084bca34424e71498f2d29ac48c
58-
[7]: https://github.com/Xunnamius/black-flag/compare/v1.0.0...v1.1.0
59-
[8]: https://github.com/Xunnamius/black-flag/commit/0e5067e2b0913a19bdc6975b50b272bb5872ba98
60-
[9]: https://github.com/Xunnamius/black-flag/commit/4f159dc4b84223dd6b07456c0b50da16d2816bea
61-
[10]: https://github.com/Xunnamius/black-flag/commit/5470091e385ca344e12a280ff95be793742874b8
62-
[11]: https://github.com/Xunnamius/black-flag/compare/d3a499e7aeddf23d392479b2cf99cc98bce8226f...v1.0.0
63-
[12]: https://github.com/Xunnamius/black-flag/commit/78bf8ffb0a6931fb3b131c42ce4b84146bfec842
64-
[13]: https://github.com/black-
65-
[14]: https://github.com/Xunnamius/black-flag/commit/292ead5aa3f18c556d72d714830dcf07b9253e6d
66-
[15]: https://github.com/Xunnamius/black-flag/commit/036e3506edc863da86372163c91dd650d6ac1e87
67-
[16]: https://github.com/Xunnamius/black-flag/commit/c7f4aef48366dc13685fb9805086be52d3561eff
68-
[17]: https://github.com/Xunnamius/black-flag/commit/0548d34f559c3b8ba6d9514f1586aeeb3b382f72
69-
[18]: https://github.com/Xunnamius/black-flag/commit/5cf7a6c79bba3125ce47838e5cfd24a1a08bbd17
70-
[19]: https://github.com/Xunnamius/black-flag/commit/fbe3a699a9063ed7da08311a22fe798672583b0f
71-
[20]: https://github.com/Xunnamius/black-flag/commit/d3a499e7aeddf23d392479b2cf99cc98bce8226f
61+
[3]: https://github.com/Xunnamius/black-flag/compare/v1.1.2...v1.1.3
62+
[4]: https://github.com/Xunnamius/black-flag/commit/bad391da3019a5743a76ca2e510903f34c84ca53
63+
[5]: https://github.com/Xunnamius/black-flag/commit/2f205c1e8c94d3e6683816e5bbc3ae152e3c83e8
64+
[6]: https://github.com/Xunnamius/black-flag/compare/v1.1.1...v1.1.2
65+
[7]: https://github.com/Xunnamius/black-flag/commit/f79c11476de47bee3fa01e139269393b604b4271
66+
[8]: https://github.com/Xunnamius/black-flag/compare/v1.1.0...v1.1.1
67+
[9]: https://github.com/Xunnamius/black-flag/commit/b6178c9670a95084bca34424e71498f2d29ac48c
68+
[10]: https://github.com/Xunnamius/black-flag/compare/v1.0.0...v1.1.0
69+
[11]: https://github.com/Xunnamius/black-flag/commit/0e5067e2b0913a19bdc6975b50b272bb5872ba98
70+
[12]: https://github.com/Xunnamius/black-flag/commit/4f159dc4b84223dd6b07456c0b50da16d2816bea
71+
[13]: https://github.com/Xunnamius/black-flag/commit/5470091e385ca344e12a280ff95be793742874b8
72+
[14]: https://github.com/Xunnamius/black-flag/compare/d3a499e7aeddf23d392479b2cf99cc98bce8226f...v1.0.0
73+
[15]: https://github.com/Xunnamius/black-flag/commit/78bf8ffb0a6931fb3b131c42ce4b84146bfec842
74+
[16]: https://github.com/black-
75+
[17]: https://github.com/Xunnamius/black-flag/commit/292ead5aa3f18c556d72d714830dcf07b9253e6d
76+
[18]: https://github.com/Xunnamius/black-flag/commit/036e3506edc863da86372163c91dd650d6ac1e87
77+
[19]: https://github.com/Xunnamius/black-flag/commit/c7f4aef48366dc13685fb9805086be52d3561eff
78+
[20]: https://github.com/Xunnamius/black-flag/commit/0548d34f559c3b8ba6d9514f1586aeeb3b382f72
79+
[21]: https://github.com/Xunnamius/black-flag/commit/5cf7a6c79bba3125ce47838e5cfd24a1a08bbd17
80+
[22]: https://github.com/Xunnamius/black-flag/commit/fbe3a699a9063ed7da08311a22fe798672583b0f
81+
[23]: https://github.com/Xunnamius/black-flag/commit/d3a499e7aeddf23d392479b2cf99cc98bce8226f

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@black-flag/core",
3-
"version": "1.1.2",
3+
"version": "1.1.3",
44
"description": "A declarative framework for building fluent, deeply hierarchical command line interfaces with yargs",
55
"keywords": [
66
"cli",

0 commit comments

Comments
 (0)