create-cloudflare 0.0.0-c46e02dfd → 0.0.0-c4cf040dc

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 (48) hide show
  1. package/dist/cli.js +3308 -3260
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +6 -5
  4. package/templates/angular/c3.ts +25 -13
  5. package/templates/angular/templates/src/server.ts +15 -0
  6. package/templates/angular/templates/tools/copy-files.mjs +8 -2
  7. package/templates/astro/c3.ts +17 -33
  8. package/templates/astro/templates/ts/worker-configuration.d.ts +4 -0
  9. package/templates/{svelte → astro/templates}/ts/wrangler.toml +2 -1
  10. package/templates/hello-world/js/package.json +1 -1
  11. package/templates/hello-world/ts/package.json +1 -1
  12. package/templates/hello-world/ts/test/tsconfig.json +1 -1
  13. package/templates/next/README.md +1 -1
  14. package/templates/next/app/js/app/api/hello/route.js +4 -4
  15. package/templates/next/app/ts/app/api/hello/route.ts +4 -5
  16. package/templates/next/c3.ts +3 -3
  17. package/templates/nuxt/c3.ts +1 -1
  18. package/templates/svelte/c3.ts +31 -4
  19. package/templates-experimental/angular/c3.ts +21 -7
  20. package/templates-experimental/angular/templates/src/server.ts +15 -0
  21. package/templates-experimental/astro/c3.ts +17 -33
  22. package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +4 -0
  23. package/templates-experimental/astro/templates/ts/wrangler.toml +12 -0
  24. package/templates-experimental/hello-world-with-assets/js/package.json +1 -1
  25. package/templates-experimental/hello-world-with-assets/ts/package.json +1 -1
  26. package/templates-experimental/next/c3.ts +4 -0
  27. package/templates-experimental/nuxt/c3.ts +2 -2
  28. package/templates-experimental/nuxt/templates/wrangler.toml +2 -2
  29. package/templates-experimental/solid/c3.ts +7 -50
  30. package/templates-experimental/solid/templates/wrangler.toml +2 -2
  31. package/templates-experimental/svelte/c3.ts +1 -4
  32. package/templates-experimental/vue/c3.ts +33 -0
  33. package/templates-experimental/{svelte/ts → vue/templates}/wrangler.toml +1 -2
  34. package/templates/angular/templates/server.ts +0 -34
  35. package/templates/angular/templates/tools/alter-polyfills.mjs +0 -27
  36. package/templates/angular/templates/tools/paths.mjs +0 -9
  37. package/templates-experimental/angular/templates/server.ts +0 -34
  38. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +0 -32
  39. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +0 -27
  40. /package/templates/astro/templates/{wrangler.toml → js/wrangler.toml} +0 -0
  41. /package/templates/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  42. /package/templates/svelte/{js → templates}/wrangler.toml +0 -0
  43. /package/templates-experimental/astro/templates/{public → js/public}/.assetsignore +0 -0
  44. /package/templates-experimental/astro/templates/{wrangler.toml → js/wrangler.toml} +0 -0
  45. /package/templates-experimental/{svelte/js/static → astro/templates/ts/public}/.assetsignore +0 -0
  46. /package/templates-experimental/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  47. /package/templates-experimental/svelte/{ts → templates}/static/.assetsignore +0 -0
  48. /package/templates-experimental/svelte/{js → templates}/wrangler.toml +0 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "0.0.0-c46e02dfd",
3
+ "version": "0.0.0-c4cf040dc",
4
4
  "description": "A CLI for creating and deploying new applications to Cloudflare.",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -30,7 +30,7 @@
30
30
  "@babel/parser": "^7.21.3",
31
31
  "@babel/types": "^7.21.4",
32
32
  "@clack/prompts": "^0.6.3",
33
- "@cloudflare/workers-types": "^4.20241106.0",
33
+ "@cloudflare/workers-types": "^4.20241205.0",
34
34
  "@iarna/toml": "^3.0.0",
35
35
  "@types/command-exists": "^1.2.0",
36
36
  "@types/cross-spawn": "^6.0.2",
@@ -66,16 +66,17 @@
66
66
  "wrap-ansi": "^9.0.0",
67
67
  "xdg-app-paths": "^8.3.0",
68
68
  "yargs": "^17.7.2",
69
- "wrangler": "0.0.0-c46e02dfd",
70
69
  "@cloudflare/cli": "1.1.1",
70
+ "@cloudflare/eslint-config-worker": "1.1.0",
71
71
  "@cloudflare/workers-tsconfig": "0.0.0",
72
- "@cloudflare/eslint-config-worker": "1.1.0"
72
+ "wrangler": "0.0.0-c4cf040dc"
73
73
  },
74
74
  "engines": {
75
75
  "node": ">=18.14.1"
76
76
  },
77
77
  "workers-sdk": {
78
- "prerelease": true
78
+ "prerelease": true,
79
+ "type": "cli"
79
80
  },
80
81
  "volta": {
81
82
  "extends": "../../package.json"
@@ -13,7 +13,11 @@ import type { C3Context } from "types";
13
13
  const { npm } = detectPackageManager();
14
14
 
15
15
  const generate = async (ctx: C3Context) => {
16
- await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
16
+ await runFrameworkGenerator(ctx, [
17
+ ctx.project.name,
18
+ "--ssr",
19
+ "--server-routing" /** Dev Preview API */,
20
+ ]);
17
21
  logRaw("");
18
22
  };
19
23
 
@@ -24,14 +28,11 @@ const configure = async (ctx: C3Context) => {
24
28
  };
25
29
 
26
30
  async function installCFWorker() {
27
- await installPackages(
28
- ["@cloudflare/workers-types", "@miniflare/tre@next", "wrangler@beta"],
29
- {
30
- dev: true,
31
- startText: "Installing adapter dependencies",
32
- doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
33
- },
34
- );
31
+ await installPackages(["xhr2"], {
32
+ dev: true,
33
+ startText: "Installing additional dependencies",
34
+ doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
35
+ });
35
36
  }
36
37
  async function updateAppCode() {
37
38
  const s = spinner();
@@ -50,12 +51,21 @@ async function updateAppCode() {
50
51
  writeFile(resolve(appConfigPath), newAppConfig);
51
52
  s.stop(`${brandColor(`updated`)} ${dim(appConfigPath)}`);
52
53
 
54
+ // Update an app server routes file to:
55
+ const appServerRoutesPath = "src/app/app.routes.server.ts";
56
+ const appRoutes = readFile(resolve(appServerRoutesPath));
57
+ const newAppRoutes = appRoutes.replace(
58
+ "RenderMode.Prerender",
59
+ "RenderMode.Server",
60
+ );
61
+ writeFile(resolve(appServerRoutesPath), newAppRoutes);
62
+ s.stop(`${brandColor(`updated`)} ${dim(appServerRoutesPath)}`);
63
+
53
64
  // Remove unwanted dependencies
54
65
  s.start(`Updating package.json`);
55
66
  const packageJsonPath = resolve("package.json");
56
67
  const packageManifest = readJSON(packageJsonPath);
57
68
 
58
- delete packageManifest["dependencies"]["@angular/ssr"];
59
69
  delete packageManifest["dependencies"]["express"];
60
70
  delete packageManifest["devDependencies"]["@types/express"];
61
71
 
@@ -70,6 +80,8 @@ function updateAngularJson(ctx: C3Context) {
70
80
  // Update builder
71
81
  const architectSection = angularJson.projects[ctx.project.name].architect;
72
82
  architectSection.build.options.outputPath = "dist";
83
+ architectSection.build.options.outputMode = "server";
84
+ architectSection.build.options.ssr.experimentalPlatform = "neutral";
73
85
  architectSection.build.options.assets.push("src/_routes.json");
74
86
 
75
87
  writeFile(resolve("angular.json"), JSON.stringify(angularJson, null, 2));
@@ -87,14 +99,14 @@ const config: TemplateConfig = {
87
99
  },
88
100
  devScript: "start",
89
101
  deployScript: "deploy",
102
+ previewScript: "start",
90
103
  generate,
91
104
  configure,
92
105
  transformPackageJson: async () => ({
93
106
  scripts: {
94
- start: `${npm} run build && wrangler pages dev dist/cloudflare ${await compatDateFlag()} --experimental-local`,
107
+ start: `${npm} run build && wrangler pages dev dist/cloudflare ${await compatDateFlag()}`,
95
108
  build: `ng build && ${npm} run process`,
96
- process:
97
- "node ./tools/copy-files.mjs && node ./tools/alter-polyfills.mjs",
109
+ process: "node ./tools/copy-files.mjs",
98
110
  deploy: `${npm} run build && wrangler pages deploy dist/cloudflare`,
99
111
  },
100
112
  }),
@@ -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,13 @@
1
1
  // Copy the files over so that they can be uploaded by the pages publish command.
2
2
  import fs from "node:fs";
3
- import { join } from "node:path";
4
- import { client, cloudflare, ssr, worker } from "./paths.mjs";
3
+ import { join, resolve } from "node:path";
4
+ import { fileURLToPath } from "node:url";
5
+
6
+ const root = resolve(fileURLToPath(import.meta.url), "../../");
7
+ const client = resolve(root, "dist/browser");
8
+ const ssr = resolve(root, "dist/server");
9
+ const cloudflare = resolve(root, "dist/cloudflare");
10
+ const worker = resolve(cloudflare, "_worker.js");
5
11
 
6
12
  fs.cpSync(client, cloudflare, { recursive: true });
7
13
  fs.cpSync(ssr, worker, { recursive: true });
@@ -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 { loadTemplateSnippets, transformFile } from "helpers/codemod";
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 (ctx: C3Context) => {
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: "pages",
96
66
  displayName: "Astro",
97
67
  copyFiles: {
98
- path: "./templates",
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",
@@ -0,0 +1,4 @@
1
+ // Generated by Wrangler
2
+ // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
3
+ interface Env {
4
+ }
@@ -1,7 +1,8 @@
1
1
  #:schema node_modules/wrangler/config-schema.json
2
2
  name = "<TBD>"
3
3
  compatibility_date = "<TBD>"
4
- pages_build_output_dir = ".svelte-kit/cloudflare"
4
+ compatibility_flags = ["nodejs_compat"]
5
+ pages_build_output_dir = "./dist"
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
@@ -11,6 +11,6 @@
11
11
  "devDependencies": {
12
12
  "@cloudflare/vitest-pool-workers": "^0.5.2",
13
13
  "wrangler": "^3.60.3",
14
- "vitest": "2.0.5"
14
+ "vitest": "2.1.8"
15
15
  }
16
16
  }
@@ -12,7 +12,7 @@
12
12
  "devDependencies": {
13
13
  "@cloudflare/vitest-pool-workers": "^0.5.2",
14
14
  "typescript": "^5.5.2",
15
- "vitest": "2.0.5",
15
+ "vitest": "2.1.8",
16
16
  "wrangler": "^3.60.3"
17
17
  }
18
18
  }
@@ -3,6 +3,6 @@
3
3
  "compilerOptions": {
4
4
  "types": ["@cloudflare/workers-types/experimental", "@cloudflare/vitest-pool-workers"]
5
5
  },
6
- "include": ["./**/*.ts", "../src/env.d.ts"],
6
+ "include": ["./**/*.ts", "../worker-configuration.d.ts"],
7
7
  "exclude": []
8
8
  }
@@ -46,7 +46,7 @@ In order to enable the example:
46
46
  ```ts
47
47
  // KV Example:
48
48
  ```
49
- and uncomment the commented lines below it.
49
+ and uncomment the commented lines below it (also uncomment the relevant imports).
50
50
  - Do the same in the `wrangler.toml` file, where
51
51
  the comment is:
52
52
  ```
@@ -1,9 +1,9 @@
1
- import { getRequestContext } from '@cloudflare/next-on-pages'
1
+ // import { getRequestContext } from '@cloudflare/next-on-pages'
2
2
 
3
3
  export const runtime = 'edge'
4
4
 
5
- export async function GET(request) {
6
- let responseText = 'Hello World'
5
+ export async function GET() {
6
+ const responseText = 'Hello World'
7
7
 
8
8
  // In the edge runtime you can use Bindings that are available in your application
9
9
  // (for more details see:
@@ -15,7 +15,7 @@ export async function GET(request) {
15
15
  // const myKv = getRequestContext().env.MY_KV_NAMESPACE
16
16
  // await myKv.put('suffix', ' from a KV store!')
17
17
  // const suffix = await myKv.get('suffix')
18
- // responseText += suffix
18
+ // return new Response(responseText + suffix)
19
19
 
20
20
  return new Response(responseText)
21
21
  }
@@ -1,10 +1,9 @@
1
- import type { NextRequest } from 'next/server'
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(request: NextRequest) {
7
- let responseText = 'Hello World'
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 += suffix
18
+ // return new Response(responseText + suffix)
20
19
 
21
20
  return new Response(responseText)
22
21
  }
@@ -49,10 +49,10 @@ const generate = async (ctx: C3Context) => {
49
49
  updateStatus("Created wrangler.toml file");
50
50
  };
51
51
 
52
- const updateNextConfig = () => {
52
+ const updateNextConfig = (usesTs: boolean) => {
53
53
  const s = spinner();
54
54
 
55
- const configFile = "next.config.mjs";
55
+ const configFile = `next.config.${usesTs ? "ts" : "mjs"}`;
56
56
  s.start(`Updating \`${configFile}\``);
57
57
 
58
58
  const configContent = readFile(configFile);
@@ -107,7 +107,7 @@ const configure = async (ctx: C3Context) => {
107
107
  await writeEslintrc(ctx);
108
108
  }
109
109
 
110
- updateNextConfig();
110
+ updateNextConfig(usesTs);
111
111
 
112
112
  copyFile(
113
113
  join(getTemplatePath(ctx), "README.md"),
@@ -24,7 +24,7 @@ const generate = async (ctx: C3Context) => {
24
24
  gitFlag,
25
25
  ]);
26
26
 
27
- writeFile("./.node-version", "17");
27
+ writeFile("./.node-version", "18");
28
28
 
29
29
  logRaw(""); // newline
30
30
  };
@@ -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
- variants: {
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, [ctx.project.name, "--ssr"]);
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(["@cloudflare/workers-types", "wrangler"], {
30
+ await installPackages(["xhr2"], {
27
31
  dev: true,
28
- startText: "Installing adapter dependencies",
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.assets.push("src/_routes.json");
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 && ${npm} run process`,
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 { loadTemplateSnippets, transformFile } from "helpers/codemod";
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 (ctx: C3Context) => {
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
- path: "./templates",
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",
@@ -0,0 +1,4 @@
1
+ // Generated by Wrangler
2
+ // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
3
+ interface Env {
4
+ }
@@ -0,0 +1,12 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ compatibility_flags = ["nodejs_compat"]
5
+ main = "./dist/_worker.js/index.js"
6
+ assets = { directory = "./dist", binding = "ASSETS" }
7
+
8
+ # Workers Logs
9
+ # Docs: https://developers.cloudflare.com/workers/observability/logs/workers-logs/
10
+ # Configuration: https://developers.cloudflare.com/workers/observability/logs/workers-logs/#enable-workers-logs
11
+ [observability]
12
+ enabled = true
@@ -11,6 +11,6 @@
11
11
  "devDependencies": {
12
12
  "@cloudflare/vitest-pool-workers": "^0.5.2",
13
13
  "wrangler": "^3.60.3",
14
- "vitest": "2.0.5"
14
+ "vitest": "2.1.8"
15
15
  }
16
16
  }
@@ -12,7 +12,7 @@
12
12
  "devDependencies": {
13
13
  "@cloudflare/vitest-pool-workers": "^0.5.2",
14
14
  "typescript": "^5.5.2",
15
- "vitest": "2.0.5",
15
+ "vitest": "2.1.8",
16
16
  "wrangler": "^3.60.3"
17
17
  }
18
18
  }
@@ -30,6 +30,10 @@ export default {
30
30
  configVersion: 1,
31
31
  id: "next",
32
32
  frameworkCli: "create-next-app",
33
+ // TODO: here we need to specify a version of create-next-app which is different from the
34
+ // standard one used in the stable Next.js template, that's because our open-next adapter
35
+ // is not yet fully ready for Next.js 15, once it is we should remove the following
36
+ frameworkCliPinnedVersion: "14.2.5",
33
37
  platform: "workers",
34
38
  displayName: "Next (using Node.js compat + Workers Assets)",
35
39
  path: "templates-experimental/next",