create-cloudflare 0.0.0-e57758f8 → 0.0.0-e5afae0f

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (56) hide show
  1. package/dist/cli.js +1463 -2306
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +23 -24
  4. package/templates/analog/c3.ts +4 -4
  5. package/templates/angular/c3.ts +3 -2
  6. package/templates/astro/c3.ts +3 -3
  7. package/templates/common/js/package.json +1 -1
  8. package/templates/common/ts/package.json +2 -2
  9. package/templates/common/ts/src/ab-test.ts +2 -2
  10. package/templates/common/ts/src/index.ts +2 -2
  11. package/templates/common/ts/src/proxy.ts +2 -2
  12. package/templates/common/ts/src/redirect.ts +2 -2
  13. package/templates/common/ts/tsconfig.json +1 -1
  14. package/templates/hello-world/js/package.json +3 -3
  15. package/templates/hello-world/js/vitest.config.js +8 -8
  16. package/templates/hello-world/ts/package.json +4 -4
  17. package/templates/hello-world/ts/src/index.ts +2 -2
  18. package/templates/hello-world/ts/test/tsconfig.json +6 -9
  19. package/templates/hello-world/ts/tsconfig.json +3 -2
  20. package/templates/hello-world/ts/vitest.config.mts +11 -0
  21. package/templates/hello-world-durable-object/c3.ts +1 -1
  22. package/templates/hello-world-durable-object/js/package.json +1 -1
  23. package/templates/hello-world-durable-object/js/src/index.js +1 -1
  24. package/templates/hello-world-durable-object/js/wrangler.toml +1 -1
  25. package/templates/hello-world-durable-object/ts/package.json +2 -2
  26. package/templates/hello-world-durable-object/ts/src/index.ts +3 -3
  27. package/templates/hello-world-durable-object/ts/tsconfig.json +1 -1
  28. package/templates/hello-world-durable-object/ts/wrangler.toml +2 -2
  29. package/templates/hello-world-python/py/package.json +1 -1
  30. package/templates/hono/c3.ts +1 -1
  31. package/templates/next/README.md +1 -1
  32. package/templates/next/c3.ts +9 -7
  33. package/templates/nuxt/c3.ts +8 -9
  34. package/templates/openapi/ts/README.md +3 -3
  35. package/templates/openapi/ts/package.json +5 -3
  36. package/templates/openapi/ts/src/endpoints/taskCreate.ts +26 -16
  37. package/templates/openapi/ts/src/endpoints/taskDelete.ts +20 -19
  38. package/templates/openapi/ts/src/endpoints/taskFetch.ts +30 -23
  39. package/templates/openapi/ts/src/endpoints/taskList.ts +27 -24
  40. package/templates/openapi/ts/src/index.ts +14 -20
  41. package/templates/openapi/ts/src/types.ts +9 -8
  42. package/templates/pre-existing/c3.ts +5 -5
  43. package/templates/pre-existing/js/package.json +1 -1
  44. package/templates/queues/js/package.json +1 -1
  45. package/templates/queues/ts/package.json +2 -2
  46. package/templates/queues/ts/src/index.ts +3 -3
  47. package/templates/queues/ts/tsconfig.json +1 -1
  48. package/templates/qwik/c3.ts +3 -3
  49. package/templates/scheduled/js/package.json +3 -3
  50. package/templates/scheduled/js/src/index.js +8 -1
  51. package/templates/scheduled/ts/package.json +4 -4
  52. package/templates/scheduled/ts/src/index.ts +3 -3
  53. package/templates/scheduled/ts/tsconfig.json +1 -1
  54. package/templates/solid/c3.ts +11 -9
  55. package/templates/svelte/c3.ts +6 -6
  56. package/templates/hello-world/ts/vitest.config.ts +0 -11
@@ -1,38 +1,39 @@
1
- import {
2
- OpenAPIRoute,
3
- OpenAPIRouteSchema,
4
- Path,
5
- } from "@cloudflare/itty-router-openapi";
1
+ import { Bool, OpenAPIRoute, Str } from "chanfana";
2
+ import { z } from "zod";
6
3
  import { Task } from "../types";
7
4
 
8
5
  export class TaskDelete extends OpenAPIRoute {
9
- static schema: OpenAPIRouteSchema = {
6
+ schema = {
10
7
  tags: ["Tasks"],
11
8
  summary: "Delete a Task",
12
- parameters: {
13
- taskSlug: Path(String, {
14
- description: "Task slug",
9
+ request: {
10
+ params: z.object({
11
+ taskSlug: Str({ description: "Task slug" }),
15
12
  }),
16
13
  },
17
14
  responses: {
18
15
  "200": {
19
16
  description: "Returns if the task was deleted successfully",
20
- schema: {
21
- success: Boolean,
22
- result: {
23
- task: Task,
17
+ content: {
18
+ "application/json": {
19
+ schema: z.object({
20
+ series: z.object({
21
+ success: Bool(),
22
+ result: z.object({
23
+ task: Task,
24
+ }),
25
+ }),
26
+ }),
24
27
  },
25
28
  },
26
29
  },
27
30
  },
28
31
  };
29
32
 
30
- async handle(
31
- request: Request,
32
- env: any,
33
- context: any,
34
- data: Record<string, any>
35
- ) {
33
+ async handle(c) {
34
+ // Get validated data
35
+ const data = await this.getValidatedData<typeof this.schema>();
36
+
36
37
  // Retrieve the validated slug
37
38
  const { taskSlug } = data.params;
38
39
 
@@ -1,45 +1,52 @@
1
- import {
2
- OpenAPIRoute,
3
- OpenAPIRouteSchema,
4
- Path,
5
- } from "@cloudflare/itty-router-openapi";
1
+ import { Bool, OpenAPIRoute, Str } from "chanfana";
2
+ import { z } from "zod";
6
3
  import { Task } from "../types";
7
4
 
8
5
  export class TaskFetch extends OpenAPIRoute {
9
- static schema: OpenAPIRouteSchema = {
6
+ schema = {
10
7
  tags: ["Tasks"],
11
8
  summary: "Get a single Task by slug",
12
- parameters: {
13
- taskSlug: Path(String, {
14
- description: "Task slug",
9
+ request: {
10
+ params: z.object({
11
+ taskSlug: Str({ description: "Task slug" }),
15
12
  }),
16
13
  },
17
14
  responses: {
18
15
  "200": {
19
16
  description: "Returns a single task if found",
20
- schema: {
21
- success: Boolean,
22
- result: {
23
- task: Task,
17
+ content: {
18
+ "application/json": {
19
+ schema: z.object({
20
+ series: z.object({
21
+ success: Bool(),
22
+ result: z.object({
23
+ task: Task,
24
+ }),
25
+ }),
26
+ }),
24
27
  },
25
28
  },
26
29
  },
27
30
  "404": {
28
31
  description: "Task not found",
29
- schema: {
30
- success: Boolean,
31
- error: String,
32
+ content: {
33
+ "application/json": {
34
+ schema: z.object({
35
+ series: z.object({
36
+ success: Bool(),
37
+ error: Str(),
38
+ }),
39
+ }),
40
+ },
32
41
  },
33
42
  },
34
43
  },
35
44
  };
36
45
 
37
- async handle(
38
- request: Request,
39
- env: any,
40
- context: any,
41
- data: Record<string, any>
42
- ) {
46
+ async handle(c) {
47
+ // Get validated data
48
+ const data = await this.getValidatedData<typeof this.schema>();
49
+
43
50
  // Retrieve the validated slug
44
51
  const { taskSlug } = data.params;
45
52
 
@@ -56,7 +63,7 @@ export class TaskFetch extends OpenAPIRoute {
56
63
  },
57
64
  {
58
65
  status: 404,
59
- }
66
+ },
60
67
  );
61
68
  }
62
69
 
@@ -1,43 +1,46 @@
1
- import {
2
- OpenAPIRoute,
3
- OpenAPIRouteSchema,
4
- Query,
5
- } from "@cloudflare/itty-router-openapi";
1
+ import { Bool, Num, OpenAPIRoute } from "chanfana";
2
+ import { z } from "zod";
6
3
  import { Task } from "../types";
7
4
 
8
5
  export class TaskList extends OpenAPIRoute {
9
- static schema: OpenAPIRouteSchema = {
6
+ schema = {
10
7
  tags: ["Tasks"],
11
8
  summary: "List Tasks",
12
- parameters: {
13
- page: Query(Number, {
14
- description: "Page number",
15
- default: 0,
16
- }),
17
- isCompleted: Query(Boolean, {
18
- description: "Filter by completed flag",
19
- required: false,
9
+ request: {
10
+ query: z.object({
11
+ page: Num({
12
+ description: "Page number",
13
+ default: 0,
14
+ }),
15
+ isCompleted: Bool({
16
+ description: "Filter by completed flag",
17
+ required: false,
18
+ }),
20
19
  }),
21
20
  },
22
21
  responses: {
23
22
  "200": {
24
23
  description: "Returns a list of tasks",
25
- schema: {
26
- success: Boolean,
27
- result: {
28
- tasks: [Task],
24
+ content: {
25
+ "application/json": {
26
+ schema: z.object({
27
+ series: z.object({
28
+ success: Bool(),
29
+ result: z.object({
30
+ tasks: Task.array(),
31
+ }),
32
+ }),
33
+ }),
29
34
  },
30
35
  },
31
36
  },
32
37
  },
33
38
  };
34
39
 
35
- async handle(
36
- request: Request,
37
- env: any,
38
- context: any,
39
- data: Record<string, any>
40
- ) {
40
+ async handle(c) {
41
+ // Get validated data
42
+ const data = await this.getValidatedData<typeof this.schema>();
43
+
41
44
  // Retrieve the validated parameters
42
45
  const { page, isCompleted } = data.query;
43
46
 
@@ -1,29 +1,23 @@
1
- import { OpenAPIRouter } from "@cloudflare/itty-router-openapi";
1
+ import { fromHono } from "chanfana";
2
+ import { Hono } from "hono";
2
3
  import { TaskCreate } from "./endpoints/taskCreate";
3
4
  import { TaskDelete } from "./endpoints/taskDelete";
4
5
  import { TaskFetch } from "./endpoints/taskFetch";
5
6
  import { TaskList } from "./endpoints/taskList";
6
7
 
7
- export const router = OpenAPIRouter({
8
+ // Start a Hono app
9
+ const app = new Hono();
10
+
11
+ // Setup OpenAPI registry
12
+ const openapi = fromHono(app, {
8
13
  docs_url: "/",
9
14
  });
10
15
 
11
- router.get("/api/tasks/", TaskList);
12
- router.post("/api/tasks/", TaskCreate);
13
- router.get("/api/tasks/:taskSlug/", TaskFetch);
14
- router.delete("/api/tasks/:taskSlug/", TaskDelete);
15
-
16
- // 404 for everything else
17
- router.all("*", () =>
18
- Response.json(
19
- {
20
- success: false,
21
- error: "Route not found",
22
- },
23
- { status: 404 }
24
- )
25
- );
16
+ // Register OpenAPI endpoints
17
+ openapi.get("/api/tasks", TaskList);
18
+ openapi.post("/api/tasks", TaskCreate);
19
+ openapi.get("/api/tasks/:taskSlug", TaskFetch);
20
+ openapi.delete("/api/tasks/:taskSlug", TaskDelete);
26
21
 
27
- export default {
28
- fetch: router.handle,
29
- };
22
+ // Export the Hono app
23
+ export default app;
@@ -1,9 +1,10 @@
1
- import { DateTime, Str } from "@cloudflare/itty-router-openapi";
1
+ import { DateTime, Str } from "chanfana";
2
+ import { z } from "zod";
2
3
 
3
- export const Task = {
4
- name: new Str({ example: "lorem" }),
5
- slug: String,
6
- description: new Str({ required: false }),
7
- completed: Boolean,
8
- due_date: new DateTime(),
9
- };
4
+ export const Task = z.object({
5
+ name: Str({ example: "lorem" }),
6
+ slug: Str(),
7
+ description: Str({ required: false }),
8
+ completed: z.boolean().default(false),
9
+ due_date: DateTime(),
10
+ });
@@ -23,7 +23,7 @@ export async function copyExistingWorkerFiles(ctx: C3Context) {
23
23
  "Please specify the name of the existing worker in this account?",
24
24
  label: "worker",
25
25
  defaultValue: ctx.project.name,
26
- }
26
+ },
27
27
  );
28
28
  }
29
29
 
@@ -46,22 +46,22 @@ export async function copyExistingWorkerFiles(ctx: C3Context) {
46
46
  env: { CLOUDFLARE_ACCOUNT_ID: ctx.account?.id },
47
47
  startText: "Downloading existing worker files",
48
48
  doneText: `${brandColor("downloaded")} ${dim(
49
- `existing "${ctx.args.existingScript}" worker files`
49
+ `existing "${ctx.args.existingScript}" worker files`,
50
50
  )}`,
51
- }
51
+ },
52
52
  );
53
53
 
54
54
  // copy src/* files from the downloaded worker
55
55
  await cp(
56
56
  join(tempdir, ctx.args.existingScript, "src"),
57
57
  join(ctx.project.path, "src"),
58
- { recursive: true }
58
+ { recursive: true },
59
59
  );
60
60
 
61
61
  // copy wrangler.toml from the downloaded worker
62
62
  await cp(
63
63
  join(tempdir, ctx.args.existingScript, "wrangler.toml"),
64
- join(ctx.project.path, "wrangler.toml")
64
+ join(ctx.project.path, "wrangler.toml"),
65
65
  );
66
66
  }
67
67
 
@@ -8,6 +8,6 @@
8
8
  "start": "wrangler dev"
9
9
  },
10
10
  "devDependencies": {
11
- "wrangler": "^3.0.0"
11
+ "wrangler": "^3.60.3"
12
12
  }
13
13
  }
@@ -8,6 +8,6 @@
8
8
  "start": "wrangler dev"
9
9
  },
10
10
  "devDependencies": {
11
- "wrangler": "^3.0.0"
11
+ "wrangler": "^3.60.3"
12
12
  }
13
13
  }
@@ -9,7 +9,7 @@
9
9
  "cf-typegen": "wrangler types"
10
10
  },
11
11
  "devDependencies": {
12
- "typescript": "^5.0.4",
13
- "wrangler": "^3.0.0"
12
+ "typescript": "^5.5.2",
13
+ "wrangler": "^3.60.3"
14
14
  }
15
15
  }
@@ -18,7 +18,7 @@ export default {
18
18
  // Our fetch handler is invoked on a HTTP request: we can send a message to a queue
19
19
  // during (or after) a request.
20
20
  // https://developers.cloudflare.com/queues/platform/javascript-apis/#producer
21
- async fetch(req: Request, env: Env, ctx: ExecutionContext): Promise<Response> {
21
+ async fetch(req, env, ctx): Promise<Response> {
22
22
  // To send a message on a queue, we need to create the queue first
23
23
  // https://developers.cloudflare.com/queues/get-started/#3-create-a-queue
24
24
  await env.MY_QUEUE.send({
@@ -30,7 +30,7 @@ export default {
30
30
  },
31
31
  // The queue handler is invoked when a batch of messages is ready to be delivered
32
32
  // https://developers.cloudflare.com/queues/platform/javascript-apis/#messagebatch
33
- async queue(batch: MessageBatch<Error>, env: Env): Promise<void> {
33
+ async queue(batch, env): Promise<void> {
34
34
  // A queue consumer can make requests to other endpoints on the Internet,
35
35
  // write to R2 object storage, query a D1 Database, and much more.
36
36
  for (let message of batch.messages) {
@@ -38,4 +38,4 @@ export default {
38
38
  console.log(`message ${message.id} processed: ${JSON.stringify(message.body)}`);
39
39
  }
40
40
  },
41
- };
41
+ } satisfies ExportedHandler<Env, Error>;
@@ -13,7 +13,7 @@
13
13
  /* Language and Environment */
14
14
  "target": "es2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
15
15
  "lib": ["es2021"] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
16
- "jsx": "react" /* Specify what JSX code is generated. */,
16
+ "jsx": "react-jsx" /* Specify what JSX code is generated. */,
17
17
  // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
18
18
  // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
19
19
  // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */
@@ -43,7 +43,7 @@ const addBindingsProxy = (ctx: C3Context) => {
43
43
  // Insert the env declaration after the last import (but before the rest of the body)
44
44
  visitProgram: function (n) {
45
45
  const lastImportIndex = n.node.body.findLastIndex(
46
- (t) => t.type === "ImportDeclaration"
46
+ (t) => t.type === "ImportDeclaration",
47
47
  );
48
48
  const lastImport = n.get("body", lastImportIndex);
49
49
  lastImport.insertAfter(...snippets.getPlatformProxyTs);
@@ -109,8 +109,8 @@ const populateCloudflareEnv = () => {
109
109
  ].map(([varName, type]) =>
110
110
  b.tsPropertySignature(
111
111
  b.identifier(varName),
112
- b.tsTypeAnnotation(b.tsTypeReference(b.identifier(type)))
113
- )
112
+ b.tsTypeAnnotation(b.tsTypeReference(b.identifier(type))),
113
+ ),
114
114
  );
115
115
 
116
116
  n.node.body.body = newBody;
@@ -4,10 +4,10 @@
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "deploy": "wrangler deploy",
7
- "dev": "wrangler dev",
8
- "start": "wrangler dev"
7
+ "dev": "wrangler dev --test-scheduled",
8
+ "start": "wrangler dev --test-scheduled"
9
9
  },
10
10
  "devDependencies": {
11
- "wrangler": "^3.0.0"
11
+ "wrangler": "^3.60.3"
12
12
  }
13
13
  }
@@ -6,13 +6,20 @@
6
6
  * https://developers.cloudflare.com/workers/platform/triggers/cron-triggers/
7
7
  *
8
8
  * - Run `npm run dev` in your terminal to start a development server
9
- * - Open a browser tab at http://localhost:8787/ to see your worker in action
9
+ * - Run `curl "http://localhost:8787/__scheduled?cron=*+*+*+*+*"` to see your worker in action
10
10
  * - Run `npm run deploy` to publish your worker
11
11
  *
12
12
  * Learn more at https://developers.cloudflare.com/workers/
13
13
  */
14
14
 
15
15
  export default {
16
+ async fetch(req) {
17
+ const url = new URL(req.url)
18
+ url.pathname = "/__scheduled";
19
+ url.searchParams.append("cron", "* * * * *");
20
+ return new Response(`To test the scheduled handler, ensure you have used the "--test-scheduled" then try running "curl ${url.href}".`);
21
+ },
22
+
16
23
  // The scheduled handler is invoked at the interval set in our wrangler.toml's
17
24
  // [[triggers]] configuration.
18
25
  async scheduled(event, env, ctx) {
@@ -4,12 +4,12 @@
4
4
  "private": true,
5
5
  "scripts": {
6
6
  "deploy": "wrangler deploy",
7
- "dev": "wrangler dev",
8
- "start": "wrangler dev",
7
+ "dev": "wrangler dev --test-scheduled",
8
+ "start": "wrangler dev --test-scheduled",
9
9
  "cf-typegen": "wrangler types"
10
10
  },
11
11
  "devDependencies": {
12
- "typescript": "^5.0.4",
13
- "wrangler": "^3.0.0"
12
+ "typescript": "^5.5.2",
13
+ "wrangler": "^3.60.3"
14
14
  }
15
15
  }
@@ -6,7 +6,7 @@
6
6
  * https://developers.cloudflare.com/workers/platform/triggers/cron-triggers/
7
7
  *
8
8
  * - Run `npm run dev` in your terminal to start a development server
9
- * - Open a browser tab at http://localhost:8787/ to see your worker in action
9
+ * - Run `curl "http://localhost:8787/__scheduled?cron=*+*+*+*+*"` to see your worker in action
10
10
  * - Run `npm run deploy` to publish your worker
11
11
  *
12
12
  * Bind resources to your worker in `wrangler.toml`. After adding bindings, a type definition for the
@@ -18,7 +18,7 @@
18
18
  export default {
19
19
  // The scheduled handler is invoked at the interval set in our wrangler.toml's
20
20
  // [[triggers]] configuration.
21
- async scheduled(event: ScheduledEvent, env: Env, ctx: ExecutionContext): Promise<void> {
21
+ async scheduled(event, env, ctx): Promise<void> {
22
22
  // A Cron Trigger can make requests to other endpoints on the Internet,
23
23
  // publish to a Queue, query a D1 Database, and much more.
24
24
  //
@@ -30,4 +30,4 @@ export default {
30
30
  // In this template, we'll just log the result:
31
31
  console.log(`trigger fired at ${event.cron}: ${wasSuccessful}`);
32
32
  },
33
- };
33
+ } satisfies ExportedHandler<Env>;
@@ -13,7 +13,7 @@
13
13
  /* Language and Environment */
14
14
  "target": "es2021" /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */,
15
15
  "lib": ["es2021"] /* Specify a set of bundled library declaration files that describe the target runtime environment. */,
16
- "jsx": "react" /* Specify what JSX code is generated. */,
16
+ "jsx": "react-jsx" /* Specify what JSX code is generated. */,
17
17
  // "experimentalDecorators": true, /* Enable experimental support for TC39 stage 2 draft decorators. */
18
18
  // "emitDecoratorMetadata": true, /* Emit design-type metadata for decorated declarations in source files. */
19
19
  // "jsxFactory": "", /* Specify the JSX factory function used when targeting React JSX emit, e.g. 'React.createElement' or 'h' */
@@ -1,7 +1,7 @@
1
1
  import { logRaw, updateStatus } from "@cloudflare/cli";
2
2
  import { blue } from "@cloudflare/cli/colors";
3
3
  import { runFrameworkGenerator } from "frameworks/index";
4
- import { transformFile } from "helpers/codemod";
4
+ import { mergeObjectProperties, transformFile } from "helpers/codemod";
5
5
  import { usesTypescript } from "helpers/files";
6
6
  import { detectPackageManager } from "helpers/packageManagers";
7
7
  import * as recast from "recast";
@@ -32,28 +32,30 @@ const configure = async (ctx: C3Context) => {
32
32
  }
33
33
 
34
34
  const b = recast.types.builders;
35
- n.node.arguments = [
36
- b.objectExpression([
35
+
36
+ mergeObjectProperties(
37
+ n.node.arguments[0] as recast.types.namedTypes.ObjectExpression,
38
+ [
37
39
  b.objectProperty(
38
40
  b.identifier("server"),
39
41
  b.objectExpression([
40
42
  b.objectProperty(
41
43
  b.identifier("preset"),
42
- b.stringLiteral("cloudflare-pages")
44
+ b.stringLiteral("cloudflare-pages"),
43
45
  ),
44
46
  b.objectProperty(
45
47
  b.identifier("rollupConfig"),
46
48
  b.objectExpression([
47
49
  b.objectProperty(
48
50
  b.identifier("external"),
49
- b.arrayExpression([b.stringLiteral("node:async_hooks")])
51
+ b.arrayExpression([b.stringLiteral("node:async_hooks")]),
50
52
  ),
51
- ])
53
+ ]),
52
54
  ),
53
- ])
55
+ ]),
54
56
  ),
55
- ]),
56
- ];
57
+ ],
58
+ );
57
59
 
58
60
  return false;
59
61
  },
@@ -69,21 +69,21 @@ const updateTypeDefinitions = (ctx: C3Context) => {
69
69
  b.tsInterfaceBody([
70
70
  b.tsPropertySignature(
71
71
  b.identifier("env"),
72
- b.tsTypeAnnotation(b.tsTypeReference(b.identifier("Env")))
72
+ b.tsTypeAnnotation(b.tsTypeReference(b.identifier("Env"))),
73
73
  ),
74
74
  b.tsPropertySignature(
75
75
  b.identifier("cf"),
76
76
  b.tsTypeAnnotation(
77
- b.tsTypeReference(b.identifier("CfProperties"))
78
- )
77
+ b.tsTypeReference(b.identifier("CfProperties")),
78
+ ),
79
79
  ),
80
80
  b.tsPropertySignature(
81
81
  b.identifier("ctx"),
82
82
  b.tsTypeAnnotation(
83
- b.tsTypeReference(b.identifier("ExecutionContext"))
84
- )
83
+ b.tsTypeReference(b.identifier("ExecutionContext")),
84
+ ),
85
85
  ),
86
- ])
86
+ ]),
87
87
  );
88
88
 
89
89
  moduleBlock.body.unshift(platformInterface);
@@ -1,11 +0,0 @@
1
- import { defineWorkersConfig } from "@cloudflare/vitest-pool-workers/config";
2
-
3
- export default defineWorkersConfig({
4
- test: {
5
- poolOptions: {
6
- workers: {
7
- wrangler: { configPath: "./wrangler.toml" },
8
- },
9
- },
10
- },
11
- });