Skip to content

Commit e125409

Browse files
committed
chore: upgrade packages
1 parent 240eaca commit e125409

File tree

9 files changed

+454
-68
lines changed

9 files changed

+454
-68
lines changed

packages/cli/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,19 @@
5353
"dependencies": {
5454
"@kubb/core": "workspace:*",
5555
"@kubb/fs": "workspace:*",
56-
"bundle-require": "^4.2.1",
56+
"bundle-require": "^5.0.0",
5757
"chokidar": "^3.6.0",
5858
"citty": "^0.1.6",
5959
"consola": "^3.2.3",
6060
"cosmiconfig": "^9.0.0",
61-
"esbuild": "^0.20.2",
62-
"execa": "^8.0.1",
61+
"esbuild": "^0.23.0",
62+
"execa": "^9.3.0",
6363
"js-runtime": "^0.0.8",
6464
"latest-version": "^9.0.0",
6565
"ora": "^8.0.1",
6666
"semver": "^7.6.2",
6767
"string-argv": "^0.3.2",
68-
"tinyrainbow": "^1.1.1"
68+
"tinyrainbow": "^1.2.0"
6969
},
7070
"devDependencies": {
7171
"@kubb/config-ts": "workspace:*",

packages/config-tsup/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"dependencies": {
3636
"@microsoft/api-extractor": "^7.47.0",
3737
"fast-glob": "^3.3.2",
38-
"tinyrainbow": "^1.1.1"
38+
"tinyrainbow": "^1.2.0"
3939
},
4040
"devDependencies": {
4141
"@kubb/config-ts": "workspace:*",

packages/core/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
"find-up": "^7.0.0",
9898
"natural-orderby": "^3.0.2",
9999
"p-queue": "^8.0.1",
100-
"remeda": "^2.3.0",
100+
"remeda": "^2.5.0",
101101
"seedrandom": "^3.0.5",
102102
"semver": "^7.6.2",
103103
"unraw": "^3.0.0"
@@ -112,7 +112,7 @@
112112
"consola": "^3.2.3",
113113
"ora": "^8.0.1",
114114
"prettier": "^3.3.2",
115-
"tinyrainbow": "^1.1.1",
115+
"tinyrainbow": "^1.2.0",
116116
"tsup": "^8.1.0",
117117
"typescript": "^5.5.3"
118118
},

packages/mocks/hellowWorld.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

packages/oas/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666
"oas-normalize": "^11.1.1",
6767
"openapi-format": "^1.20.0",
6868
"openapi-types": "^12.1.3",
69-
"remeda": "^2.3.0",
69+
"remeda": "^2.5.0",
7070
"swagger2openapi": "^7.0.8",
7171
"ts-toolbelt": "^9.6.0"
7272
},

packages/parser-ts/package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,8 @@
5959
"typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"
6060
},
6161
"dependencies": {
62-
"remeda": "^2.3.0",
62+
"remeda": "^2.5.0",
63+
"ts-morph": "^23.0.0",
6364
"typescript": "^5.5.3"
6465
},
6566
"devDependencies": {

packages/plugin-oas/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
"@kubb/oas": "workspace:*",
8383
"@kubb/react": "workspace:*",
8484
"@stoplight/yaml": "^4.3.0",
85-
"remeda": "^2.3.0"
85+
"remeda": "^2.5.0"
8686
},
8787
"devDependencies": {
8888
"@kubb/config-biome": "workspace:*",

packages/react/src/components/Function.tsx

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,10 @@ export function ArrowFunction({ name, export: canExport, async, generics, params
157157
</>
158158
)
159159
}
160-
160+
/**
161+
*
162+
* @deprecated
163+
*/
161164
type CallFunctionProps = {
162165
/**
163166
* Name of the caller.
@@ -166,6 +169,10 @@ type CallFunctionProps = {
166169
to: ReactElement<Props>
167170
}
168171

172+
/**
173+
*
174+
* @deprecated
175+
*/
169176
export function CallFunction({ name, to }: CallFunctionProps) {
170177
const { params, name: fnName, generics, async } = to.props
171178

@@ -192,11 +199,17 @@ export function CallFunction({ name, to }: CallFunctionProps) {
192199
</>
193200
)
194201
}
195-
202+
/**
203+
*
204+
* @deprecated
205+
*/
196206
type ReturnFunctionProps = {
197207
children: KubbNode
198208
}
199-
209+
/**
210+
*
211+
* @deprecated
212+
*/
200213
export function ReturnFunction({ children }: ReturnFunctionProps) {
201214
return (
202215
<Text indentSize={2}>
@@ -206,7 +219,15 @@ export function ReturnFunction({ children }: ReturnFunctionProps) {
206219
}
207220

208221
Function.Arrow = ArrowFunction
222+
/**
223+
*
224+
* @deprecated
225+
*/
209226
Function.Call = CallFunction
227+
/**
228+
*
229+
* @deprecated
230+
*/
210231
Function.Return = ReturnFunction
211232

212233
export const Fun = Function

0 commit comments

Comments
 (0)