Skip to content

Commit efcaa40

Browse files
committed
update all deps
1 parent f0e8268 commit efcaa40

File tree

32 files changed

+5745
-2723
lines changed

32 files changed

+5745
-2723
lines changed

epicshop/epic-me/package-lock.json

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

epicshop/epic-me/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,26 @@
2525
"isbot": "^5.1.31",
2626
"react": "^19.1.1",
2727
"react-dom": "^19.1.1",
28-
"react-router": "^7.9.2",
28+
"react-router": "^7.9.3",
2929
"zod": "^3.25.67"
3030
},
3131
"devDependencies": {
32-
"@cloudflare/vite-plugin": "^1.13.5",
32+
"@cloudflare/vite-plugin": "^1.13.8",
3333
"@epic-web/config": "^1.21.3",
34-
"@react-router/dev": "^7.9.2",
35-
"@tailwindcss/vite": "^4.1.13",
34+
"@react-router/dev": "^7.9.3",
35+
"@tailwindcss/vite": "^4.1.14",
3636
"@types/node": "^24",
37-
"@types/react": "^19.1.13",
38-
"@types/react-dom": "^19.1.9",
37+
"@types/react": "^19.1.17",
38+
"@types/react-dom": "^19.1.11",
3939
"eslint": "^9.36.0",
4040
"prettier": "^3.6.2",
4141
"prettier-plugin-tailwindcss": "^0.6.14",
42-
"tailwindcss": "^4.1.13",
43-
"typescript": "^5.9.2",
42+
"tailwindcss": "^4.1.14",
43+
"typescript": "^5.9.3",
4444
"vite": "^7.1.7",
4545
"vite-plugin-devtools-json": "^1.0.0",
4646
"vite-tsconfig-paths": "^5.1.4",
47-
"wrangler": "^4.40.0"
47+
"wrangler": "^4.40.3"
4848
},
4949
"prettier": "@epic-web/config/prettier"
5050
}

epicshop/epic-me/types/worker-configuration.d.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/* eslint-disable */
22
// Generated by Wrangler by running `wrangler types ./types/worker-configuration.d.ts` (hash: 053bd7d071af349c29594e4c08b5d359)
3-
// Runtime types generated with workerd@1.20250924.0 2025-04-04
3+
// Runtime types generated with workerd@1.20250927.0 2025-04-04
44
declare namespace Cloudflare {
55
interface GlobalProps {
66
mainModule: typeof import("../workers/app");
@@ -7440,6 +7440,19 @@ interface MediaError extends Error {
74407440
readonly message: string;
74417441
readonly stack?: string;
74427442
}
7443+
declare module 'cloudflare:node' {
7444+
interface NodeStyleServer {
7445+
listen(...args: unknown[]): this;
7446+
address(): {
7447+
port?: number | null | undefined;
7448+
};
7449+
}
7450+
export function httpServerHandler(port: number): ExportedHandler;
7451+
export function httpServerHandler(options: {
7452+
port: number;
7453+
}): ExportedHandler;
7454+
export function httpServerHandler(server: NodeStyleServer): ExportedHandler;
7455+
}
74437456
type Params<P extends string = any> = Record<P, string | string[]>;
74447457
type EventContext<Env, P extends string, Data> = {
74457458
request: Request<unknown, IncomingRequestCfProperties<unknown>>;
@@ -7697,19 +7710,6 @@ declare namespace Cloudflare {
76977710
& (K extends GlobalProp<"durableNamespaces", never> ? MainModule[K] extends new (...args: any[]) => infer DoInstance ? DoInstance extends Rpc.DurableObjectBranded ? DurableObjectNamespace<DoInstance> : DurableObjectNamespace<undefined> : DurableObjectNamespace<undefined> : {});
76987711
};
76997712
}
7700-
declare module 'cloudflare:node' {
7701-
export interface DefaultHandler {
7702-
fetch?(request: Request): Response | Promise<Response>;
7703-
tail?(events: TraceItem[]): void | Promise<void>;
7704-
trace?(traces: TraceItem[]): void | Promise<void>;
7705-
scheduled?(controller: ScheduledController): void | Promise<void>;
7706-
queue?(batch: MessageBatch<unknown>): void | Promise<void>;
7707-
test?(controller: TestController): void | Promise<void>;
7708-
}
7709-
export function httpServerHandler(options: {
7710-
port: number;
7711-
}, handlers?: Omit<DefaultHandler, 'fetch'>): DefaultHandler;
7712-
}
77137713
declare namespace CloudflareWorkersModule {
77147714
export type RpcStub<T extends Rpc.Stubable> = Rpc.Stub<T>;
77157715
export const RpcStub: {

0 commit comments

Comments
 (0)