create-cloudflare 0.0.0-fb819f997 → 0.0.0-fbba583df

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 (167) hide show
  1. package/dist/cli.js +11811 -11392
  2. package/dist/tsconfig.tsbuildinfo +1 -1
  3. package/package.json +12 -7
  4. package/templates/analog/templates/worker-configuration.d.ts +1 -1
  5. package/templates/analog/templates/wrangler.jsonc +5 -0
  6. package/templates/angular/c3.ts +24 -5
  7. package/templates/astro/templates/js/wrangler.jsonc +8 -0
  8. package/templates/astro/templates/ts/worker-configuration.d.ts +1 -1
  9. package/templates/astro/templates/ts/wrangler.jsonc +8 -0
  10. package/templates/common/js/package.json +1 -1
  11. package/templates/common/js/wrangler.jsonc +8 -0
  12. package/templates/common/ts/package.json +1 -1
  13. package/templates/common/ts/src/index.ts +1 -1
  14. package/templates/common/ts/worker-configuration.d.ts +1 -1
  15. package/templates/common/ts/wrangler.jsonc +8 -0
  16. package/templates/docusaurus/c3.ts +1 -0
  17. package/templates/hello-world/c3.ts +17 -1
  18. package/templates/hello-world/js/package.json +3 -3
  19. package/templates/hello-world/js/test/index.spec.js +1 -1
  20. package/templates/hello-world/js/vitest.config.js +1 -1
  21. package/templates/hello-world/js/wrangler.jsonc +8 -0
  22. package/templates/hello-world/py/.python-version +1 -0
  23. package/templates/hello-world/py/README.md +23 -0
  24. package/templates/hello-world/py/package.json +1 -1
  25. package/templates/hello-world/py/pyproject.toml +9 -0
  26. package/templates/hello-world/py/uv.lock +22 -0
  27. package/templates/hello-world/py/wrangler.jsonc +9 -0
  28. package/templates/hello-world/ts/package.json +3 -3
  29. package/templates/hello-world/ts/src/index.ts +1 -1
  30. package/templates/hello-world/ts/vitest.config.mts +1 -1
  31. package/templates/hello-world/ts/worker-configuration.d.ts +1 -1
  32. package/templates/hello-world/ts/wrangler.jsonc +8 -0
  33. package/templates/hello-world-durable-object/js/package.json +1 -1
  34. package/templates/hello-world-durable-object/js/src/index.js +3 -3
  35. package/templates/hello-world-durable-object/js/wrangler.jsonc +24 -0
  36. package/templates/hello-world-durable-object/ts/package.json +1 -1
  37. package/templates/hello-world-durable-object/ts/src/index.ts +4 -4
  38. package/templates/hello-world-durable-object/ts/wrangler.jsonc +24 -0
  39. package/templates/hono/c3.ts +1 -0
  40. package/templates/hono/templates/worker-configuration.d.ts +1 -1
  41. package/templates/hono/templates/wrangler.jsonc +8 -0
  42. package/templates/next/README.md +2 -3
  43. package/templates/next/c3.ts +13 -28
  44. package/templates/next/wrangler.jsonc +8 -0
  45. package/templates/nuxt/templates/worker-configuration.d.ts +1 -1
  46. package/templates/nuxt/templates/wrangler.jsonc +8 -0
  47. package/templates/openapi/ts/package.json +1 -1
  48. package/templates/openapi/ts/worker-configuration.d.ts +1 -1
  49. package/templates/openapi/ts/wrangler.jsonc +8 -0
  50. package/templates/pre-existing/c3.ts +3 -3
  51. package/templates/pre-existing/js/package.json +1 -1
  52. package/templates/queues/js/package.json +1 -1
  53. package/templates/queues/js/wrangler.jsonc +21 -0
  54. package/templates/queues/ts/package.json +1 -1
  55. package/templates/queues/ts/src/index.ts +1 -1
  56. package/templates/queues/ts/worker-configuration.d.ts +1 -1
  57. package/templates/queues/ts/wrangler.jsonc +21 -0
  58. package/templates/qwik/c3.ts +3 -2
  59. package/templates/qwik/templates/worker-configuration.d.ts +1 -1
  60. package/templates/qwik/templates/wrangler.jsonc +8 -0
  61. package/templates/remix/templates/worker-configuration.d.ts +1 -1
  62. package/templates/remix/templates/wrangler.jsonc +5 -0
  63. package/templates/scheduled/js/package.json +1 -1
  64. package/templates/scheduled/js/src/index.js +1 -1
  65. package/templates/scheduled/js/wrangler.jsonc +13 -0
  66. package/templates/scheduled/ts/package.json +1 -1
  67. package/templates/scheduled/ts/src/index.ts +4 -4
  68. package/templates/scheduled/ts/worker-configuration.d.ts +1 -1
  69. package/templates/scheduled/ts/wrangler.jsonc +13 -0
  70. package/templates/solid/c3.ts +1 -1
  71. package/templates/solid/templates/wrangler.jsonc +8 -0
  72. package/templates/svelte/templates/wrangler.jsonc +5 -0
  73. package/templates-experimental/angular/c3.ts +23 -5
  74. package/templates-experimental/angular/templates/wrangler.jsonc +12 -0
  75. package/templates-experimental/astro/templates/js/wrangler.jsonc +15 -0
  76. package/templates-experimental/astro/templates/ts/worker-configuration.d.ts +1 -1
  77. package/templates-experimental/astro/templates/ts/wrangler.jsonc +15 -0
  78. package/templates-experimental/docusaurus/c3.ts +1 -0
  79. package/templates-experimental/docusaurus/templates/wrangler.jsonc +10 -0
  80. package/templates-experimental/gatsby/templates/wrangler.jsonc +10 -0
  81. package/templates-experimental/hello-world-assets-only/templates/wrangler.jsonc +10 -0
  82. package/templates-experimental/hello-world-durable-object-with-assets/js/package.json +1 -1
  83. package/templates-experimental/hello-world-durable-object-with-assets/js/src/index.js +3 -3
  84. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.jsonc +28 -0
  85. package/templates-experimental/hello-world-durable-object-with-assets/ts/package.json +1 -1
  86. package/templates-experimental/hello-world-durable-object-with-assets/ts/src/index.ts +3 -3
  87. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.jsonc +28 -0
  88. package/templates-experimental/hello-world-with-assets/js/package.json +3 -3
  89. package/templates-experimental/hello-world-with-assets/js/vitest.config.js +1 -1
  90. package/templates-experimental/hello-world-with-assets/js/wrangler.jsonc +15 -0
  91. package/templates-experimental/hello-world-with-assets/py/package.json +1 -1
  92. package/templates-experimental/hello-world-with-assets/py/wrangler.jsonc +15 -0
  93. package/templates-experimental/hello-world-with-assets/ts/package.json +3 -3
  94. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +1 -1
  95. package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +1 -1
  96. package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +1 -1
  97. package/templates-experimental/hello-world-with-assets/ts/wrangler.jsonc +15 -0
  98. package/templates-experimental/hono/c3.ts +1 -0
  99. package/templates-experimental/hono/templates/worker-configuration.d.ts +1 -1
  100. package/templates-experimental/hono/templates/wrangler.jsonc +9 -0
  101. package/templates-experimental/next/c3.ts +35 -16
  102. package/templates-experimental/next/templates/.dev.vars +2 -0
  103. package/templates-experimental/next/templates/__dot__gitignore +2 -5
  104. package/templates-experimental/next/templates/cloudflare-env.d.ts +5 -0
  105. package/templates-experimental/next/templates/open-next.config.ts +28 -0
  106. package/templates-experimental/next/templates/wrangler.jsonc +13 -0
  107. package/templates-experimental/nuxt/templates/worker-configuration.d.ts +1 -1
  108. package/templates-experimental/nuxt/templates/wrangler.jsonc +12 -0
  109. package/templates-experimental/qwik/c3.ts +3 -2
  110. package/templates-experimental/qwik/templates/worker-configuration.d.ts +1 -1
  111. package/templates-experimental/qwik/templates/wrangler.jsonc +15 -0
  112. package/templates-experimental/react/c3.ts +182 -0
  113. package/templates-experimental/react/js/api/index.js +13 -0
  114. package/templates-experimental/react/js/src/App.jsx +58 -0
  115. package/templates-experimental/react/js/src/assets/Cloudflare_Logo.svg +26 -0
  116. package/templates-experimental/react/js/wrangler.json +9 -0
  117. package/templates-experimental/react/ts/api/index.ts +17 -0
  118. package/templates-experimental/react/ts/src/App.tsx +58 -0
  119. package/templates-experimental/react/ts/src/assets/Cloudflare_Logo.svg +26 -0
  120. package/templates-experimental/react/ts/tsconfig.worker.json +8 -0
  121. package/templates-experimental/react/ts/wrangler.json +9 -0
  122. package/templates-experimental/solid/c3.ts +1 -1
  123. package/templates-experimental/solid/templates/wrangler.jsonc +15 -0
  124. package/templates-experimental/svelte/templates/wrangler.jsonc +12 -0
  125. package/templates-experimental/vue/templates/wrangler.jsonc +10 -0
  126. package/templates/analog/templates/wrangler.toml +0 -85
  127. package/templates/astro/templates/js/wrangler.toml +0 -86
  128. package/templates/astro/templates/ts/wrangler.toml +0 -86
  129. package/templates/common/js/wrangler.toml +0 -113
  130. package/templates/common/ts/wrangler.toml +0 -113
  131. package/templates/hello-world/js/wrangler.toml +0 -114
  132. package/templates/hello-world/py/wrangler.toml +0 -114
  133. package/templates/hello-world/ts/wrangler.toml +0 -114
  134. package/templates/hello-world-durable-object/js/wrangler.toml +0 -113
  135. package/templates/hello-world-durable-object/ts/wrangler.toml +0 -113
  136. package/templates/hono/templates/wrangler.toml +0 -113
  137. package/templates/next/wrangler.toml +0 -86
  138. package/templates/nuxt/templates/wrangler.toml +0 -86
  139. package/templates/openapi/ts/wrangler.toml +0 -113
  140. package/templates/pre-existing/js/wrangler.toml +0 -4
  141. package/templates/queues/js/wrangler.toml +0 -118
  142. package/templates/queues/ts/wrangler.toml +0 -118
  143. package/templates/qwik/templates/wrangler.toml +0 -86
  144. package/templates/remix/templates/wrangler.toml +0 -85
  145. package/templates/scheduled/js/wrangler.toml +0 -119
  146. package/templates/scheduled/ts/wrangler.toml +0 -119
  147. package/templates/solid/templates/wrangler.toml +0 -84
  148. package/templates/svelte/templates/wrangler.toml +0 -85
  149. package/templates-experimental/angular/templates/wrangler.toml +0 -11
  150. package/templates-experimental/astro/templates/js/wrangler.toml +0 -12
  151. package/templates-experimental/astro/templates/ts/wrangler.toml +0 -12
  152. package/templates-experimental/docusaurus/templates/wrangler.toml +0 -10
  153. package/templates-experimental/gatsby/templates/wrangler.toml +0 -10
  154. package/templates-experimental/hello-world-assets-only/templates/wrangler.toml +0 -10
  155. package/templates-experimental/hello-world-durable-object-with-assets/js/wrangler.toml +0 -24
  156. package/templates-experimental/hello-world-durable-object-with-assets/ts/wrangler.toml +0 -24
  157. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +0 -12
  158. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +0 -12
  159. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +0 -12
  160. package/templates-experimental/hono/templates/wrangler.toml +0 -5
  161. package/templates-experimental/next/templates/env.d.ts +0 -5
  162. package/templates-experimental/next/templates/wrangler.toml +0 -12
  163. package/templates-experimental/nuxt/templates/wrangler.toml +0 -11
  164. package/templates-experimental/qwik/templates/wrangler.toml +0 -12
  165. package/templates-experimental/solid/templates/wrangler.toml +0 -12
  166. package/templates-experimental/svelte/templates/wrangler.toml +0 -11
  167. package/templates-experimental/vue/templates/wrangler.toml +0 -10
@@ -26,27 +26,9 @@ const generate = async (ctx: C3Context) => {
26
26
 
27
27
  await runFrameworkGenerator(ctx, [projectName]);
28
28
 
29
- const wranglerToml = readFile(join(getTemplatePath(ctx), "wrangler.toml"));
30
-
31
- // Note: here we add `# KV Example:` to the toml file for the KV example, we don't actually
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.jsonc"));
30
+ writeFile(join(ctx.project.path, "wrangler.jsonc"), wranglerConfig);
31
+ updateStatus("Created wrangler.jsonc file");
50
32
  };
51
33
 
52
34
  const updateNextConfig = (usesTs: boolean) => {
@@ -60,12 +42,12 @@ const updateNextConfig = (usesTs: boolean) => {
60
42
  const updatedConfigFile =
61
43
  `import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev';
62
44
 
63
- // Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development
64
- // (when running the application with \`next dev\`), for more information see:
45
+ // Here we use the @cloudflare/next-on-pages next-dev module to allow us to
46
+ // use bindings during local development (when running the application with
47
+ // \`next dev\`). This function is only necessary during development and
48
+ // has no impact outside of that. For more information see:
65
49
  // https://github.com/cloudflare/next-on-pages/blob/main/internal-packages/next-dev/README.md
66
- if (process.env.NODE_ENV === 'development') {
67
- await setupDevPlatform();
68
- }
50
+ setupDevPlatform().catch(console.error);
69
51
 
70
52
  `.replace(/\n\t*/g, "\n") + configContent;
71
53
 
@@ -143,7 +125,10 @@ export const shouldInstallNextOnPagesEslintPlugin = async (
143
125
  };
144
126
 
145
127
  export const writeEslintrc = async (ctx: C3Context): Promise<void> => {
146
- const eslintConfig = readJSON(`${ctx.project.path}/.eslintrc.json`);
128
+ const eslintConfig = readJSON(`${ctx.project.path}/.eslintrc.json`) as {
129
+ plugins: string[];
130
+ extends: string | string[];
131
+ };
147
132
 
148
133
  eslintConfig.plugins ??= [];
149
134
  eslintConfig.plugins.push("eslint-plugin-next-on-pages");
@@ -176,7 +161,7 @@ export default {
176
161
  id: "next",
177
162
  frameworkCli: "create-next-app",
178
163
  platform: "pages",
179
- displayName: "Next",
164
+ displayName: "Next.js",
180
165
  generate,
181
166
  configure,
182
167
  copyFiles: {
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "compatibility_flags": [
5
+ "nodejs_compat"
6
+ ],
7
+ "pages_build_output_dir": ".vercel/output/static"
8
+ }
@@ -1,4 +1,4 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
4
  }
@@ -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
+ }
@@ -16,6 +16,6 @@
16
16
  "devDependencies": {
17
17
  "@types/node": "20.8.3",
18
18
  "@types/service-worker-mock": "^2.0.1",
19
- "wrangler": "^3.60.3"
19
+ "wrangler": "^3.101.0"
20
20
  }
21
21
  }
@@ -1,4 +1,4 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
4
  }
@@ -0,0 +1,8 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "main": "src/index.ts",
4
+ "compatibility_date": "<TBD>",
5
+ "observability": {
6
+ "enabled": true
7
+ }
8
+ }
@@ -49,14 +49,14 @@ export async function copyExistingWorkerFiles(ctx: C3Context) {
49
49
  },
50
50
  );
51
51
 
52
- // copy src/* files from the downloaded worker
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 worker
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 worker is already deployed
99
+ // Force no-deploy since the Worker is already deployed
100
100
  ctx.args.deploy = false;
101
101
  };
102
102
  }
@@ -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
  }
@@ -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,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
+ }
@@ -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
  }
@@ -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.toml`. After adding bindings, a type definition for the
11
+ * Bind resources to your worker in `wrangler.jsonc`. 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/
@@ -1,5 +1,5 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
4
  MY_QUEUE: Queue;
5
5
  }
@@ -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
+ }
@@ -10,7 +10,7 @@ import * as recast from "recast";
10
10
  import type { TemplateConfig } from "../../src/templates";
11
11
  import type { C3Context } from "types";
12
12
 
13
- const { npm, npx } = detectPackageManager();
13
+ const { npm, npx, name } = detectPackageManager();
14
14
 
15
15
  const generate = async (ctx: C3Context) => {
16
16
  await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
@@ -18,7 +18,8 @@ const generate = async (ctx: C3Context) => {
18
18
 
19
19
  const configure = async (ctx: C3Context) => {
20
20
  // Add the pages integration
21
- const cmd = [npx, "qwik", "add", "cloudflare-pages"];
21
+ // For some reason `pnpx qwik add` fails for qwik so we use `pnpm qwik add` instead.
22
+ const cmd = [name === "pnpm" ? npm : npx, "qwik", "add", "cloudflare-pages"];
22
23
  endSection(`Running ${quoteShellArgs(cmd)}`);
23
24
  await runCommand(cmd);
24
25
 
@@ -1,4 +1,4 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
4
  }
@@ -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,4 +1,4 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
4
  }
@@ -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
  }
@@ -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.toml's
23
+ // The scheduled handler is invoked at the interval set in our wrangler.jsonc'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,
@@ -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
  }
@@ -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 worker in action
10
- * - Run `npm run deploy` to publish your worker
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 worker in `wrangler.toml`. After adding bindings, a type definition for the
12
+ * Bind resources to your Worker in `wrangler.jsonc`. 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.toml's
19
+ // The scheduled handler is invoked at the interval set in our wrangler.jsonc'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,
@@ -1,4 +1,4 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
4
  }
@@ -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
+ }
@@ -0,0 +1,5 @@
1
+ {
2
+ "name": "<TBD>",
3
+ "compatibility_date": "<TBD>",
4
+ "pages_build_output_dir": ".svelte-kit/cloudflare"
5
+ }
@@ -7,7 +7,7 @@ import { readFile, readJSON, writeFile } from "helpers/files";
7
7
  import { detectPackageManager } from "helpers/packageManagers";
8
8
  import { installPackages } from "helpers/packages";
9
9
  import type { TemplateConfig } from "../../src/templates";
10
- import type { C3Context } from "types";
10
+ import type { C3Context, PackageJson } from "types";
11
11
 
12
12
  const { npm } = detectPackageManager();
13
13
 
@@ -63,10 +63,10 @@ async function updateAppCode() {
63
63
  // Remove unwanted dependencies
64
64
  s.start(`Updating package.json`);
65
65
  const packageJsonPath = resolve("package.json");
66
- const packageManifest = readJSON(packageJsonPath);
66
+ const packageManifest = readJSON(packageJsonPath) as PackageJson;
67
67
 
68
- delete packageManifest["dependencies"]["express"];
69
- delete packageManifest["devDependencies"]["@types/express"];
68
+ delete packageManifest["dependencies"]?.["express"];
69
+ delete packageManifest["devDependencies"]?.["@types/express"];
70
70
 
71
71
  writeFile(packageJsonPath, JSON.stringify(packageManifest, null, 2));
72
72
  s.stop(`${brandColor(`updated`)} ${dim(`\`package.json\``)}`);
@@ -75,7 +75,7 @@ async function updateAppCode() {
75
75
  function updateAngularJson(ctx: C3Context) {
76
76
  const s = spinner();
77
77
  s.start(`Updating angular.json config`);
78
- const angularJson = readJSON(resolve("angular.json"));
78
+ const angularJson = readJSON(resolve("angular.json")) as AngularJson;
79
79
  // Update builder
80
80
  const architectSection = angularJson.projects[ctx.project.name].architect;
81
81
  architectSection.build.options.outputPath = "dist";
@@ -110,3 +110,21 @@ const config: TemplateConfig = {
110
110
  }),
111
111
  };
112
112
  export default config;
113
+
114
+ type AngularJson = {
115
+ projects: Record<
116
+ string,
117
+ {
118
+ architect: {
119
+ build: {
120
+ options: {
121
+ outputPath: string;
122
+ outputMode: string;
123
+ ssr: Record<string, unknown>;
124
+ assets: string[];
125
+ };
126
+ };
127
+ };
128
+ }
129
+ >;
130
+ };
@@ -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
+ }
@@ -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
+ }
@@ -1,4 +1,4 @@
1
1
  // Generated by Wrangler
2
- // After adding bindings to `wrangler.toml`, regenerate this interface via `npm run cf-typegen`
2
+ // After adding bindings to `wrangler.jsonc`, regenerate this interface via `npm run cf-typegen`
3
3
  interface Env {
4
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
+ }
@@ -28,5 +28,6 @@ const config: TemplateConfig = {
28
28
  }),
29
29
  devScript: "start",
30
30
  deployScript: "deploy",
31
+ previewScript: "preview",
31
32
  };
32
33
  export default config;
@@ -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
  }
@@ -11,7 +11,7 @@ import { DurableObject } from "cloudflare:workers";
11
11
  */
12
12
 
13
13
  /**
14
- * Env provides a mechanism to reference bindings declared in wrangler.toml within JavaScript
14
+ * Env provides a mechanism to reference bindings declared in wrangler.jsonc within JavaScript
15
15
  *
16
16
  * @typedef {Object} Env
17
17
  * @property {DurableObjectNamespace} MY_DURABLE_OBJECT - The Durable Object namespace binding
@@ -24,7 +24,7 @@ export class MyDurableObject extends DurableObject {
24
24
  * `DurableObjectStub::get` for a given identifier (no-op constructors can be omitted)
25
25
  *
26
26
  * @param {DurableObjectState} ctx - The interface for interacting with Durable Object state
27
- * @param {Env} env - The interface to reference bindings declared in wrangler.toml
27
+ * @param {Env} env - The interface to reference bindings declared in wrangler.jsonc
28
28
  */
29
29
  constructor(ctx, env) {
30
30
  super(ctx, env);
@@ -47,7 +47,7 @@ export default {
47
47
  * This is the standard fetch handler for a Cloudflare Worker
48
48
  *
49
49
  * @param {Request} request - The request submitted to the Worker from the client
50
- * @param {Env} env - The interface to reference bindings declared in wrangler.toml
50
+ * @param {Env} env - The interface to reference bindings declared in wrangler.jsonc
51
51
  * @param {ExecutionContext} ctx - The execution context of the Worker
52
52
  * @returns {Promise<Response>} The response to be sent back to the client
53
53
  */
@@ -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
  }