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.
- package/dist/cli.js +1463 -2306
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +23 -24
- package/templates/analog/c3.ts +4 -4
- package/templates/angular/c3.ts +3 -2
- package/templates/astro/c3.ts +3 -3
- package/templates/common/js/package.json +1 -1
- package/templates/common/ts/package.json +2 -2
- package/templates/common/ts/src/ab-test.ts +2 -2
- package/templates/common/ts/src/index.ts +2 -2
- package/templates/common/ts/src/proxy.ts +2 -2
- package/templates/common/ts/src/redirect.ts +2 -2
- package/templates/common/ts/tsconfig.json +1 -1
- package/templates/hello-world/js/package.json +3 -3
- package/templates/hello-world/js/vitest.config.js +8 -8
- package/templates/hello-world/ts/package.json +4 -4
- package/templates/hello-world/ts/src/index.ts +2 -2
- package/templates/hello-world/ts/test/tsconfig.json +6 -9
- package/templates/hello-world/ts/tsconfig.json +3 -2
- package/templates/hello-world/ts/vitest.config.mts +11 -0
- package/templates/hello-world-durable-object/c3.ts +1 -1
- package/templates/hello-world-durable-object/js/package.json +1 -1
- package/templates/hello-world-durable-object/js/src/index.js +1 -1
- package/templates/hello-world-durable-object/js/wrangler.toml +1 -1
- package/templates/hello-world-durable-object/ts/package.json +2 -2
- package/templates/hello-world-durable-object/ts/src/index.ts +3 -3
- package/templates/hello-world-durable-object/ts/tsconfig.json +1 -1
- package/templates/hello-world-durable-object/ts/wrangler.toml +2 -2
- package/templates/hello-world-python/py/package.json +1 -1
- package/templates/hono/c3.ts +1 -1
- package/templates/next/README.md +1 -1
- package/templates/next/c3.ts +9 -7
- package/templates/nuxt/c3.ts +8 -9
- package/templates/openapi/ts/README.md +3 -3
- package/templates/openapi/ts/package.json +5 -3
- package/templates/openapi/ts/src/endpoints/taskCreate.ts +26 -16
- package/templates/openapi/ts/src/endpoints/taskDelete.ts +20 -19
- package/templates/openapi/ts/src/endpoints/taskFetch.ts +30 -23
- package/templates/openapi/ts/src/endpoints/taskList.ts +27 -24
- package/templates/openapi/ts/src/index.ts +14 -20
- package/templates/openapi/ts/src/types.ts +9 -8
- package/templates/pre-existing/c3.ts +5 -5
- package/templates/pre-existing/js/package.json +1 -1
- package/templates/queues/js/package.json +1 -1
- package/templates/queues/ts/package.json +2 -2
- package/templates/queues/ts/src/index.ts +3 -3
- package/templates/queues/ts/tsconfig.json +1 -1
- package/templates/qwik/c3.ts +3 -3
- package/templates/scheduled/js/package.json +3 -3
- package/templates/scheduled/js/src/index.js +8 -1
- package/templates/scheduled/ts/package.json +4 -4
- package/templates/scheduled/ts/src/index.ts +3 -3
- package/templates/scheduled/ts/tsconfig.json +1 -1
- package/templates/solid/c3.ts +11 -9
- package/templates/svelte/c3.ts +6 -6
- package/templates/hello-world/ts/vitest.config.ts +0 -11
|
@@ -1,38 +1,39 @@
|
|
|
1
|
-
import {
|
|
2
|
-
|
|
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
|
-
|
|
6
|
+
schema = {
|
|
10
7
|
tags: ["Tasks"],
|
|
11
8
|
summary: "Delete a Task",
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
-
|
|
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
|
-
|
|
6
|
+
schema = {
|
|
10
7
|
tags: ["Tasks"],
|
|
11
8
|
summary: "Get a single Task by slug",
|
|
12
|
-
|
|
13
|
-
|
|
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
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
30
|
-
|
|
31
|
-
|
|
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
|
-
|
|
39
|
-
|
|
40
|
-
|
|
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
|
-
|
|
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
|
-
|
|
6
|
+
schema = {
|
|
10
7
|
tags: ["Tasks"],
|
|
11
8
|
summary: "List Tasks",
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
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
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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
|
-
|
|
37
|
-
|
|
38
|
-
|
|
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 {
|
|
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
|
-
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
28
|
-
|
|
29
|
-
};
|
|
22
|
+
// Export the Hono app
|
|
23
|
+
export default app;
|
|
@@ -1,9 +1,10 @@
|
|
|
1
|
-
import { DateTime, Str } from "
|
|
1
|
+
import { DateTime, Str } from "chanfana";
|
|
2
|
+
import { z } from "zod";
|
|
2
3
|
|
|
3
|
-
export const Task = {
|
|
4
|
-
name:
|
|
5
|
-
slug:
|
|
6
|
-
description:
|
|
7
|
-
completed:
|
|
8
|
-
due_date:
|
|
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
|
|
|
@@ -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
|
|
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
|
|
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' */
|
package/templates/qwik/c3.ts
CHANGED
|
@@ -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.
|
|
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
|
-
* -
|
|
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.
|
|
13
|
-
"wrangler": "^3.
|
|
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
|
-
* -
|
|
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
|
|
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' */
|
package/templates/solid/c3.ts
CHANGED
|
@@ -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
|
-
|
|
36
|
-
|
|
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
|
},
|
package/templates/svelte/c3.ts
CHANGED
|
@@ -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);
|