Skip to content

Commit 1a1abda

Browse files
committed
release: @black-flag/checks@1.0.0 [skip ci]
## 💥 BREAKING CHANGES 💥 - **All instances in source where `commandModulePath` appeared have been replaced by `commandModulesPath`. This includes the call signatures of functions like `makeRunner`.** The fix is simple: find-and-replace all instances of `commandModulePath` with `commandModulesPath`. ## ✨ Features - **packages/checks:** implement @black-flag/checks ([64029b9][1]) - **packages/checks:** implement `checkArrayNoConflicts` and `checkArrayUnique` ([10cd0eb][2]) ## 🪄 Fixes - Fix Windows interop issues ([b3abf95][3]) <sup>see [#174][4]</sup> ## ⚙️ Build System - **husky:** force lint-staged (via husky) to only use global config file ([5d3f2cc][5]) - **husky:** update to latest hooks ([75d5c66][6]) - **tsconfig:** fix internal path resolution ([fbe3a69][7]) - **tsconfig:** upgrade to NodeNext ([d3a499e][8]) ## 🧙🏿 Refactored - Rename and restructure exports for better docs generation ([8303ba7][9]) [1]: 64029b9 [2]: 10cd0eb [3]: b3abf95 [4]: #174 [5]: 5d3f2cc [6]: 75d5c66 [7]: fbe3a69 [8]: d3a499e [9]: 8303ba7
1 parent 359cb94 commit 1a1abda

File tree

7 files changed

+53
-6
lines changed

7 files changed

+53
-6
lines changed

packages/checks/CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this auto-generated
4+
file. The format is based on [Conventional Commits][1];
5+
this project adheres to [Semantic Versioning][2].
6+
7+
<br />
8+
9+
## @black-flag/checks\@1.0.0 (2025-03-14)
10+
11+
### 💥 BREAKING CHANGES 💥
12+
13+
- **All instances in source where `commandModulePath` appeared have been replaced by `commandModulesPath`. This includes the call signatures of functions like `makeRunner`.**
14+
15+
The fix is simple: find-and-replace all instances of `commandModulePath` with `commandModulesPath`.
16+
17+
### ✨ Features
18+
19+
- **packages/checks:** implement @black-flag/checks ([64029b9][3])
20+
- **packages/checks:** implement `checkArrayNoConflicts` and `checkArrayUnique` ([10cd0eb][4])
21+
22+
### 🪄 Fixes
23+
24+
- Fix Windows interop issues ([b3abf95][5]) <sup>see [#174][6]</sup>
25+
26+
### ⚙️ Build System
27+
28+
- **husky:** force lint-staged (via husky) to only use global config file ([5d3f2cc][7])
29+
- **husky:** update to latest hooks ([75d5c66][8])
30+
- **tsconfig:** fix internal path resolution ([fbe3a69][9])
31+
- **tsconfig:** upgrade to NodeNext ([d3a499e][10])
32+
33+
### 🧙🏿 Refactored
34+
35+
- Rename and restructure exports for better docs generation ([8303ba7][11])
36+
37+
[1]: https://conventionalcommits.org
38+
[2]: https://semver.org
39+
[3]: https://github.com/Xunnamius/black-flag/commit/64029b9dc0d1e8224d65d2e6c9653b2c09abb962
40+
[4]: https://github.com/Xunnamius/black-flag/commit/10cd0ebc0304d033218ec4dffba0c41cb2e85ff6
41+
[5]: https://github.com/Xunnamius/black-flag/commit/b3abf95ca2958d5d2fca1091178c050ef88fe5f5
42+
[6]: https://github.com/Xunnamius/black-flag/issues/174
43+
[7]: https://github.com/Xunnamius/black-flag/commit/5d3f2ccdfcd615917892d27a5c2cfa1b28879e0c
44+
[8]: https://github.com/Xunnamius/black-flag/commit/75d5c66bcce8f0c2c139962f7ddd28aa0c9499d7
45+
[9]: https://github.com/Xunnamius/black-flag/commit/fbe3a699a9063ed7da08311a22fe798672583b0f
46+
[10]: https://github.com/Xunnamius/black-flag/commit/d3a499e7aeddf23d392479b2cf99cc98bce8226f
47+
[11]: https://github.com/Xunnamius/black-flag/commit/8303ba7f438ae7f7dedfc2b6f5fd396cab32b252

packages/checks/docs/error/variables/BfcErrorMessage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> `const` **BfcErrorMessage**: `object`
1010
11-
Defined in: [error.ts:5](https://github.com/Xunnamius/black-flag/blob/10cd0ebc0304d033218ec4dffba0c41cb2e85ff6/packages/checks/src/error.ts#L5)
11+
Defined in: [error.ts:5](https://github.com/Xunnamius/black-flag/blob/359cb940c512f8ac3f63e33c0f88a34c8e1d62ec/packages/checks/src/error.ts#L5)
1212

1313
A collection of possible error and warning messages.
1414

packages/checks/docs/index/functions/checkArrayNoConflicts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> **checkArrayNoConflicts**(`argName`, `conflicts`): (`currentArg`) => `string` \| `true`
1010
11-
Defined in: [index.ts:54](https://github.com/Xunnamius/black-flag/blob/10cd0ebc0304d033218ec4dffba0c41cb2e85ff6/packages/checks/src/index.ts#L54)
11+
Defined in: [index.ts:54](https://github.com/Xunnamius/black-flag/blob/359cb940c512f8ac3f63e33c0f88a34c8e1d62ec/packages/checks/src/index.ts#L54)
1212

1313
A Black Flag check that passes when at most only one element from each
1414
`conflict` tuple is present in the array.

packages/checks/docs/index/functions/checkArrayNotEmpty.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> **checkArrayNotEmpty**(`argName`, `adjective`): (`currentArg`) => `string` \| `true`
1010
11-
Defined in: [index.ts:31](https://github.com/Xunnamius/black-flag/blob/10cd0ebc0304d033218ec4dffba0c41cb2e85ff6/packages/checks/src/index.ts#L31)
11+
Defined in: [index.ts:31](https://github.com/Xunnamius/black-flag/blob/359cb940c512f8ac3f63e33c0f88a34c8e1d62ec/packages/checks/src/index.ts#L31)
1212

1313
A Black Flag check that passes when each member of an array-type argument
1414
is a non-empty non-nullish value and the array itself is non-empty.

packages/checks/docs/index/functions/checkArrayUnique.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> **checkArrayUnique**(`argName`): (`currentArg`) => `string` \| `true`
1010
11-
Defined in: [index.ts:86](https://github.com/Xunnamius/black-flag/blob/10cd0ebc0304d033218ec4dffba0c41cb2e85ff6/packages/checks/src/index.ts#L86)
11+
Defined in: [index.ts:86](https://github.com/Xunnamius/black-flag/blob/359cb940c512f8ac3f63e33c0f88a34c8e1d62ec/packages/checks/src/index.ts#L86)
1212

1313
A Black Flag check that passes when each element in the array is unique.
1414

packages/checks/docs/index/functions/checkIsNotNegative.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> **checkIsNotNegative**(`argName`): (`currentArg`) => `string` \| `true`
1010
11-
Defined in: [index.ts:9](https://github.com/Xunnamius/black-flag/blob/10cd0ebc0304d033218ec4dffba0c41cb2e85ff6/packages/checks/src/index.ts#L9)
11+
Defined in: [index.ts:9](https://github.com/Xunnamius/black-flag/blob/359cb940c512f8ac3f63e33c0f88a34c8e1d62ec/packages/checks/src/index.ts#L9)
1212

1313
A Black Flag check that passes when an argument value is a non-negative
1414
number.

packages/checks/docs/index/functions/checkIsNotNil.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
> **checkIsNotNil**(`argName`): (`currentArg`) => `string` \| `true`
1010
11-
Defined in: [index.ts:21](https://github.com/Xunnamius/black-flag/blob/10cd0ebc0304d033218ec4dffba0c41cb2e85ff6/packages/checks/src/index.ts#L21)
11+
Defined in: [index.ts:21](https://github.com/Xunnamius/black-flag/blob/359cb940c512f8ac3f63e33c0f88a34c8e1d62ec/packages/checks/src/index.ts#L21)
1212

1313
A Black Flag check that passes when an argument value is not falsy.
1414

0 commit comments

Comments
 (0)