create-cloudflare 0.0.0-e2e6912bc → 0.0.0-e2f5756c2
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 +6549 -7951
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +10 -6
- package/templates/analog/templates/worker-configuration.d.ts +1 -1
- package/templates/analog/templates/wrangler.json +5 -0
- package/templates/angular/c3.ts +25 -13
- package/templates/angular/templates/src/server.ts +15 -0
- package/templates/angular/templates/tools/copy-files.mjs +8 -2
- package/templates/astro/c3.ts +17 -33
- package/templates/astro/templates/js/wrangler.json +8 -0
- package/templates/astro/templates/ts/worker-configuration.d.ts +4 -0
- package/templates/astro/templates/ts/wrangler.json +8 -0
- package/templates/common/js/package.json +1 -1
- package/templates/common/js/wrangler.json +8 -0
- package/templates/common/ts/package.json +1 -1
- package/templates/common/ts/src/index.ts +1 -1
- package/templates/common/ts/worker-configuration.d.ts +1 -1
- package/templates/common/ts/wrangler.json +8 -0
- package/templates/hello-world/js/package.json +2 -2
- package/templates/hello-world/js/vitest.config.js +1 -1
- package/templates/hello-world/js/wrangler.json +8 -0
- package/templates/hello-world/py/package.json +1 -1
- package/templates/hello-world/py/wrangler.json +9 -0
- package/templates/hello-world/ts/package.json +2 -2
- package/templates/hello-world/ts/src/index.ts +1 -1
- package/templates/hello-world/ts/test/tsconfig.json +1 -1
- package/templates/hello-world/ts/vitest.config.mts +1 -1
- package/templates/hello-world/ts/worker-configuration.d.ts +1 -1
- package/templates/hello-world/ts/wrangler.json +8 -0
- package/templates/hello-world-durable-object/js/package.json +1 -1
- package/templates/hello-world-durable-object/js/src/index.js +3 -3
- package/templates/hello-world-durable-object/js/wrangler.json +24 -0
- package/templates/hello-world-durable-object/ts/package.json +1 -1
- package/templates/hello-world-durable-object/ts/src/index.ts +4 -4
- package/templates/hello-world-durable-object/ts/wrangler.json +24 -0
- package/templates/hono/templates/worker-configuration.d.ts +1 -1
- package/templates/hono/templates/wrangler.json +8 -0
- package/templates/next/README.md +3 -4
- package/templates/next/app/js/app/api/hello/route.js +4 -4
- package/templates/next/app/ts/app/api/hello/route.ts +4 -5
- package/templates/next/c3.ts +7 -25
- package/templates/next/wrangler.json +8 -0
- package/templates/nuxt/c3.ts +1 -1
- package/templates/nuxt/templates/worker-configuration.d.ts +1 -1
- package/templates/nuxt/templates/wrangler.json +8 -0
- package/templates/openapi/ts/package.json +1 -1
- package/templates/openapi/ts/worker-configuration.d.ts +1 -1
- package/templates/openapi/ts/wrangler.json +8 -0
- package/templates/pre-existing/c3.ts +3 -3
- package/templates/pre-existing/js/package.json +1 -1
- package/templates/pre-existing/js/wrangler.json +5 -0
- package/templates/queues/js/package.json +1 -1
- package/templates/queues/js/wrangler.json +21 -0
- package/templates/queues/ts/package.json +1 -1
- package/templates/queues/ts/src/index.ts +1 -1
- package/templates/queues/ts/worker-configuration.d.ts +1 -1
- package/templates/queues/ts/wrangler.json +21 -0
- package/templates/qwik/templates/worker-configuration.d.ts +1 -1
- package/templates/qwik/templates/wrangler.json +8 -0
- package/templates/remix/templates/worker-configuration.d.ts +1 -1
- package/templates/remix/templates/wrangler.json +5 -0
- package/templates/scheduled/js/package.json +1 -1
- package/templates/scheduled/js/src/index.js +1 -1
- package/templates/scheduled/js/wrangler.json +13 -0
- package/templates/scheduled/ts/package.json +1 -1
- package/templates/scheduled/ts/src/index.ts +4 -4
- package/templates/scheduled/ts/worker-configuration.d.ts +1 -1
- package/templates/scheduled/ts/wrangler.json +13 -0
- package/templates/solid/c3.ts +1 -1
- package/templates/solid/templates/wrangler.json +8 -0
- package/templates/svelte/c3.ts +31 -4
- package/templates/svelte/templates/wrangler.json +5 -0
- package/templates-experimental/angular/c3.ts +21 -7
- package/templates-experimental/angular/templates/src/server.ts +15 -0
- package/templates-experimental/angular/templates/wrangler.json +12 -0
- package/templates-experimental/astro/c3.ts +17 -33
- package/templates-experimental/astro/templates/js/wrangler.json +15 -0
- package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +4 -0
- package/templates-experimental/astro/templates/ts/wrangler.json +15 -0
- package/templates-experimental/docusaurus/templates/wrangler.json +10 -0
- package/templates-experimental/gatsby/templates/wrangler.json +10 -0
- package/templates-experimental/hello-world-assets-only/templates/wrangler.json +10 -0
- package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +1 -1
- package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +3 -3
- package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.json +28 -0
- package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +1 -1
- package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +3 -3
- package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.json +28 -0
- package/templates-experimental/hello-world-with-assets/js/package.json +2 -2
- package/templates-experimental/hello-world-with-assets/js/vitest.config.js +1 -1
- package/templates-experimental/hello-world-with-assets/js/wrangler.json +15 -0
- package/templates-experimental/hello-world-with-assets/py/package.json +1 -1
- package/templates-experimental/hello-world-with-assets/py/wrangler.json +15 -0
- package/templates-experimental/hello-world-with-assets/ts/package.json +2 -2
- package/templates-experimental/hello-world-with-assets/ts/src/index.ts +1 -1
- package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +1 -1
- package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +1 -1
- package/templates-experimental/hello-world-with-assets/ts/wrangler.json +15 -0
- package/templates-experimental/hono/templates/worker-configuration.d.ts +1 -1
- package/templates-experimental/hono/templates/wrangler.json +9 -0
- package/templates-experimental/next/c3.ts +12 -5
- package/templates-experimental/next/templates/.dev.vars +2 -0
- package/templates-experimental/next/templates/__dot__gitignore +2 -5
- package/templates-experimental/next/templates/cloudflare-env.d.ts +5 -0
- package/templates-experimental/next/templates/open-next.config.ts +28 -0
- package/templates-experimental/next/templates/wrangler.json +13 -0
- package/templates-experimental/nuxt/c3.ts +2 -2
- package/templates-experimental/nuxt/templates/worker-configuration.d.ts +1 -1
- package/templates-experimental/nuxt/templates/wrangler.json +12 -0
- package/templates-experimental/qwik/templates/worker-configuration.d.ts +1 -1
- package/templates-experimental/qwik/templates/wrangler.json +15 -0
- package/templates-experimental/solid/c3.ts +8 -51
- package/templates-experimental/solid/templates/wrangler.json +15 -0
- package/templates-experimental/svelte/c3.ts +1 -4
- package/templates-experimental/svelte/templates/wrangler.json +12 -0
- package/templates-experimental/vue/c3.ts +33 -0
- package/templates-experimental/vue/templates/wrangler.json +10 -0
- package/templates/analog/templates/wrangler.toml +0 -85
- package/templates/angular/templates/server.ts +0 -34
- package/templates/angular/templates/tools/alter-polyfills.mjs +0 -27
- package/templates/angular/templates/tools/paths.mjs +0 -9
- package/templates/astro/templates/wrangler.toml +0 -86
- package/templates/common/js/wrangler.toml +0 -113
- package/templates/common/ts/wrangler.toml +0 -113
- package/templates/hello-world/js/wrangler.toml +0 -114
- package/templates/hello-world/py/wrangler.toml +0 -114
- package/templates/hello-world/ts/wrangler.toml +0 -114
- package/templates/hello-world-durable-object/js/wrangler.toml +0 -113
- package/templates/hello-world-durable-object/ts/wrangler.toml +0 -113
- package/templates/hono/templates/wrangler.toml +0 -113
- package/templates/next/wrangler.toml +0 -86
- package/templates/nuxt/templates/wrangler.toml +0 -86
- package/templates/openapi/ts/wrangler.toml +0 -113
- package/templates/pre-existing/js/wrangler.toml +0 -4
- package/templates/queues/js/wrangler.toml +0 -118
- package/templates/queues/ts/wrangler.toml +0 -118
- package/templates/qwik/templates/wrangler.toml +0 -86
- package/templates/remix/templates/wrangler.toml +0 -85
- package/templates/scheduled/js/wrangler.toml +0 -119
- package/templates/scheduled/ts/wrangler.toml +0 -119
- package/templates/solid/templates/wrangler.toml +0 -84
- package/templates/svelte/js/wrangler.toml +0 -85
- package/templates/svelte/ts/wrangler.toml +0 -85
- package/templates-experimental/angular/templates/server.ts +0 -34
- package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +0 -32
- package/templates-experimental/angular/templates/wrangler.toml +0 -11
- package/templates-experimental/astro/templates/wrangler.toml +0 -12
- package/templates-experimental/docusaurus/templates/wrangler.toml +0 -10
- package/templates-experimental/gatsby/templates/wrangler.toml +0 -10
- package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +0 -10
- package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +0 -24
- package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +0 -24
- package/templates-experimental/hello-world-with-assets/js/wrangler.toml +0 -12
- package/templates-experimental/hello-world-with-assets/py/wrangler.toml +0 -12
- package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +0 -12
- package/templates-experimental/hono/templates/wrangler.toml +0 -5
- package/templates-experimental/next/templates/env.d.ts +0 -5
- package/templates-experimental/next/templates/wrangler.toml +0 -12
- package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +0 -27
- package/templates-experimental/nuxt/templates/wrangler.toml +0 -11
- package/templates-experimental/qwik/templates/wrangler.toml +0 -12
- package/templates-experimental/solid/templates/wrangler.toml +0 -12
- package/templates-experimental/svelte/js/wrangler.toml +0 -11
- package/templates-experimental/svelte/ts/wrangler.toml +0 -11
- /package/templates/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
- /package/templates-experimental/astro/templates/{public → js/public}/.assetsignore +0 -0
- /package/templates-experimental/{svelte/js/static → astro/templates/ts/public}/.assetsignore +0 -0
- /package/templates-experimental/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
- /package/templates-experimental/svelte/{ts → templates}/static/.assetsignore +0 -0
|
@@ -1,10 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
import { getRequestContext } from '@cloudflare/next-on-pages'
|
|
1
|
+
// import { getRequestContext } from '@cloudflare/next-on-pages'
|
|
3
2
|
|
|
4
3
|
export const runtime = 'edge'
|
|
5
4
|
|
|
6
|
-
export async function GET(
|
|
7
|
-
|
|
5
|
+
export async function GET() {
|
|
6
|
+
const responseText = 'Hello World'
|
|
8
7
|
|
|
9
8
|
// In the edge runtime you can use Bindings that are available in your application
|
|
10
9
|
// (for more details see:
|
|
@@ -16,7 +15,7 @@ export async function GET(request: NextRequest) {
|
|
|
16
15
|
// const myKv = getRequestContext().env.MY_KV_NAMESPACE
|
|
17
16
|
// await myKv.put('suffix', ' from a KV store!')
|
|
18
17
|
// const suffix = await myKv.get('suffix')
|
|
19
|
-
// responseText
|
|
18
|
+
// return new Response(responseText + suffix)
|
|
20
19
|
|
|
21
20
|
return new Response(responseText)
|
|
22
21
|
}
|
package/templates/next/c3.ts
CHANGED
|
@@ -26,33 +26,15 @@ const generate = async (ctx: C3Context) => {
|
|
|
26
26
|
|
|
27
27
|
await runFrameworkGenerator(ctx, [projectName]);
|
|
28
28
|
|
|
29
|
-
const
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
// include the comment in the template wrangler.toml file just so to keep it identical
|
|
33
|
-
// and consistent with that of all the other frameworks
|
|
34
|
-
// (instead of making it a special case which needs extra care)
|
|
35
|
-
const newTomlContent = wranglerToml.replace(
|
|
36
|
-
/#\s+\[\[kv_namespaces\]\]\n#\s+binding\s+=\s+"MY_KV_NAMESPACE"\n#\s+id\s+=\s+"[a-zA-Z0-9]+?"/,
|
|
37
|
-
($1) => `# KV Example:\n${$1}`,
|
|
38
|
-
);
|
|
39
|
-
|
|
40
|
-
if (!/# KV Example/.test(newTomlContent)) {
|
|
41
|
-
// This should never happen to users, it is a check mostly so that
|
|
42
|
-
// if the toml file is changed in a way that breaks the "KV Example" addition
|
|
43
|
-
// the C3 Next.js e2e runs will fail with this
|
|
44
|
-
throw new Error("Failed to properly generate the wrangler.toml file");
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
writeFile(join(ctx.project.path, "wrangler.toml"), newTomlContent);
|
|
48
|
-
|
|
49
|
-
updateStatus("Created wrangler.toml file");
|
|
29
|
+
const wranglerConfig = readFile(join(getTemplatePath(ctx), "wrangler.json"));
|
|
30
|
+
writeFile(join(ctx.project.path, "wrangler.json"), wranglerConfig);
|
|
31
|
+
updateStatus("Created wrangler.json file");
|
|
50
32
|
};
|
|
51
33
|
|
|
52
|
-
const updateNextConfig = () => {
|
|
34
|
+
const updateNextConfig = (usesTs: boolean) => {
|
|
53
35
|
const s = spinner();
|
|
54
36
|
|
|
55
|
-
const configFile =
|
|
37
|
+
const configFile = `next.config.${usesTs ? "ts" : "mjs"}`;
|
|
56
38
|
s.start(`Updating \`${configFile}\``);
|
|
57
39
|
|
|
58
40
|
const configContent = readFile(configFile);
|
|
@@ -107,7 +89,7 @@ const configure = async (ctx: C3Context) => {
|
|
|
107
89
|
await writeEslintrc(ctx);
|
|
108
90
|
}
|
|
109
91
|
|
|
110
|
-
updateNextConfig();
|
|
92
|
+
updateNextConfig(usesTs);
|
|
111
93
|
|
|
112
94
|
copyFile(
|
|
113
95
|
join(getTemplatePath(ctx), "README.md"),
|
|
@@ -176,7 +158,7 @@ export default {
|
|
|
176
158
|
id: "next",
|
|
177
159
|
frameworkCli: "create-next-app",
|
|
178
160
|
platform: "pages",
|
|
179
|
-
displayName: "Next",
|
|
161
|
+
displayName: "Next.js",
|
|
180
162
|
generate,
|
|
181
163
|
configure,
|
|
182
164
|
copyFiles: {
|
package/templates/nuxt/c3.ts
CHANGED
|
@@ -49,14 +49,14 @@ export async function copyExistingWorkerFiles(ctx: C3Context) {
|
|
|
49
49
|
},
|
|
50
50
|
);
|
|
51
51
|
|
|
52
|
-
// copy src/* files from the downloaded
|
|
52
|
+
// copy src/* files from the downloaded Worker
|
|
53
53
|
await cp(
|
|
54
54
|
join(tempdir, ctx.args.existingScript, "src"),
|
|
55
55
|
join(ctx.project.path, "src"),
|
|
56
56
|
{ recursive: true },
|
|
57
57
|
);
|
|
58
58
|
|
|
59
|
-
// copy wrangler.toml from the downloaded
|
|
59
|
+
// copy wrangler.toml from the downloaded Worker
|
|
60
60
|
await cp(
|
|
61
61
|
join(tempdir, ctx.args.existingScript, "wrangler.toml"),
|
|
62
62
|
join(ctx.project.path, "wrangler.toml"),
|
|
@@ -96,7 +96,7 @@ export function buildConfigure(params: ConfigureParams) {
|
|
|
96
96
|
await params.chooseAccount(ctx);
|
|
97
97
|
await params.copyFiles(ctx);
|
|
98
98
|
|
|
99
|
-
// Force no-deploy since the
|
|
99
|
+
// Force no-deploy since the Worker is already deployed
|
|
100
100
|
ctx.args.deploy = false;
|
|
101
101
|
};
|
|
102
102
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "<TBD>",
|
|
3
|
+
"main": "src/index.js",
|
|
4
|
+
"compatibility_date": "<TBD>",
|
|
5
|
+
"observability": {
|
|
6
|
+
"enabled": true
|
|
7
|
+
},
|
|
8
|
+
"queues": {
|
|
9
|
+
"consumers": [
|
|
10
|
+
{
|
|
11
|
+
"queue": "my-queue"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"producers": [
|
|
15
|
+
{
|
|
16
|
+
"binding": "MY_QUEUE",
|
|
17
|
+
"queue": "my-queue"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -8,7 +8,7 @@
|
|
|
8
8
|
* - Open a browser tab at http://localhost:8787/ to see your worker in action
|
|
9
9
|
* - Run `npm run deploy` to publish your worker
|
|
10
10
|
*
|
|
11
|
-
* Bind resources to your worker in `wrangler.
|
|
11
|
+
* Bind resources to your worker in `wrangler.json`. After adding bindings, a type definition for the
|
|
12
12
|
* `Env` object can be regenerated with `npm run cf-typegen`.
|
|
13
13
|
*
|
|
14
14
|
* Learn more at https://developers.cloudflare.com/workers/
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "<TBD>",
|
|
3
|
+
"main": "src/index.ts",
|
|
4
|
+
"compatibility_date": "<TBD>",
|
|
5
|
+
"observability": {
|
|
6
|
+
"enabled": true
|
|
7
|
+
},
|
|
8
|
+
"queues": {
|
|
9
|
+
"consumers": [
|
|
10
|
+
{
|
|
11
|
+
"queue": "my-queue"
|
|
12
|
+
}
|
|
13
|
+
],
|
|
14
|
+
"producers": [
|
|
15
|
+
{
|
|
16
|
+
"binding": "MY_QUEUE",
|
|
17
|
+
"queue": "my-queue"
|
|
18
|
+
}
|
|
19
|
+
]
|
|
20
|
+
}
|
|
21
|
+
}
|
|
@@ -20,7 +20,7 @@ export default {
|
|
|
20
20
|
return new Response(`To test the scheduled handler, ensure you have used the "--test-scheduled" then try running "curl ${url.href}".`);
|
|
21
21
|
},
|
|
22
22
|
|
|
23
|
-
// The scheduled handler is invoked at the interval set in our wrangler.
|
|
23
|
+
// The scheduled handler is invoked at the interval set in our wrangler.json's
|
|
24
24
|
// [[triggers]] configuration.
|
|
25
25
|
async scheduled(event, env, ctx) {
|
|
26
26
|
// A Cron Trigger can make requests to other endpoints on the Internet,
|
|
@@ -6,17 +6,17 @@
|
|
|
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
|
-
* - Run `curl "http://localhost:8787/__scheduled?cron=*+*+*+*+*"` to see your
|
|
10
|
-
* - Run `npm run deploy` to publish your
|
|
9
|
+
* - Run `curl "http://localhost:8787/__scheduled?cron=*+*+*+*+*"` to see your Worker in action
|
|
10
|
+
* - Run `npm run deploy` to publish your Worker
|
|
11
11
|
*
|
|
12
|
-
* Bind resources to your
|
|
12
|
+
* Bind resources to your Worker in `wrangler.json`. After adding bindings, a type definition for the
|
|
13
13
|
* `Env` object can be regenerated with `npm run cf-typegen`.
|
|
14
14
|
*
|
|
15
15
|
* Learn more at https://developers.cloudflare.com/workers/
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
18
|
export default {
|
|
19
|
-
// The scheduled handler is invoked at the interval set in our wrangler.
|
|
19
|
+
// The scheduled handler is invoked at the interval set in our wrangler.json's
|
|
20
20
|
// [[triggers]] configuration.
|
|
21
21
|
async scheduled(event, env, ctx): Promise<void> {
|
|
22
22
|
// A Cron Trigger can make requests to other endpoints on the Internet,
|
package/templates/solid/c3.ts
CHANGED
package/templates/svelte/c3.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { existsSync } from "node:fs";
|
|
1
2
|
import { platform } from "node:os";
|
|
2
3
|
import { logRaw, updateStatus } from "@cloudflare/cli";
|
|
3
4
|
import { blue, brandColor, dim } from "@cloudflare/cli/colors";
|
|
@@ -28,6 +29,7 @@ const configure = async (ctx: C3Context) => {
|
|
|
28
29
|
});
|
|
29
30
|
|
|
30
31
|
updateSvelteConfig();
|
|
32
|
+
updatePlaywrightConfig(usesTypescript(ctx));
|
|
31
33
|
updateTypeDefinitions(ctx);
|
|
32
34
|
};
|
|
33
35
|
|
|
@@ -49,6 +51,34 @@ const updateSvelteConfig = () => {
|
|
|
49
51
|
});
|
|
50
52
|
};
|
|
51
53
|
|
|
54
|
+
const updatePlaywrightConfig = (shouldUseTypescript: boolean) => {
|
|
55
|
+
const filePath = `playwright.config.${shouldUseTypescript ? "ts" : "js"}`;
|
|
56
|
+
if (!existsSync(filePath)) {
|
|
57
|
+
return;
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
updateStatus(`Changing webServer port in ${blue(filePath)}`);
|
|
61
|
+
|
|
62
|
+
transformFile(filePath, {
|
|
63
|
+
visitObjectExpression: function (n) {
|
|
64
|
+
const portProp = n.node.properties.find((prop) => {
|
|
65
|
+
if (!("key" in prop) || !("name" in prop.key)) {
|
|
66
|
+
return false;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return prop.key.name === "port";
|
|
70
|
+
});
|
|
71
|
+
|
|
72
|
+
if (!portProp || !("value" in portProp) || !("value" in portProp.value)) {
|
|
73
|
+
return this.traverse(n);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
portProp.value.value = 8788;
|
|
77
|
+
return false;
|
|
78
|
+
},
|
|
79
|
+
});
|
|
80
|
+
};
|
|
81
|
+
|
|
52
82
|
const updateTypeDefinitions = (ctx: C3Context) => {
|
|
53
83
|
if (!usesTypescript(ctx)) {
|
|
54
84
|
return;
|
|
@@ -101,10 +131,7 @@ const config: TemplateConfig = {
|
|
|
101
131
|
displayName: "SvelteKit",
|
|
102
132
|
platform: "pages",
|
|
103
133
|
copyFiles: {
|
|
104
|
-
|
|
105
|
-
js: { path: "./js" },
|
|
106
|
-
ts: { path: "./ts" },
|
|
107
|
-
},
|
|
134
|
+
path: "./templates",
|
|
108
135
|
},
|
|
109
136
|
generate,
|
|
110
137
|
configure,
|
|
@@ -12,7 +12,11 @@ import type { C3Context } from "types";
|
|
|
12
12
|
const { npm } = detectPackageManager();
|
|
13
13
|
|
|
14
14
|
const generate = async (ctx: C3Context) => {
|
|
15
|
-
await runFrameworkGenerator(ctx, [
|
|
15
|
+
await runFrameworkGenerator(ctx, [
|
|
16
|
+
ctx.project.name,
|
|
17
|
+
"--ssr",
|
|
18
|
+
"--server-routing" /** Dev Preview API */,
|
|
19
|
+
]);
|
|
16
20
|
logRaw("");
|
|
17
21
|
};
|
|
18
22
|
|
|
@@ -23,9 +27,9 @@ const configure = async (ctx: C3Context) => {
|
|
|
23
27
|
};
|
|
24
28
|
|
|
25
29
|
async function installCFWorker() {
|
|
26
|
-
await installPackages(["
|
|
30
|
+
await installPackages(["xhr2"], {
|
|
27
31
|
dev: true,
|
|
28
|
-
startText: "Installing
|
|
32
|
+
startText: "Installing additional dependencies",
|
|
29
33
|
doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
|
|
30
34
|
});
|
|
31
35
|
}
|
|
@@ -46,12 +50,21 @@ async function updateAppCode() {
|
|
|
46
50
|
writeFile(resolve(appConfigPath), newAppConfig);
|
|
47
51
|
s.stop(`${brandColor(`updated`)} ${dim(appConfigPath)}`);
|
|
48
52
|
|
|
53
|
+
// Update an app server routes file to:
|
|
54
|
+
const appServerRoutesPath = "src/app/app.routes.server.ts";
|
|
55
|
+
const appRoutes = readFile(resolve(appServerRoutesPath));
|
|
56
|
+
const newAppRoutes = appRoutes.replace(
|
|
57
|
+
"RenderMode.Prerender",
|
|
58
|
+
"RenderMode.Server",
|
|
59
|
+
);
|
|
60
|
+
writeFile(resolve(appServerRoutesPath), newAppRoutes);
|
|
61
|
+
s.stop(`${brandColor(`updated`)} ${dim(appServerRoutesPath)}`);
|
|
62
|
+
|
|
49
63
|
// Remove unwanted dependencies
|
|
50
64
|
s.start(`Updating package.json`);
|
|
51
65
|
const packageJsonPath = resolve("package.json");
|
|
52
66
|
const packageManifest = readJSON(packageJsonPath);
|
|
53
67
|
|
|
54
|
-
delete packageManifest["dependencies"]["@angular/ssr"];
|
|
55
68
|
delete packageManifest["dependencies"]["express"];
|
|
56
69
|
delete packageManifest["devDependencies"]["@types/express"];
|
|
57
70
|
|
|
@@ -66,7 +79,8 @@ function updateAngularJson(ctx: C3Context) {
|
|
|
66
79
|
// Update builder
|
|
67
80
|
const architectSection = angularJson.projects[ctx.project.name].architect;
|
|
68
81
|
architectSection.build.options.outputPath = "dist";
|
|
69
|
-
architectSection.build.options.
|
|
82
|
+
architectSection.build.options.outputMode = "server";
|
|
83
|
+
architectSection.build.options.ssr.experimentalPlatform = "neutral";
|
|
70
84
|
|
|
71
85
|
writeFile(resolve("angular.json"), JSON.stringify(angularJson, null, 2));
|
|
72
86
|
s.stop(`${brandColor(`updated`)} ${dim(`\`angular.json\``)}`);
|
|
@@ -84,13 +98,13 @@ const config: TemplateConfig = {
|
|
|
84
98
|
path: "templates-experimental/angular",
|
|
85
99
|
devScript: "start",
|
|
86
100
|
deployScript: "deploy",
|
|
101
|
+
previewScript: "start",
|
|
87
102
|
generate,
|
|
88
103
|
configure,
|
|
89
104
|
transformPackageJson: async () => ({
|
|
90
105
|
scripts: {
|
|
91
106
|
start: `${npm} run build && wrangler dev`,
|
|
92
|
-
build: `ng build
|
|
93
|
-
process: "node ./tools/alter-polyfills.mjs",
|
|
107
|
+
build: `ng build`,
|
|
94
108
|
deploy: `${npm} run build && wrangler deploy`,
|
|
95
109
|
},
|
|
96
110
|
}),
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { AngularAppEngine, createRequestHandler } from '@angular/ssr';
|
|
2
|
+
|
|
3
|
+
const angularApp = new AngularAppEngine();
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* This is a request handler used by the Angular CLI (dev-server and during build).
|
|
7
|
+
*/
|
|
8
|
+
export const reqHandler = createRequestHandler(async (req) => {
|
|
9
|
+
const res = await angularApp.handle(req);
|
|
10
|
+
|
|
11
|
+
return res ?? new Response('Page not found.', { status: 404 });
|
|
12
|
+
});
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
export default { fetch: reqHandler };
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { logRaw, updateStatus } from "@cloudflare/cli";
|
|
2
2
|
import { blue, brandColor, dim } from "@cloudflare/cli/colors";
|
|
3
3
|
import { runFrameworkGenerator } from "frameworks/index";
|
|
4
|
-
import {
|
|
4
|
+
import { transformFile } from "helpers/codemod";
|
|
5
5
|
import { runCommand } from "helpers/command";
|
|
6
6
|
import { usesTypescript } from "helpers/files";
|
|
7
7
|
import { detectPackageManager } from "helpers/packageManagers";
|
|
@@ -17,7 +17,7 @@ const generate = async (ctx: C3Context) => {
|
|
|
17
17
|
logRaw(""); // newline
|
|
18
18
|
};
|
|
19
19
|
|
|
20
|
-
const configure = async (
|
|
20
|
+
const configure = async () => {
|
|
21
21
|
await runCommand([npx, "astro", "add", "cloudflare", "-y"], {
|
|
22
22
|
silent: true,
|
|
23
23
|
startText: "Installing adapter",
|
|
@@ -27,7 +27,6 @@ const configure = async (ctx: C3Context) => {
|
|
|
27
27
|
});
|
|
28
28
|
|
|
29
29
|
updateAstroConfig();
|
|
30
|
-
updateEnvDeclaration(ctx);
|
|
31
30
|
};
|
|
32
31
|
|
|
33
32
|
const updateAstroConfig = () => {
|
|
@@ -59,35 +58,6 @@ const updateAstroConfig = () => {
|
|
|
59
58
|
});
|
|
60
59
|
};
|
|
61
60
|
|
|
62
|
-
const updateEnvDeclaration = (ctx: C3Context) => {
|
|
63
|
-
if (!usesTypescript(ctx)) {
|
|
64
|
-
return;
|
|
65
|
-
}
|
|
66
|
-
|
|
67
|
-
const filePath = "src/env.d.ts";
|
|
68
|
-
|
|
69
|
-
updateStatus(`Adding type declarations in ${blue(filePath)}`);
|
|
70
|
-
|
|
71
|
-
transformFile(filePath, {
|
|
72
|
-
visitProgram: function (n) {
|
|
73
|
-
const snippets = loadTemplateSnippets(ctx);
|
|
74
|
-
const patch = snippets.runtimeDeclarationTs;
|
|
75
|
-
const b = recast.types.builders;
|
|
76
|
-
|
|
77
|
-
// Preserve comments with the new body
|
|
78
|
-
const comments = n.get("comments").value;
|
|
79
|
-
n.node.comments = comments.map((c: recast.types.namedTypes.CommentLine) =>
|
|
80
|
-
b.commentLine(c.value),
|
|
81
|
-
);
|
|
82
|
-
|
|
83
|
-
// Add the patch
|
|
84
|
-
n.get("body").push(...patch);
|
|
85
|
-
|
|
86
|
-
return false;
|
|
87
|
-
},
|
|
88
|
-
});
|
|
89
|
-
};
|
|
90
|
-
|
|
91
61
|
const config: TemplateConfig = {
|
|
92
62
|
configVersion: 1,
|
|
93
63
|
id: "astro",
|
|
@@ -95,7 +65,21 @@ const config: TemplateConfig = {
|
|
|
95
65
|
platform: "workers",
|
|
96
66
|
displayName: "Astro",
|
|
97
67
|
copyFiles: {
|
|
98
|
-
|
|
68
|
+
async selectVariant(ctx) {
|
|
69
|
+
// Note: this `selectVariant` function should not be needed
|
|
70
|
+
// this is just a quick workaround until
|
|
71
|
+
// https://github.com/cloudflare/workers-sdk/issues/7495
|
|
72
|
+
// is resolved
|
|
73
|
+
return usesTypescript(ctx) ? "ts" : "js";
|
|
74
|
+
},
|
|
75
|
+
variants: {
|
|
76
|
+
js: {
|
|
77
|
+
path: "./templates/js",
|
|
78
|
+
},
|
|
79
|
+
ts: {
|
|
80
|
+
path: "./templates/ts",
|
|
81
|
+
},
|
|
82
|
+
},
|
|
99
83
|
},
|
|
100
84
|
devScript: "dev",
|
|
101
85
|
deployScript: "deploy",
|