Skip to content

Commit 51f4e3c

Browse files
committed
build: remove glob from pnpm overrides
1 parent b19a30a commit 51f4e3c

File tree

10 files changed

+80
-44
lines changed

10 files changed

+80
-44
lines changed

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@
126126
"esbuild": "0.23.0",
127127
"eslint": "^9.6.0",
128128
"function-bind": "npm:@nolyfill/function-bind@^1",
129-
"glob": "10.4.3",
130129
"has": "npm:@nolyfill/has@^1",
131130
"hasown": "npm:@nolyfill/hasown@^1",
132131
"is-core-module": "npm:@nolyfill/is-core-module@^1",

packages/tools/docs/type-aliases/ArrayElement.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
1111
Returns the element type of an array.
1212

13+
## Type Parameters
14+
15+
**A**
16+
1317
## Since
1418

1519
0.4.0
@@ -21,7 +25,3 @@ type of the array elements.
2125
## Param
2226

2327
The array to get the element type from.
24-
25-
## Type Parameters
26-
27-
**A**

packages/tools/docs/type-aliases/Cast.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@
88

99
> **Cast**\<`X`, `Y`\>: `X` *extends* `Y` ? `X` : `Y`
1010
11-
## Since
12-
13-
0.4.0
14-
1511
## Type Parameters
1612

1713
**X**
1814

1915
**Y**
16+
17+
## Since
18+
19+
0.4.0

packages/tools/docs/type-aliases/LooseRecord.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@
1010
1111
A record with loose keys.
1212

13-
## Since
14-
15-
0.4.0
16-
1713
## Type Parameters
1814

1915
**T**
2016

2117
The type of the values.
18+
19+
## Since
20+
21+
0.4.0

packages/tools/docs/type-aliases/Narrow.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
1111
Infers embedded primitive type of any type
1212

13+
## Type Parameters
14+
15+
**TType**
16+
1317
## Since
1418

1519
0.0.1
@@ -27,7 +31,3 @@ type Result = Narrow<['foo', 'bar', 1]>
2731
## See
2832
2933
https://twitter.com/hd_nvim/status/1578567206190780417
30-
31-
## Type Parameters
32-
33-
• **TType**

packages/tools/docs/type-aliases/Pretty.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
> **Pretty**\<`T`\>: `{ [P in keyof T]: T[P] }` & `object`
1010
11-
## Since
12-
13-
0.0.1
14-
1511
## Type Parameters
1612

1713
**T**
14+
15+
## Since
16+
17+
0.0.1

packages/tools/docs/type-aliases/Remap.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@
88

99
> **Remap**\<`T`\>: `{ [P in keyof T]: T[P] }`
1010
11-
## Since
12-
13-
0.0.1
14-
1511
## Type Parameters
1612

1713
**T**
14+
15+
## Since
16+
17+
0.0.1

packages/tools/docs/type-aliases/UnionFromTuple.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@
88

99
> **UnionFromTuple**\<`T`\>: `T` *extends* infer U[] ? `U` : `never`
1010
11+
## Type Parameters
12+
13+
**T**
14+
15+
The type to get the union from
16+
1117
## Since
1218

1319
0.0.1
@@ -18,9 +24,3 @@
1824
type Result = UnionFromTuple<['foo', 'bar', 1]>
1925
// Result = 'foo' | 'bar' | 1
2026
```
21-
22-
## Type Parameters
23-
24-
• **T**
25-
26-
The type to get the union from

packages/tools/docs/type-aliases/UnionToIntersection.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@
88

99
> **UnionToIntersection**\<`U`\>: `U` *extends* `unknown` ? (`k`) => `void` : `never` *extends* (`k`) => `void` ? `I` : `never`
1010
11+
## Type Parameters
12+
13+
**U**
14+
1115
## Since
1216

1317
0.0.1
@@ -22,7 +26,3 @@ The type to get the intersection from
2226
type Result = IntersectionFromTuple<['foo', 'bar', 1]>
2327
// Result = 'foo' & 'bar' & 1
2428
```
25-
26-
## Type Parameters
27-
28-
• **U**

pnpm-lock.yaml

Lines changed: 46 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)