File tree Expand file tree Collapse file tree 9 files changed +173
-676
lines changed
openapi-typescript-helpers Expand file tree Collapse file tree 9 files changed +173
-676
lines changed Original file line number Diff line number Diff line change 27
27
"@astrojs/sitemap" : " ^2.0.2" ,
28
28
"@cobalt-ui/cli" : " ^1.4.1" ,
29
29
"@cobalt-ui/plugin-sass" : " ^1.2.3" ,
30
- "@types/node" : " ^20.8.7 " ,
30
+ "@types/node" : " ^20.10.4 " ,
31
31
"html-escaper" : " ^3.0.3" ,
32
- "typescript" : " ^5.2.2 " ,
32
+ "typescript" : " ^5.3.3 " ,
33
33
"vite-plugin-sass-dts" : " ^1.3.9"
34
34
}
35
35
}
Original file line number Diff line number Diff line change 12
12
"react-dom" : " 18.2.0"
13
13
},
14
14
"devDependencies" : {
15
- "@types/node" : " 20.8.7 " ,
15
+ "@types/node" : " 20.10.4 " ,
16
16
"@types/react" : " 18.2.20" ,
17
17
"@types/react-dom" : " 18.2.7" ,
18
18
"openapi-typescript" : " workspace:^" ,
19
- "typescript" : " 5.2.2 "
19
+ "typescript" : " 5.3.3 "
20
20
}
21
21
}
Original file line number Diff line number Diff line change 14
14
},
15
15
"devDependencies" : {
16
16
"@vitejs/plugin-react-swc" : " ^3.3.2" ,
17
- "typescript" : " ^5.2.2 " ,
18
- "vite" : " ^4.4.9 "
17
+ "typescript" : " ^5.3.3 " ,
18
+ "vite" : " ^5.0.8 "
19
19
}
20
20
}
Original file line number Diff line number Diff line change 17
17
"svelte" : " ^4.2.0" ,
18
18
"svelte-check" : " ^3.5.1" ,
19
19
"tslib" : " ^2.6.2" ,
20
- "typescript" : " ^5.2.2 " ,
21
- "vite" : " ^4.4.9 "
20
+ "typescript" : " ^5.3.3 " ,
21
+ "vite" : " ^5.0.8 "
22
22
}
23
23
}
Original file line number Diff line number Diff line change 62
62
"version" : " pnpm run prepare && pnpm run build"
63
63
},
64
64
"dependencies" : {
65
- "openapi-typescript-helpers" : " ^0.0.4 "
65
+ "openapi-typescript-helpers" : " ^0.0.6 "
66
66
},
67
67
"devDependencies" : {
68
- "axios" : " ^1.5.1 " ,
68
+ "axios" : " ^1.6.2 " ,
69
69
"del-cli" : " ^5.1.0" ,
70
- "esbuild" : " ^0.19.5 " ,
71
- "nanostores" : " ^0.9.4 " ,
70
+ "esbuild" : " ^0.19.9 " ,
71
+ "nanostores" : " ^0.9.5 " ,
72
72
"openapi-typescript" : " workspace:^" ,
73
73
"openapi-typescript-codegen" : " ^0.25.0" ,
74
74
"openapi-typescript-fetch" : " ^1.1.3" ,
75
75
"superagent" : " ^8.1.2" ,
76
- "typescript" : " ^5.2.2 " ,
76
+ "typescript" : " ^5.3.3 " ,
77
77
"vitest" : " ^0.34.6" ,
78
78
"vitest-fetch-mock" : " ^0.2.2"
79
79
}
Original file line number Diff line number Diff line change 33
33
"test" : " tsc --noEmit"
34
34
},
35
35
"devDependencies" : {
36
- "typescript" : " ^5.2.2 "
36
+ "typescript" : " ^5.3.3 "
37
37
}
38
38
}
Original file line number Diff line number Diff line change 59
59
},
60
60
"dependencies" : {
61
61
"ansi-colors" : " ^4.1.3" ,
62
- "fast-glob" : " ^3.3.1 " ,
62
+ "fast-glob" : " ^3.3.2 " ,
63
63
"js-yaml" : " ^4.1.0" ,
64
64
"supports-color" : " ^9.4.0" ,
65
- "undici" : " ^5.27 .2" ,
65
+ "undici" : " ^5.28 .2" ,
66
66
"yargs-parser" : " ^21.1.1"
67
67
},
68
68
"devDependencies" : {
69
- "@types/degit" : " ^2.8.5 " ,
70
- "@types/js-yaml" : " ^4.0.8 " ,
71
- "@types/node" : " ^20.8.7 " ,
69
+ "@types/degit" : " ^2.8.6 " ,
70
+ "@types/js-yaml" : " ^4.0.9 " ,
71
+ "@types/node" : " ^20.10.4 " ,
72
72
"degit" : " ^2.8.4" ,
73
73
"del-cli" : " ^5.1.0" ,
74
- "esbuild" : " ^0.19.5 " ,
74
+ "esbuild" : " ^0.19.9 " ,
75
75
"execa" : " ^7.2.0" ,
76
- "vite" : " ^4. 5.0" ,
77
- "vite-node" : " ^0.34.6 " ,
76
+ "vite" : " ^5.0.8 " ,
77
+ "vite-node" : " ^1.0.4 " ,
78
78
"vitest" : " ^0.34.6"
79
79
}
80
80
}
Original file line number Diff line number Diff line change @@ -316,7 +316,7 @@ export function isFilepath(url: string): boolean {
316
316
}
317
317
318
318
export function getDefaultFetch ( ) : Fetch {
319
- const globalFetch : Fetch | undefined = globalThis . fetch ;
319
+ const globalFetch : Fetch | undefined = globalThis . fetch as any ; // eslint-disable-line @typescript-eslint/no-explicit-any
320
320
if ( typeof globalFetch === "undefined" ) {
321
321
return unidiciFetch ;
322
322
}
You can’t perform that action at this time.
0 commit comments