Skip to content

Commit 3068de6

Browse files
committed
build: update deps
1 parent 67be697 commit 3068de6

File tree

33 files changed

+221
-469
lines changed

33 files changed

+221
-469
lines changed

examples/vite-react-dom-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"eslint-plugin-react-refresh": "^0.4.16",
2929
"typescript": "^5.7.2",
3030
"typescript-eslint": "^8.18.2",
31-
"vite": "^6.0.5"
31+
"vite": "^6.0.6"
3232
}
3333
}

examples/vite-react-dom-js-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,6 @@
2525
"eslint-plugin-react-hooks": "^5.1.0",
2626
"eslint-plugin-react-refresh": "^0.4.16",
2727
"globals": "^15.14.0",
28-
"vite": "^6.0.5"
28+
"vite": "^6.0.6"
2929
}
3030
}

examples/vite-react-dom-js-with-babel-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,6 @@
3131
"eslint-plugin-react-hooks": "^5.1.0",
3232
"eslint-plugin-react-refresh": "^0.4.16",
3333
"globals": "^15.14.0",
34-
"vite": "^6.0.5"
34+
"vite": "^6.0.6"
3535
}
3636
}

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
"@effect/schema": "^0.75.5",
5959
"@eslint/config-inspector": "^0.6.0",
6060
"@eslint/js": "^9.17.0",
61-
"@swc/core": "^1.10.1",
61+
"@swc/core": "^1.10.2",
6262
"@tsconfig/node22": "^22.0.0",
6363
"@tsconfig/strictest": "^2.0.5",
6464
"@types/node": "^22.10.2",
@@ -82,7 +82,7 @@
8282
"eslint-import-resolver-oxc": "^0.7.0",
8383
"fixpkg": "^1.0.2",
8484
"importx": "^0.5.1",
85-
"lefthook": "^1.10.0",
85+
"lefthook": "^1.10.1",
8686
"markdownlint": "^0.37.2",
8787
"publint": "^0.2.12",
8888
"react": "^19.0.0",
@@ -94,7 +94,7 @@
9494
"tsx": "^4.19.2",
9595
"turbo": "^2.3.3",
9696
"type-fest": "^4.31.0",
97-
"typedoc": "^0.27.5",
97+
"typedoc": "^0.27.6",
9898
"typedoc-plugin-markdown": "^4.3.3",
9999
"typedoc-plugin-rename-defaults": "^0.7.2",
100100
"typescript": "^5.7.2",

packages/utilities/eff/docs/Either.js/functions/all.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: all()
88

9-
> **all**\<`I`\>(`input`): [`I`] *extends* [readonly [`Either`](../type-aliases/Either.md)\<`any`, `any`\>[]] ? [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\<`I`\>\[`number`\] *extends* `never` ? `never` : [`I`\<`I`\>\[`number`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\> : [`I`] *extends* [`Iterable`\<[`Either`](../type-aliases/Either.md)\<`R`, `L`\>, `any`, `any`\>] ? [`Either`](../type-aliases/Either.md)\<`R`[], `L`\> : [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\[keyof `I`\] *extends* `never` ? `never` : [`I`\[keyof `I`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\>
9+
> **all**\<`I`\>(`input`): [`I`] *extends* [readonly [`Either`](../type-aliases/Either.md)\<`any`, `any`\>[]] ? [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\<`I`\>\[`number`\] *extends* `never` ? `never` : [`I`\<`I`\>\[`number`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\> : [`I`] *extends* [`Iterable`\<[`Either`](../type-aliases/Either.md)\<`R`, `L`\>\>] ? [`Either`](../type-aliases/Either.md)\<`R`[], `L`\> : [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\[keyof `I`\] *extends* `never` ? `never` : [`I`\[keyof `I`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\>
1010
1111
Takes a structure of `Either`s and returns an `Either` of values with the same structure.
1212

@@ -16,7 +16,7 @@ Takes a structure of `Either`s and returns an `Either` of values with the same s
1616

1717
## Type Parameters
1818

19-
**I** *extends* `Iterable`\<[`Either`](../type-aliases/Either.md)\<`any`, `any`\>, `any`, `any`\> \| `Record`\<`string`, [`Either`](../type-aliases/Either.md)\<`any`, `any`\>\>
19+
**I** *extends* `Iterable`\<[`Either`](../type-aliases/Either.md)\<`any`, `any`\>\> \| `Record`\<`string`, [`Either`](../type-aliases/Either.md)\<`any`, `any`\>\>
2020

2121
## Parameters
2222

@@ -26,7 +26,7 @@ Takes a structure of `Either`s and returns an `Either` of values with the same s
2626

2727
## Returns
2828

29-
[`I`] *extends* [readonly [`Either`](../type-aliases/Either.md)\<`any`, `any`\>[]] ? [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\<`I`\>\[`number`\] *extends* `never` ? `never` : [`I`\<`I`\>\[`number`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\> : [`I`] *extends* [`Iterable`\<[`Either`](../type-aliases/Either.md)\<`R`, `L`\>, `any`, `any`\>] ? [`Either`](../type-aliases/Either.md)\<`R`[], `L`\> : [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\[keyof `I`\] *extends* `never` ? `never` : [`I`\[keyof `I`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\>
29+
[`I`] *extends* [readonly [`Either`](../type-aliases/Either.md)\<`any`, `any`\>[]] ? [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\<`I`\>\[`number`\] *extends* `never` ? `never` : [`I`\<`I`\>\[`number`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\> : [`I`] *extends* [`Iterable`\<[`Either`](../type-aliases/Either.md)\<`R`, `L`\>\>] ? [`Either`](../type-aliases/Either.md)\<`R`[], `L`\> : [`Either`](../type-aliases/Either.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Either\<R, any\>\] ? R : never \}, `I`\[keyof `I`\] *extends* `never` ? `never` : [`I`\[keyof `I`\]] *extends* [[`Either`](../type-aliases/Either.md)\<`any`, `L`\>] ? `L` : `never`\>
3030

3131
## Example
3232

packages/utilities/eff/docs/Option.js/functions/all.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Function: all()
88

9-
> **all**\<`I`\>(`input`): [`I`] *extends* [readonly [`Option`](../type-aliases/Option.md)\<`any`\>[]] ? [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Option\<A\>\] ? A : never \}\> : [`I`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>, `any`, `any`\>] ? [`Option`](../type-aliases/Option.md)\<`A`[]\> : [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Option\<A\>\] ? A : never \}\>
9+
> **all**\<`I`\>(`input`): [`I`] *extends* [readonly [`Option`](../type-aliases/Option.md)\<`any`\>[]] ? [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Option\<A\>\] ? A : never \}\> : [`I`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>\>] ? [`Option`](../type-aliases/Option.md)\<`A`[]\> : [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Option\<A\>\] ? A : never \}\>
1010
1111
Takes a structure of `Option`s and returns an `Option` of values with the same structure.
1212

@@ -16,7 +16,7 @@ Takes a structure of `Option`s and returns an `Option` of values with the same s
1616

1717
## Type Parameters
1818

19-
**I** *extends* `Iterable`\<[`Option`](../type-aliases/Option.md)\<`any`\>, `any`, `any`\> \| `Record`\<`string`, [`Option`](../type-aliases/Option.md)\<`any`\>\>
19+
**I** *extends* `Iterable`\<[`Option`](../type-aliases/Option.md)\<`any`\>\> \| `Record`\<`string`, [`Option`](../type-aliases/Option.md)\<`any`\>\>
2020

2121
## Parameters
2222

@@ -26,7 +26,7 @@ Takes a structure of `Option`s and returns an `Option` of values with the same s
2626

2727
## Returns
2828

29-
[`I`] *extends* [readonly [`Option`](../type-aliases/Option.md)\<`any`\>[]] ? [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Option\<A\>\] ? A : never \}\> : [`I`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>, `any`, `any`\>] ? [`Option`](../type-aliases/Option.md)\<`A`[]\> : [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Option\<A\>\] ? A : never \}\>
29+
[`I`] *extends* [readonly [`Option`](../type-aliases/Option.md)\<`any`\>[]] ? [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\<I\>\[K\]\] extends \[Option\<A\>\] ? A : never \}\> : [`I`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>\>] ? [`Option`](../type-aliases/Option.md)\<`A`[]\> : [`Option`](../type-aliases/Option.md)\<\{ -readonly \[K in string \| number \| symbol\]: \[I\[K\]\] extends \[Option\<A\>\] ? A : never \}\>
3030

3131
## Example
3232

packages/utilities/eff/docs/Option.js/functions/firstSomeOf.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@
66

77
# Function: firstSomeOf()
88

9-
> **firstSomeOf**\<`T`, `C`\>(`collection`): [`C`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>, `any`, `any`\>] ? [`Option`](../type-aliases/Option.md)\<`A`\> : `never`
9+
> **firstSomeOf**\<`T`, `C`\>(`collection`): [`C`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>\>] ? [`Option`](../type-aliases/Option.md)\<`A`\> : `never`
1010
1111
Given an `Iterable` collection of `Option`s, returns the first `Some` found in the collection.
1212

1313
## Type Parameters
1414

1515
**T**
1616

17-
**C** *extends* `Iterable`\<[`Option`](../type-aliases/Option.md)\<`T`\>, `any`, `any`\> = `Iterable`\<[`Option`](../type-aliases/Option.md)\<`T`\>, `any`, `any`\>
17+
**C** *extends* `Iterable`\<[`Option`](../type-aliases/Option.md)\<`T`\>\> = `Iterable`\<[`Option`](../type-aliases/Option.md)\<`T`\>\>
1818

1919
## Parameters
2020

@@ -26,7 +26,7 @@ An iterable collection of `Option` to be searched.
2626

2727
## Returns
2828

29-
[`C`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>, `any`, `any`\>] ? [`Option`](../type-aliases/Option.md)\<`A`\> : `never`
29+
[`C`] *extends* [`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>\>] ? [`Option`](../type-aliases/Option.md)\<`A`\> : `never`
3030

3131
## Example
3232

packages/utilities/eff/docs/Option.js/functions/fromIterable.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ if the `Iterable` is not empty, otherwise returns `None`.
1919

2020
### collection
2121

22-
`Iterable`\<`A`, `any`, `any`\>
22+
`Iterable`\<`A`\>
2323

2424
The `Iterable` to be converted to an `Option`.
2525

packages/utilities/eff/docs/Option.js/functions/productMany.md

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

2121
### collection
2222

23-
`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>, `any`, `any`\>
23+
`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>\>
2424

2525
## Returns
2626

packages/utilities/eff/docs/Option.js/functions/reduceCompact.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ The reducing function that takes the current accumulator value and the unwrapped
6767

6868
##### self
6969

70-
`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>, `any`, `any`\>
70+
`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>\>
7171

7272
#### Returns
7373

@@ -125,7 +125,7 @@ Reduces an `Iterable` of `Option<A>` to a single value of type `B`, elements tha
125125

126126
#### self
127127

128-
`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>, `any`, `any`\>
128+
`Iterable`\<[`Option`](../type-aliases/Option.md)\<`A`\>\>
129129

130130
The Iterable of `Option<A>` to be reduced.
131131

0 commit comments

Comments
 (0)