create-cloudflare 0.0.0-eec2a7074 → 0.0.0-eef649c82

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 (144) hide show
  1. package/dist/cli.js +6279 -7656
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +7 -6
  4. package/templates/analog/templates/wrangler.json +5 -0
  5. package/templates/angular/c3.ts +25 -13
  6. package/templates/angular/templates/src/server.ts +15 -0
  7. package/templates/angular/templates/tools/copy-files.mjs +8 -2
  8. package/templates/astro/c3.ts +17 -33
  9. package/templates/astro/templates/js/wrangler.json +8 -0
  10. package/templates/astro/templates/ts/worker-configuration.d.ts +4 -0
  11. package/templates/astro/templates/ts/wrangler.json +8 -0
  12. package/templates/common/js/package.json +1 -1
  13. package/templates/common/js/wrangler.json +8 -0
  14. package/templates/common/ts/package.json +1 -1
  15. package/templates/common/ts/wrangler.json +8 -0
  16. package/templates/hello-world/js/package.json +2 -2
  17. package/templates/hello-world/js/wrangler.json +8 -0
  18. package/templates/hello-world/py/package.json +1 -1
  19. package/templates/hello-world/py/wrangler.json +9 -0
  20. package/templates/hello-world/ts/package.json +2 -2
  21. package/templates/hello-world/ts/test/tsconfig.json +1 -1
  22. package/templates/hello-world/ts/wrangler.json +8 -0
  23. package/templates/hello-world-durable-object/js/package.json +1 -1
  24. package/templates/hello-world-durable-object/js/wrangler.json +24 -0
  25. package/templates/hello-world-durable-object/ts/package.json +1 -1
  26. package/templates/hello-world-durable-object/ts/src/index.ts +1 -1
  27. package/templates/hello-world-durable-object/ts/wrangler.json +24 -0
  28. package/templates/hono/templates/wrangler.json +8 -0
  29. package/templates/next/README.md +1 -1
  30. package/templates/next/app/js/app/api/hello/route.js +4 -4
  31. package/templates/next/app/ts/app/api/hello/route.ts +4 -5
  32. package/templates/next/c3.ts +4 -4
  33. package/templates/next/wrangler.json +8 -0
  34. package/templates/nuxt/c3.ts +1 -1
  35. package/templates/nuxt/templates/wrangler.json +8 -0
  36. package/templates/openapi/ts/package.json +1 -1
  37. package/templates/openapi/ts/wrangler.json +8 -0
  38. package/templates/pre-existing/js/package.json +1 -1
  39. package/templates/pre-existing/js/wrangler.json +5 -0
  40. package/templates/queues/js/package.json +1 -1
  41. package/templates/queues/js/wrangler.json +21 -0
  42. package/templates/queues/ts/package.json +1 -1
  43. package/templates/queues/ts/wrangler.json +21 -0
  44. package/templates/qwik/templates/wrangler.json +8 -0
  45. package/templates/remix/templates/wrangler.json +5 -0
  46. package/templates/scheduled/js/package.json +1 -1
  47. package/templates/scheduled/js/wrangler.json +13 -0
  48. package/templates/scheduled/ts/package.json +1 -1
  49. package/templates/scheduled/ts/wrangler.json +13 -0
  50. package/templates/solid/c3.ts +1 -1
  51. package/templates/solid/templates/wrangler.json +8 -0
  52. package/templates/svelte/c3.ts +32 -5
  53. package/templates/svelte/templates/wrangler.json +5 -0
  54. package/templates-experimental/angular/c3.ts +21 -7
  55. package/templates-experimental/angular/templates/src/server.ts +15 -0
  56. package/templates-experimental/angular/templates/wrangler.json +12 -0
  57. package/templates-experimental/astro/c3.ts +17 -33
  58. package/templates-experimental/astro/templates/js/wrangler.json +15 -0
  59. package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +4 -0
  60. package/templates-experimental/astro/templates/ts/wrangler.json +15 -0
  61. package/templates-experimental/docusaurus/templates/wrangler.json +10 -0
  62. package/templates-experimental/gatsby/templates/wrangler.json +10 -0
  63. package/templates-experimental/hello-world-assets-only/templates/wrangler.json +10 -0
  64. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +1 -1
  65. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.json +28 -0
  66. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +1 -1
  67. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.json +28 -0
  68. package/templates-experimental/hello-world-with-assets/js/package.json +2 -2
  69. package/templates-experimental/hello-world-with-assets/js/wrangler.json +15 -0
  70. package/templates-experimental/hello-world-with-assets/py/package.json +1 -1
  71. package/templates-experimental/hello-world-with-assets/py/wrangler.json +15 -0
  72. package/templates-experimental/hello-world-with-assets/ts/package.json +2 -2
  73. package/templates-experimental/hello-world-with-assets/ts/wrangler.json +15 -0
  74. package/templates-experimental/hono/templates/wrangler.json +9 -0
  75. package/templates-experimental/next/c3.ts +12 -5
  76. package/templates-experimental/next/templates/.dev.vars +2 -0
  77. package/templates-experimental/next/templates/__dot__gitignore +2 -5
  78. package/templates-experimental/next/templates/cloudflare-env.d.ts +5 -0
  79. package/templates-experimental/next/templates/open-next.config.ts +28 -0
  80. package/templates-experimental/next/templates/wrangler.json +13 -0
  81. package/templates-experimental/nuxt/c3.ts +2 -2
  82. package/templates-experimental/nuxt/templates/wrangler.json +12 -0
  83. package/templates-experimental/qwik/templates/wrangler.json +15 -0
  84. package/templates-experimental/remix/c3.ts +1 -26
  85. package/templates-experimental/remix/templates/public/.assetsignore +0 -4
  86. package/templates-experimental/remix/templates/wrangler.toml +1 -1
  87. package/templates-experimental/solid/c3.ts +8 -51
  88. package/templates-experimental/solid/templates/wrangler.json +15 -0
  89. package/templates-experimental/svelte/c3.ts +2 -5
  90. package/templates-experimental/svelte/templates/wrangler.json +12 -0
  91. package/templates-experimental/vue/c3.ts +33 -0
  92. package/templates-experimental/vue/templates/wrangler.json +10 -0
  93. package/templates/analog/templates/wrangler.toml +0 -85
  94. package/templates/angular/templates/server.ts +0 -34
  95. package/templates/angular/templates/tools/alter-polyfills.mjs +0 -27
  96. package/templates/angular/templates/tools/paths.mjs +0 -9
  97. package/templates/astro/templates/wrangler.toml +0 -85
  98. package/templates/common/js/wrangler.toml +0 -113
  99. package/templates/common/ts/wrangler.toml +0 -113
  100. package/templates/hello-world/js/wrangler.toml +0 -114
  101. package/templates/hello-world/py/wrangler.toml +0 -114
  102. package/templates/hello-world/ts/wrangler.toml +0 -114
  103. package/templates/hello-world-durable-object/js/wrangler.toml +0 -113
  104. package/templates/hello-world-durable-object/ts/wrangler.toml +0 -113
  105. package/templates/hono/templates/wrangler.toml +0 -113
  106. package/templates/next/wrangler.toml +0 -86
  107. package/templates/nuxt/templates/wrangler.toml +0 -86
  108. package/templates/openapi/ts/wrangler.toml +0 -113
  109. package/templates/pre-existing/js/wrangler.toml +0 -4
  110. package/templates/queues/js/wrangler.toml +0 -118
  111. package/templates/queues/ts/wrangler.toml +0 -118
  112. package/templates/qwik/templates/wrangler.toml +0 -86
  113. package/templates/remix/templates/wrangler.toml +0 -85
  114. package/templates/scheduled/js/wrangler.toml +0 -119
  115. package/templates/scheduled/ts/wrangler.toml +0 -119
  116. package/templates/solid/templates/wrangler.toml +0 -84
  117. package/templates/svelte/js/wrangler.toml +0 -85
  118. package/templates/svelte/ts/wrangler.toml +0 -85
  119. package/templates-experimental/angular/templates/server.ts +0 -34
  120. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +0 -32
  121. package/templates-experimental/angular/templates/wrangler.toml +0 -11
  122. package/templates-experimental/astro/templates/wrangler.toml +0 -12
  123. package/templates-experimental/docusaurus/templates/wrangler.toml +0 -10
  124. package/templates-experimental/gatsby/templates/wrangler.toml +0 -10
  125. package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +0 -10
  126. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +0 -24
  127. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +0 -24
  128. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +0 -12
  129. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +0 -12
  130. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +0 -12
  131. package/templates-experimental/hono/templates/wrangler.toml +0 -5
  132. package/templates-experimental/next/templates/env.d.ts +0 -5
  133. package/templates-experimental/next/templates/wrangler.toml +0 -12
  134. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +0 -27
  135. package/templates-experimental/nuxt/templates/wrangler.toml +0 -11
  136. package/templates-experimental/qwik/templates/wrangler.toml +0 -12
  137. package/templates-experimental/solid/templates/wrangler.toml +0 -12
  138. package/templates-experimental/svelte/js/wrangler.toml +0 -11
  139. package/templates-experimental/svelte/ts/wrangler.toml +0 -11
  140. /package/templates/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  141. /package/templates-experimental/astro/templates/{public → js/public}/.assetsignore +0 -0
  142. /package/templates-experimental/{svelte/js/static → astro/templates/ts/public}/.assetsignore +0 -0
  143. /package/templates-experimental/astro/{snippets/runtimeDeclaration.ts → templates/ts/src/env.d.ts} +0 -0
  144. /package/templates-experimental/svelte/{ts → templates}/static/.assetsignore +0 -0
@@ -10,6 +10,6 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "typescript": "^5.5.2",
13
- "wrangler": "^3.60.3"
13
+ "wrangler": "^3.101.0"
14
14
  }
15
15
  }
@@ -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
+ }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "compatibility_flags": [
5
+ "nodejs_compat"
6
+ ],
7
+ "pages_build_output_dir": "./dist"
8
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "pages_build_output_dir": "./build/client"
5
+ }
@@ -8,6 +8,6 @@
8
8
  "start": "wrangler dev --test-scheduled"
9
9
  },
10
10
  "devDependencies": {
11
- "wrangler": "^3.60.3"
11
+ "wrangler": "^3.101.0"
12
12
  }
13
13
  }
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.js",
4
+ "compatibility_date": "<TBD>",
5
+ "observability": {
6
+ "enabled": true
7
+ },
8
+ "triggers": {
9
+ "crons": [
10
+ "* * * * *"
11
+ ]
12
+ }
13
+ }
@@ -10,6 +10,6 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "typescript": "^5.5.2",
13
- "wrangler": "^3.60.3"
13
+ "wrangler": "^3.101.0"
14
14
  }
15
15
  }
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.ts",
4
+ "compatibility_date": "<TBD>",
5
+ "observability": {
6
+ "enabled": true
7
+ },
8
+ "triggers": {
9
+ "crons": [
10
+ "* * * * *"
11
+ ]
12
+ }
13
+ }
@@ -66,7 +66,7 @@ const config: TemplateConfig = {
66
66
  configVersion: 1,
67
67
  id: "solid",
68
68
  frameworkCli: "create-solid",
69
- displayName: "Solid",
69
+ displayName: "SolidStart",
70
70
  platform: "pages",
71
71
  copyFiles: {
72
72
  path: "./templates",
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "compatibility_flags": [
5
+ "nodejs_compat"
6
+ ],
7
+ "pages_build_output_dir": "./dist"
8
+ }
@@ -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;
@@ -98,13 +128,10 @@ const config: TemplateConfig = {
98
128
  configVersion: 1,
99
129
  id: "svelte",
100
130
  frameworkCli: "sv",
101
- displayName: "Svelte",
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,
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "pages_build_output_dir": ".svelte-kit/cloudflare"
5
+ }
@@ -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 };
@@ -0,0 +1,12 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "./dist/server/server.mjs",
4
+ "compatibility_date": "<TBD>",
5
+ "assets": {
6
+ "binding": "ASSETS",
7
+ "directory": "./dist/browser"
8
+ },
9
+ "observability": {
10
+ "enabled": true
11
+ }
12
+ }
@@ -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,15 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "./dist/_worker.js/index.js",
4
+ "compatibility_date": "<TBD>",
5
+ "compatibility_flags": [
6
+ "nodejs_compat"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSETS",
10
+ "directory": "./dist"
11
+ },
12
+ "observability": {
13
+ "enabled": true
14
+ }
15
+ }
@@ -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,15 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "./dist/_worker.js/index.js",
4
+ "compatibility_date": "<TBD>",
5
+ "compatibility_flags": [
6
+ "nodejs_compat"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSETS",
10
+ "directory": "./dist"
11
+ },
12
+ "observability": {
13
+ "enabled": true
14
+ }
15
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "assets": {
5
+ "directory": "./build"
6
+ },
7
+ "observability": {
8
+ "enabled": true
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "assets": {
5
+ "directory": "./public"
6
+ },
7
+ "observability": {
8
+ "enabled": true
9
+ }
10
+ }
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "assets": {
5
+ "directory": "./public"
6
+ },
7
+ "observability": {
8
+ "enabled": true
9
+ }
10
+ }
@@ -8,6 +8,6 @@
8
8
  "start": "wrangler dev"
9
9
  },
10
10
  "devDependencies": {
11
- "wrangler": "^3.60.3"
11
+ "wrangler": "^3.101.0"
12
12
  }
13
13
  }
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.js",
4
+ "compatibility_date": "<TBD>",
5
+ "assets": {
6
+ "binding": "ASSETS",
7
+ "directory": "./public"
8
+ },
9
+ "durable_objects": {
10
+ "bindings": [
11
+ {
12
+ "class_name": "MyDurableObject",
13
+ "name": "MY_DURABLE_OBJECT"
14
+ }
15
+ ]
16
+ },
17
+ "migrations": [
18
+ {
19
+ "new_classes": [
20
+ "MyDurableObject"
21
+ ],
22
+ "tag": "v1"
23
+ }
24
+ ],
25
+ "observability": {
26
+ "enabled": true
27
+ }
28
+ }
@@ -10,6 +10,6 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "typescript": "^5.5.2",
13
- "wrangler": "^3.60.3"
13
+ "wrangler": "^3.101.0"
14
14
  }
15
15
  }
@@ -0,0 +1,28 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.ts",
4
+ "compatibility_date": "<TBD>",
5
+ "migrations": [
6
+ {
7
+ "new_classes": [
8
+ "MyDurableObject"
9
+ ],
10
+ "tag": "v1"
11
+ }
12
+ ],
13
+ "assets": {
14
+ "binding": "ASSETS",
15
+ "directory": "./public"
16
+ },
17
+ "durable_objects": {
18
+ "bindings": [
19
+ {
20
+ "class_name": "MyDurableObject",
21
+ "name": "MY_DURABLE_OBJECT"
22
+ }
23
+ ]
24
+ },
25
+ "observability": {
26
+ "enabled": true
27
+ }
28
+ }
@@ -10,7 +10,7 @@
10
10
  },
11
11
  "devDependencies": {
12
12
  "@cloudflare/vitest-pool-workers": "^0.5.2",
13
- "wrangler": "^3.60.3",
14
- "vitest": "2.0.5"
13
+ "wrangler": "^3.101.0",
14
+ "vitest": "2.1.8"
15
15
  }
16
16
  }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.js",
4
+ "compatibility_date": "<TBD>",
5
+ "compatibility_flags": [
6
+ "nodejs_compat"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSETS",
10
+ "directory": "./public"
11
+ },
12
+ "observability": {
13
+ "enabled": true
14
+ }
15
+ }
@@ -8,6 +8,6 @@
8
8
  "start": "wrangler dev"
9
9
  },
10
10
  "devDependencies": {
11
- "wrangler": "^3.60.3"
11
+ "wrangler": "^3.101.0"
12
12
  }
13
13
  }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/entry.py",
4
+ "compatibility_date": "<TBD>",
5
+ "compatibility_flags": [
6
+ "python_workers"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSETS",
10
+ "directory": "./public"
11
+ },
12
+ "observability": {
13
+ "enabled": true
14
+ }
15
+ }
@@ -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",
16
- "wrangler": "^3.60.3"
15
+ "vitest": "2.1.8",
16
+ "wrangler": "^3.101.0"
17
17
  }
18
18
  }
@@ -0,0 +1,15 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.ts",
4
+ "compatibility_date": "<TBD>",
5
+ "compatibility_flags": [
6
+ "nodejs_compat"
7
+ ],
8
+ "assets": {
9
+ "binding": "ASSETS",
10
+ "directory": "./public"
11
+ },
12
+ "observability": {
13
+ "enabled": true
14
+ }
15
+ }
@@ -0,0 +1,9 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.ts",
4
+ "compatibility_date": "<TBD>",
5
+ "assets": {
6
+ "binding": "ASSETS",
7
+ "directory": "./public"
8
+ }
9
+ }
@@ -18,7 +18,10 @@ const generate = async (ctx: C3Context) => {
18
18
  };
19
19
 
20
20
  const configure = async () => {
21
- const packages = ["@opennextjs/cloudflare", "@cloudflare/workers-types"];
21
+ const packages = [
22
+ "@opennextjs/cloudflare@0.3.x",
23
+ "@cloudflare/workers-types",
24
+ ];
22
25
  await installPackages(packages, {
23
26
  dev: true,
24
27
  startText: "Adding the Cloudflare adapter",
@@ -30,8 +33,12 @@ export default {
30
33
  configVersion: 1,
31
34
  id: "next",
32
35
  frameworkCli: "create-next-app",
36
+ // TODO: here we need to specify a version of create-next-app which is different from the
37
+ // standard one used in the stable Next.js template, that's because our open-next adapter
38
+ // is not yet fully ready for Next.js 15, once it is we should remove the following
39
+ frameworkCliPinnedVersion: "^14.2.23",
33
40
  platform: "workers",
34
- displayName: "Next (using Node.js compat + Workers Assets)",
41
+ displayName: "Next.js (using Node.js compat + Workers Assets)",
35
42
  path: "templates-experimental/next",
36
43
  copyFiles: {
37
44
  path: "./templates",
@@ -40,9 +47,9 @@ export default {
40
47
  configure,
41
48
  transformPackageJson: async () => ({
42
49
  scripts: {
43
- deploy: `cloudflare && wrangler deploy`,
44
- preview: `cloudflare && wrangler dev`,
45
- "cf-typegen": `wrangler types --env-interface CloudflareEnv env.d.ts`,
50
+ deploy: `opennextjs-cloudflare && wrangler deploy`,
51
+ preview: `opennextjs-cloudflare && wrangler dev`,
52
+ "cf-typegen": `wrangler types --env-interface CloudflareEnv cloudflare-env.d.ts`,
46
53
  },
47
54
  }),
48
55
  devScript: "dev",
@@ -0,0 +1,2 @@
1
+ # Load .env.development* files when running `wrangler dev`
2
+ NEXTJS_ENV=development
@@ -35,8 +35,5 @@ yarn-error.log*
35
35
  *.tsbuildinfo
36
36
  next-env.d.ts
37
37
 
38
-
39
- # Cloudflare related
40
- /.save.next
41
- /.worker-next
42
- /.wrangler
38
+ # OpenNext
39
+ /.open-next