create-cloudflare 0.0.0-ecdfabed0 → 0.0.0-ecef68635
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/README.md +1 -1
- package/dist/cli.js +48833 -47574
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +6 -4
- package/templates/analog/c3.ts +1 -0
- package/templates/angular/c3.ts +1 -0
- package/templates/astro/c3.ts +1 -0
- package/templates/common/js/wrangler.toml +6 -0
- package/templates/common/ts/wrangler.toml +6 -0
- package/templates/docusaurus/c3.ts +3 -1
- package/templates/gatsby/c3.ts +1 -0
- package/templates/hello-world/js/package.json +2 -2
- package/templates/hello-world/js/wrangler.toml +6 -0
- package/templates/hello-world/py/wrangler.toml +6 -0
- package/templates/hello-world/ts/package.json +2 -2
- package/templates/hello-world/ts/wrangler.toml +6 -0
- package/templates/hello-world-durable-object/js/wrangler.toml +6 -0
- package/templates/hello-world-durable-object/ts/src/index.ts +0 -21
- package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +3 -4
- package/templates/hello-world-durable-object/ts/wrangler.toml +6 -0
- package/templates/hono/c3.ts +1 -0
- package/templates/hono/templates/wrangler.toml +6 -0
- package/templates/next/c3.ts +7 -7
- package/templates/nuxt/c3.ts +1 -0
- package/templates/nuxt/templates/wrangler.toml +1 -0
- package/templates/openapi/ts/wrangler.toml +6 -0
- package/templates/pre-existing/c3.ts +2 -2
- package/templates/queues/js/wrangler.toml +6 -0
- package/templates/queues/ts/wrangler.toml +6 -0
- package/templates/qwik/c3.ts +4 -3
- package/templates/qwik/templates/wrangler.toml +1 -0
- package/templates/react/c3.ts +4 -2
- package/templates/remix/c3.ts +1 -0
- package/templates/scheduled/js/wrangler.toml +6 -0
- package/templates/scheduled/ts/wrangler.toml +6 -0
- package/templates/solid/c3.ts +1 -0
- package/templates/svelte/c3.ts +1 -0
- package/templates/vue/c3.ts +1 -0
- package/templates-experimental/angular/c3.ts +98 -0
- package/templates-experimental/angular/templates/server.ts +34 -0
- package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +32 -0
- package/templates-experimental/angular/templates/wrangler.toml +11 -0
- package/templates-experimental/astro/c3.ts +114 -0
- package/templates-experimental/astro/snippets/runtimeDeclaration.ts +5 -0
- package/templates-experimental/astro/templates/public/.assetsignore +4 -0
- package/templates-experimental/astro/templates/wrangler.toml +12 -0
- package/templates-experimental/docusaurus/c3.ts +32 -0
- package/templates-experimental/docusaurus/templates/wrangler.toml +10 -0
- package/templates-experimental/gatsby/c3.ts +53 -0
- package/templates-experimental/gatsby/templates/wrangler.toml +10 -0
- package/templates-experimental/hello-world-assets-only/c3.ts +15 -0
- package/templates-experimental/hello-world-assets-only/templates/package.json +13 -0
- package/templates-experimental/hello-world-assets-only/templates/public/index.html +11 -0
- package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +10 -0
- package/templates-experimental/hello-world-durable-object-with-assets/c3.ts +23 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/.editorconfig +12 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/.prettierrc +6 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/__dot__gitignore +172 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +13 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/public/index.html +19 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +69 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +24 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/.editorconfig +12 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/.prettierrc +6 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/__dot__gitignore +172 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +15 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/public/index.html +19 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +66 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/tsconfig.json +101 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/worker-configuration.d.ts +5 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +24 -0
- package/templates-experimental/hello-world-with-assets/c3.ts +22 -0
- package/templates-experimental/hello-world-with-assets/js/.editorconfig +12 -0
- package/templates-experimental/hello-world-with-assets/js/.prettierrc +6 -0
- package/templates-experimental/hello-world-with-assets/js/__dot__gitignore +172 -0
- package/templates-experimental/hello-world-with-assets/js/package.json +16 -0
- package/templates-experimental/hello-world-with-assets/js/public/index.html +31 -0
- package/templates-experimental/hello-world-with-assets/js/src/index.js +23 -0
- package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +41 -0
- package/templates-experimental/hello-world-with-assets/js/vitest.config.js +11 -0
- package/templates-experimental/hello-world-with-assets/js/wrangler.toml +12 -0
- package/templates-experimental/hello-world-with-assets/py/__dot__gitignore +68 -0
- package/templates-experimental/hello-world-with-assets/py/package.json +13 -0
- package/templates-experimental/hello-world-with-assets/py/public/index.html +31 -0
- package/templates-experimental/hello-world-with-assets/py/src/entry.py +9 -0
- package/templates-experimental/hello-world-with-assets/py/wrangler.toml +12 -0
- package/templates-experimental/hello-world-with-assets/ts/.editorconfig +12 -0
- package/templates-experimental/hello-world-with-assets/ts/.prettierrc +6 -0
- package/templates-experimental/hello-world-with-assets/ts/__dot__gitignore +172 -0
- package/templates-experimental/hello-world-with-assets/ts/package.json +18 -0
- package/templates-experimental/hello-world-with-assets/ts/public/index.html +31 -0
- package/templates-experimental/hello-world-with-assets/ts/src/index.ts +26 -0
- package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +41 -0
- package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +8 -0
- package/templates-experimental/hello-world-with-assets/ts/tsconfig.json +103 -0
- package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +11 -0
- package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +4 -0
- package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +12 -0
- package/templates-experimental/hono/c3.ts +43 -0
- package/templates-experimental/hono/templates/public/index.html +19 -0
- package/templates-experimental/hono/templates/src/index.ts +9 -0
- package/templates-experimental/hono/templates/worker-configuration.d.ts +4 -0
- package/templates-experimental/hono/templates/wrangler.toml +5 -0
- package/templates-experimental/next/c3.ts +52 -0
- package/templates-experimental/next/templates/__dot__gitignore +42 -0
- package/templates-experimental/next/templates/env.d.ts +5 -0
- package/templates-experimental/next/templates/wrangler.toml +12 -0
- package/templates-experimental/nuxt/c3.ts +135 -0
- package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +27 -0
- package/templates-experimental/nuxt/templates/env.d.ts +14 -0
- package/templates-experimental/nuxt/templates/worker-configuration.d.ts +4 -0
- package/templates-experimental/nuxt/templates/wrangler.toml +11 -0
- package/templates-experimental/qwik/c3.ts +153 -0
- package/templates-experimental/qwik/snippets/getPlatformProxy.ts +6 -0
- package/templates-experimental/qwik/templates/public/.assetsignore +4 -0
- package/templates-experimental/qwik/templates/worker-configuration.d.ts +4 -0
- package/templates-experimental/qwik/templates/wrangler.toml +12 -0
- package/templates-experimental/remix/c3.ts +77 -0
- package/templates-experimental/remix/templates/public/.assetsignore +4 -0
- package/templates-experimental/remix/templates/worker-configuration.d.ts +4 -0
- package/templates-experimental/remix/templates/wrangler.toml +11 -0
- package/templates-experimental/solid/c3.ts +137 -0
- package/templates-experimental/solid/templates/wrangler.toml +12 -0
- package/templates-experimental/svelte/c3.ts +132 -0
- package/templates-experimental/svelte/js/static/.assetsignore +4 -0
- package/templates-experimental/svelte/js/wrangler.toml +11 -0
- package/templates-experimental/svelte/ts/static/.assetsignore +4 -0
- package/templates-experimental/svelte/ts/wrangler.toml +11 -0
|
@@ -4,6 +4,12 @@ main = "src/index.js"
|
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
compatibility_flags = ["nodejs_compat"]
|
|
6
6
|
|
|
7
|
+
# Workers Logs
|
|
8
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
9
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
10
|
+
[observability]
|
|
11
|
+
enabled = true
|
|
12
|
+
|
|
7
13
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
8
14
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
9
15
|
# rather than the end user may result in better performance.
|
|
@@ -4,6 +4,12 @@ main = "src/entry.py"
|
|
|
4
4
|
compatibility_flags = ["python_workers"]
|
|
5
5
|
compatibility_date = "<TBD>"
|
|
6
6
|
|
|
7
|
+
# Workers Logs
|
|
8
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
9
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
10
|
+
[observability]
|
|
11
|
+
enabled = true
|
|
12
|
+
|
|
7
13
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
8
14
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
9
15
|
# rather than the end user may result in better performance.
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"cf-typegen": "wrangler types"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@cloudflare/vitest-pool-workers": "^0.
|
|
13
|
+
"@cloudflare/vitest-pool-workers": "^0.5.2",
|
|
14
14
|
"typescript": "^5.5.2",
|
|
15
|
-
"vitest": "
|
|
15
|
+
"vitest": "2.0.5",
|
|
16
16
|
"wrangler": "^3.60.3"
|
|
17
17
|
}
|
|
18
18
|
}
|
|
@@ -4,6 +4,12 @@ main = "src/index.ts"
|
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
compatibility_flags = ["nodejs_compat"]
|
|
6
6
|
|
|
7
|
+
# Workers Logs
|
|
8
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
9
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
10
|
+
[observability]
|
|
11
|
+
enabled = true
|
|
12
|
+
|
|
7
13
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
8
14
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
9
15
|
# rather than the end user may result in better performance.
|
|
@@ -3,6 +3,12 @@ name = "<TBD>"
|
|
|
3
3
|
main = "src/index.js"
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
|
|
6
|
+
# Workers Logs
|
|
7
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
8
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
9
|
+
[observability]
|
|
10
|
+
enabled = true
|
|
11
|
+
|
|
6
12
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
13
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
8
14
|
# rather than the end user may result in better performance.
|
|
@@ -13,27 +13,6 @@ import { DurableObject } from "cloudflare:workers";
|
|
|
13
13
|
* Learn more at https://developers.cloudflare.com/durable-objects
|
|
14
14
|
*/
|
|
15
15
|
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Associate bindings declared in wrangler.toml with the TypeScript type system
|
|
19
|
-
*/
|
|
20
|
-
export interface Env {
|
|
21
|
-
// Example binding to KV. Learn more at https://developers.cloudflare.com/workers/runtime-apis/kv/
|
|
22
|
-
// MY_KV_NAMESPACE: KVNamespace;
|
|
23
|
-
//
|
|
24
|
-
// Example binding to Durable Object. Learn more at https://developers.cloudflare.com/workers/runtime-apis/durable-objects/
|
|
25
|
-
MY_DURABLE_OBJECT: DurableObjectNamespace<MyDurableObject>;
|
|
26
|
-
//
|
|
27
|
-
// Example binding to R2. Learn more at https://developers.cloudflare.com/workers/runtime-apis/r2/
|
|
28
|
-
// MY_BUCKET: R2Bucket;
|
|
29
|
-
//
|
|
30
|
-
// Example binding to a Service. Learn more at https://developers.cloudflare.com/workers/runtime-apis/service-bindings/
|
|
31
|
-
// MY_SERVICE: Fetcher;
|
|
32
|
-
//
|
|
33
|
-
// Example binding to a Queue. Learn more at https://developers.cloudflare.com/queues/javascript-apis/
|
|
34
|
-
// MY_QUEUE: Queue;
|
|
35
|
-
}
|
|
36
|
-
|
|
37
16
|
/** A Durable Object's behavior is defined in an exported Javascript class */
|
|
38
17
|
export class MyDurableObject extends DurableObject {
|
|
39
18
|
/**
|
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
// Generated by Wrangler
|
|
2
|
-
|
|
1
|
+
// Generated by Wrangler by running `wrangler types`
|
|
2
|
+
|
|
3
3
|
interface Env {
|
|
4
|
-
MY_DURABLE_OBJECT: DurableObjectNamespace
|
|
4
|
+
MY_DURABLE_OBJECT: DurableObjectNamespace<import("./src/index").MyDurableObject>;
|
|
5
5
|
}
|
|
6
|
-
|
|
@@ -3,6 +3,12 @@ name = "<TBD>"
|
|
|
3
3
|
main = "src/index.ts"
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
|
|
6
|
+
# Workers Logs
|
|
7
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
8
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
9
|
+
[observability]
|
|
10
|
+
enabled = true
|
|
11
|
+
|
|
6
12
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
13
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
8
14
|
# rather than the end user may result in better performance.
|
package/templates/hono/c3.ts
CHANGED
|
@@ -3,6 +3,12 @@ name = "<TBD>"
|
|
|
3
3
|
main = "src/index.ts"
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
|
|
6
|
+
# Workers Logs
|
|
7
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
8
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
9
|
+
[observability]
|
|
10
|
+
enabled = true
|
|
11
|
+
|
|
6
12
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
13
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
8
14
|
# rather than the end user may result in better performance.
|
package/templates/next/c3.ts
CHANGED
|
@@ -1,8 +1,7 @@
|
|
|
1
1
|
import { join } from "path";
|
|
2
|
-
import {
|
|
3
|
-
import { processArgument } from "@cloudflare/cli/args";
|
|
2
|
+
import { updateStatus, warn } from "@cloudflare/cli";
|
|
4
3
|
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
5
|
-
import { spinner } from "@cloudflare/cli/interactive";
|
|
4
|
+
import { inputPrompt, spinner } from "@cloudflare/cli/interactive";
|
|
6
5
|
import { runFrameworkGenerator } from "frameworks/index";
|
|
7
6
|
import {
|
|
8
7
|
copyFile,
|
|
@@ -18,7 +17,7 @@ import { detectPackageManager } from "helpers/packageManagers";
|
|
|
18
17
|
import { installPackages } from "helpers/packages";
|
|
19
18
|
import { getTemplatePath } from "../../src/templates";
|
|
20
19
|
import type { TemplateConfig } from "../../src/templates";
|
|
21
|
-
import type {
|
|
20
|
+
import type { C3Context } from "types";
|
|
22
21
|
|
|
23
22
|
const { npm, npx } = detectPackageManager();
|
|
24
23
|
|
|
@@ -42,7 +41,7 @@ const generate = async (ctx: C3Context) => {
|
|
|
42
41
|
// This should never happen to users, it is a check mostly so that
|
|
43
42
|
// if the toml file is changed in a way that breaks the "KV Example" addition
|
|
44
43
|
// the C3 Next.js e2e runs will fail with this
|
|
45
|
-
|
|
44
|
+
throw new Error("Failed to properly generate the wrangler.toml file");
|
|
46
45
|
}
|
|
47
46
|
|
|
48
47
|
writeFile(join(ctx.project.path, "wrangler.toml"), newTomlContent);
|
|
@@ -89,7 +88,7 @@ const configure = async (ctx: C3Context) => {
|
|
|
89
88
|
]);
|
|
90
89
|
|
|
91
90
|
if (!path) {
|
|
92
|
-
|
|
91
|
+
throw new Error("Could not find the `/api` or `/app` directory");
|
|
93
92
|
}
|
|
94
93
|
|
|
95
94
|
const usesTs = usesTypescript(ctx);
|
|
@@ -135,7 +134,7 @@ export const shouldInstallNextOnPagesEslintPlugin = async (
|
|
|
135
134
|
return false;
|
|
136
135
|
}
|
|
137
136
|
|
|
138
|
-
return await
|
|
137
|
+
return await inputPrompt({
|
|
139
138
|
type: "confirm",
|
|
140
139
|
question: "Do you want to use the next-on-pages eslint-plugin?",
|
|
141
140
|
label: "eslint-plugin",
|
|
@@ -175,6 +174,7 @@ const addDevDependencies = async (installEslintPlugin: boolean) => {
|
|
|
175
174
|
export default {
|
|
176
175
|
configVersion: 1,
|
|
177
176
|
id: "next",
|
|
177
|
+
frameworkCli: "create-next-app",
|
|
178
178
|
platform: "pages",
|
|
179
179
|
displayName: "Next",
|
|
180
180
|
generate,
|
package/templates/nuxt/c3.ts
CHANGED
|
@@ -3,6 +3,12 @@ name = "<TBD>"
|
|
|
3
3
|
main = "src/index.ts"
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
|
|
6
|
+
# Workers Logs
|
|
7
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
8
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
9
|
+
[observability]
|
|
10
|
+
enabled = true
|
|
11
|
+
|
|
6
12
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
13
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
8
14
|
# rather than the end user may result in better performance.
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import { cp, mkdtemp } from "fs/promises";
|
|
2
2
|
import { tmpdir } from "os";
|
|
3
3
|
import { join } from "path";
|
|
4
|
-
import { processArgument } from "@cloudflare/cli/args";
|
|
5
4
|
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
5
|
+
import { processArgument } from "helpers/args";
|
|
6
6
|
import { runCommand } from "helpers/command";
|
|
7
7
|
import { detectPackageManager } from "helpers/packageManagers";
|
|
8
8
|
import { chooseAccount } from "../../src/wrangler/accounts";
|
|
@@ -14,7 +14,7 @@ export async function copyExistingWorkerFiles(ctx: C3Context) {
|
|
|
14
14
|
await chooseAccount(ctx);
|
|
15
15
|
|
|
16
16
|
if (ctx.args.existingScript === undefined) {
|
|
17
|
-
ctx.args.existingScript = await processArgument
|
|
17
|
+
ctx.args.existingScript = await processArgument(
|
|
18
18
|
ctx.args,
|
|
19
19
|
"existingScript",
|
|
20
20
|
{
|
|
@@ -3,6 +3,12 @@ name = "<TBD>"
|
|
|
3
3
|
main = "src/index.js"
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
|
|
6
|
+
# Workers Logs
|
|
7
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
8
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
9
|
+
[observability]
|
|
10
|
+
enabled = true
|
|
11
|
+
|
|
6
12
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
13
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
8
14
|
# rather than the end user may result in better performance.
|
|
@@ -3,6 +3,12 @@ name = "<TBD>"
|
|
|
3
3
|
main = "src/index.ts"
|
|
4
4
|
compatibility_date = "<TBD>"
|
|
5
5
|
|
|
6
|
+
# Workers Logs
|
|
7
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
8
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
9
|
+
[observability]
|
|
10
|
+
enabled = true
|
|
11
|
+
|
|
6
12
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
13
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
8
14
|
# rather than the end user may result in better performance.
|
package/templates/qwik/c3.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { endSection } from "@cloudflare/cli";
|
|
2
2
|
import { brandColor } from "@cloudflare/cli/colors";
|
|
3
3
|
import { spinner } from "@cloudflare/cli/interactive";
|
|
4
4
|
import { runFrameworkGenerator } from "frameworks/index";
|
|
@@ -13,7 +13,7 @@ import type { C3Context } from "types";
|
|
|
13
13
|
const { npm, npx } = detectPackageManager();
|
|
14
14
|
|
|
15
15
|
const generate = async (ctx: C3Context) => {
|
|
16
|
-
await runFrameworkGenerator(ctx, ["
|
|
16
|
+
await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
const configure = async (ctx: C3Context) => {
|
|
@@ -75,7 +75,7 @@ const addBindingsProxy = (ctx: C3Context) => {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
if (configArgument.type !== "ObjectExpression") {
|
|
78
|
-
|
|
78
|
+
throw new Error("Failed to update `vite.config.ts`");
|
|
79
79
|
}
|
|
80
80
|
|
|
81
81
|
// Add the `platform` object to the object
|
|
@@ -125,6 +125,7 @@ const populateCloudflareEnv = () => {
|
|
|
125
125
|
const config: TemplateConfig = {
|
|
126
126
|
configVersion: 1,
|
|
127
127
|
id: "qwik",
|
|
128
|
+
frameworkCli: "create-qwik",
|
|
128
129
|
displayName: "Qwik",
|
|
129
130
|
platform: "pages",
|
|
130
131
|
copyFiles: {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name = "<TBD>"
|
|
3
3
|
compatibility_date = "<TBD>"
|
|
4
4
|
pages_build_output_dir = "./dist"
|
|
5
|
+
compatibility_flags = ["nodejs_compat"]
|
|
5
6
|
|
|
6
7
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
8
|
# If you are running back-end logic in a Pages Function, running it closer to your back-end infrastructure
|
package/templates/react/c3.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { logRaw } from "@cloudflare/cli";
|
|
2
|
-
import {
|
|
2
|
+
import { inputPrompt } from "@cloudflare/cli/interactive";
|
|
3
3
|
import { runFrameworkGenerator } from "frameworks/index";
|
|
4
4
|
import { detectPackageManager } from "helpers/packageManagers";
|
|
5
5
|
import type { TemplateConfig } from "../../src/templates";
|
|
@@ -8,7 +8,7 @@ import type { C3Context } from "types";
|
|
|
8
8
|
const { npm } = detectPackageManager();
|
|
9
9
|
|
|
10
10
|
const generate = async (ctx: C3Context) => {
|
|
11
|
-
const variant = await
|
|
11
|
+
const variant = await inputPrompt({
|
|
12
12
|
type: "select",
|
|
13
13
|
question: "Select a variant:",
|
|
14
14
|
label: "variant",
|
|
@@ -43,6 +43,8 @@ const variantsOptions = [
|
|
|
43
43
|
const config: TemplateConfig = {
|
|
44
44
|
configVersion: 1,
|
|
45
45
|
id: "react",
|
|
46
|
+
// React's documentation now recommends using create-vite.
|
|
47
|
+
frameworkCli: "create-vite",
|
|
46
48
|
displayName: "React",
|
|
47
49
|
platform: "pages",
|
|
48
50
|
generate,
|
package/templates/remix/c3.ts
CHANGED
|
@@ -9,6 +9,12 @@ compatibility_date = "<TBD>"
|
|
|
9
9
|
[triggers]
|
|
10
10
|
crons = ["* * * * *"] # * * * * * = run every minute
|
|
11
11
|
|
|
12
|
+
# Workers Logs
|
|
13
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
14
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
15
|
+
[observability]
|
|
16
|
+
enabled = true
|
|
17
|
+
|
|
12
18
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
13
19
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
14
20
|
# rather than the end user may result in better performance.
|
|
@@ -9,6 +9,12 @@ compatibility_date = "<TBD>"
|
|
|
9
9
|
[triggers]
|
|
10
10
|
crons = ["* * * * *"] # * * * * * = run every minute
|
|
11
11
|
|
|
12
|
+
# Workers Logs
|
|
13
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
14
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
15
|
+
[observability]
|
|
16
|
+
enabled = true
|
|
17
|
+
|
|
12
18
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
13
19
|
# If you are running back-end logic in a Worker, running it closer to your back-end infrastructure
|
|
14
20
|
# rather than the end user may result in better performance.
|
package/templates/solid/c3.ts
CHANGED
package/templates/svelte/c3.ts
CHANGED
package/templates/vue/c3.ts
CHANGED
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
import { resolve } from "node:path";
|
|
2
|
+
import { logRaw } from "@cloudflare/cli";
|
|
3
|
+
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
4
|
+
import { spinner } from "@cloudflare/cli/interactive";
|
|
5
|
+
import { runFrameworkGenerator } from "frameworks/index";
|
|
6
|
+
import { readFile, readJSON, writeFile } from "helpers/files";
|
|
7
|
+
import { detectPackageManager } from "helpers/packageManagers";
|
|
8
|
+
import { installPackages } from "helpers/packages";
|
|
9
|
+
import type { TemplateConfig } from "../../src/templates";
|
|
10
|
+
import type { C3Context } from "types";
|
|
11
|
+
|
|
12
|
+
const { npm } = detectPackageManager();
|
|
13
|
+
|
|
14
|
+
const generate = async (ctx: C3Context) => {
|
|
15
|
+
await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
|
|
16
|
+
logRaw("");
|
|
17
|
+
};
|
|
18
|
+
|
|
19
|
+
const configure = async (ctx: C3Context) => {
|
|
20
|
+
updateAngularJson(ctx);
|
|
21
|
+
await updateAppCode();
|
|
22
|
+
await installCFWorker();
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
async function installCFWorker() {
|
|
26
|
+
await installPackages(["@cloudflare/workers-types", "wrangler"], {
|
|
27
|
+
dev: true,
|
|
28
|
+
startText: "Installing adapter dependencies",
|
|
29
|
+
doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
|
|
30
|
+
});
|
|
31
|
+
}
|
|
32
|
+
async function updateAppCode() {
|
|
33
|
+
const s = spinner();
|
|
34
|
+
s.start(`Updating application code`);
|
|
35
|
+
|
|
36
|
+
// Update an app config file to:
|
|
37
|
+
// - add the `provideHttpClient(withFetch())` call to enable `fetch` usage in `HttpClient`
|
|
38
|
+
const appConfigPath = "src/app/app.config.ts";
|
|
39
|
+
const appConfig = readFile(resolve(appConfigPath));
|
|
40
|
+
const newAppConfig =
|
|
41
|
+
"import { provideHttpClient, withFetch } from '@angular/common/http';\n" +
|
|
42
|
+
appConfig.replace(
|
|
43
|
+
"providers: [",
|
|
44
|
+
"providers: [provideHttpClient(withFetch()), ",
|
|
45
|
+
);
|
|
46
|
+
writeFile(resolve(appConfigPath), newAppConfig);
|
|
47
|
+
s.stop(`${brandColor(`updated`)} ${dim(appConfigPath)}`);
|
|
48
|
+
|
|
49
|
+
// Remove unwanted dependencies
|
|
50
|
+
s.start(`Updating package.json`);
|
|
51
|
+
const packageJsonPath = resolve("package.json");
|
|
52
|
+
const packageManifest = readJSON(packageJsonPath);
|
|
53
|
+
|
|
54
|
+
delete packageManifest["dependencies"]["@angular/ssr"];
|
|
55
|
+
delete packageManifest["dependencies"]["express"];
|
|
56
|
+
delete packageManifest["devDependencies"]["@types/express"];
|
|
57
|
+
|
|
58
|
+
writeFile(packageJsonPath, JSON.stringify(packageManifest, null, 2));
|
|
59
|
+
s.stop(`${brandColor(`updated`)} ${dim(`\`package.json\``)}`);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
function updateAngularJson(ctx: C3Context) {
|
|
63
|
+
const s = spinner();
|
|
64
|
+
s.start(`Updating angular.json config`);
|
|
65
|
+
const angularJson = readJSON(resolve("angular.json"));
|
|
66
|
+
// Update builder
|
|
67
|
+
const architectSection = angularJson.projects[ctx.project.name].architect;
|
|
68
|
+
architectSection.build.options.outputPath = "dist";
|
|
69
|
+
architectSection.build.options.assets.push("src/_routes.json");
|
|
70
|
+
|
|
71
|
+
writeFile(resolve("angular.json"), JSON.stringify(angularJson, null, 2));
|
|
72
|
+
s.stop(`${brandColor(`updated`)} ${dim(`\`angular.json\``)}`);
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
const config: TemplateConfig = {
|
|
76
|
+
configVersion: 1,
|
|
77
|
+
id: "angular",
|
|
78
|
+
frameworkCli: "@angular/create",
|
|
79
|
+
displayName: "Angular",
|
|
80
|
+
platform: "workers",
|
|
81
|
+
copyFiles: {
|
|
82
|
+
path: "./templates",
|
|
83
|
+
},
|
|
84
|
+
path: "templates-experimental/angular",
|
|
85
|
+
devScript: "start",
|
|
86
|
+
deployScript: "deploy",
|
|
87
|
+
generate,
|
|
88
|
+
configure,
|
|
89
|
+
transformPackageJson: async () => ({
|
|
90
|
+
scripts: {
|
|
91
|
+
start: `${npm} run build && wrangler dev`,
|
|
92
|
+
build: `ng build && ${npm} run process`,
|
|
93
|
+
process: "node ./tools/alter-polyfills.mjs",
|
|
94
|
+
deploy: `${npm} run build && wrangler deploy`,
|
|
95
|
+
},
|
|
96
|
+
}),
|
|
97
|
+
};
|
|
98
|
+
export default config;
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { renderApplication } from "@angular/platform-server";
|
|
2
|
+
import bootstrap from "./src/main.server";
|
|
3
|
+
|
|
4
|
+
interface Env {
|
|
5
|
+
ASSETS: { fetch: typeof fetch };
|
|
6
|
+
}
|
|
7
|
+
|
|
8
|
+
// We attach the Cloudflare `fetch()` handler to the global scope
|
|
9
|
+
// so that we can export it when we process the Angular output.
|
|
10
|
+
// See tools/bundle.mjs
|
|
11
|
+
async function workerFetchHandler(request: Request, env: Env) {
|
|
12
|
+
const url = new URL(request.url);
|
|
13
|
+
console.log("render SSR", url.href);
|
|
14
|
+
|
|
15
|
+
// Get the root `index.html` content.
|
|
16
|
+
const indexUrl = new URL("/index.html", url);
|
|
17
|
+
const indexResponse = await env.ASSETS.fetch(new Request(indexUrl));
|
|
18
|
+
const document = await indexResponse.text();
|
|
19
|
+
|
|
20
|
+
const content = await renderApplication(bootstrap, {
|
|
21
|
+
document,
|
|
22
|
+
url: url.pathname,
|
|
23
|
+
});
|
|
24
|
+
|
|
25
|
+
// console.log("rendered SSR", content);
|
|
26
|
+
return new Response(content, indexResponse);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
export default {
|
|
30
|
+
fetch: (request: Request, env: Env) =>
|
|
31
|
+
(globalThis as any)["__zone_symbol__Promise"].resolve(
|
|
32
|
+
workerFetchHandler(request, env),
|
|
33
|
+
),
|
|
34
|
+
};
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import fs from "node:fs";
|
|
2
|
+
import { EOL } from "node:os";
|
|
3
|
+
import { join } from "node:path";
|
|
4
|
+
import path from "node:path";
|
|
5
|
+
import { fileURLToPath } from "node:url";
|
|
6
|
+
const dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
7
|
+
|
|
8
|
+
/**
|
|
9
|
+
* Split by lines and comment the banner
|
|
10
|
+
* ```
|
|
11
|
+
* import { createRequire } from 'node:module';
|
|
12
|
+
* globalThis['require'] ??= createRequire(import.meta.url);
|
|
13
|
+
* ```
|
|
14
|
+
*/
|
|
15
|
+
const serverPolyfillsFile = join(
|
|
16
|
+
dirname,
|
|
17
|
+
"../dist/server/polyfills.server.mjs"
|
|
18
|
+
);
|
|
19
|
+
const serverPolyfillsData = fs
|
|
20
|
+
.readFileSync(serverPolyfillsFile, "utf8")
|
|
21
|
+
.split(/\r?\n/);
|
|
22
|
+
|
|
23
|
+
for (let index = 0; index < 2; index++) {
|
|
24
|
+
if (serverPolyfillsData[index].includes("createRequire")) {
|
|
25
|
+
serverPolyfillsData[index] = "// " + serverPolyfillsData[index];
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
// Add needed polyfills
|
|
30
|
+
serverPolyfillsData.unshift(`globalThis['process'] = {};`);
|
|
31
|
+
|
|
32
|
+
fs.writeFileSync(serverPolyfillsFile, serverPolyfillsData.join(EOL));
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
#:schema node_modules/wrangler/config-schema.json
|
|
2
|
+
name = "<TBD>"
|
|
3
|
+
compatibility_date = "<TBD>"
|
|
4
|
+
main = "./dist/server/server.mjs"
|
|
5
|
+
assets = { directory = "./dist/browser", binding = "ASSETS" }
|
|
6
|
+
|
|
7
|
+
# Workers Logs
|
|
8
|
+
# Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
|
|
9
|
+
# Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
|
|
10
|
+
[observability]
|
|
11
|
+
enabled = true
|