create-cloudflare 2.26.0 → 2.27.2

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 (81) hide show
  1. package/dist/cli.js +47075 -46847
  2. package/package.json +7 -6
  3. package/templates/analog/c3.ts +1 -0
  4. package/templates/angular/c3.ts +1 -0
  5. package/templates/astro/c3.ts +1 -0
  6. package/templates/docusaurus/c3.ts +1 -0
  7. package/templates/gatsby/c3.ts +1 -0
  8. package/templates/hello-world/js/package.json +2 -2
  9. package/templates/hello-world/ts/package.json +2 -2
  10. package/templates/hono/c3.ts +1 -0
  11. package/templates/next/c3.ts +1 -0
  12. package/templates/nuxt/c3.ts +1 -0
  13. package/templates/qwik/c3.ts +1 -0
  14. package/templates/react/c3.ts +2 -0
  15. package/templates/remix/c3.ts +1 -0
  16. package/templates/solid/c3.ts +1 -0
  17. package/templates/svelte/c3.ts +1 -0
  18. package/templates/vue/c3.ts +1 -0
  19. package/templates-experimental/angular/c3.ts +102 -0
  20. package/templates-experimental/angular/templates/server.ts +34 -0
  21. package/templates-experimental/angular/templates/src/.assetsignore +4 -0
  22. package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +27 -0
  23. package/templates-experimental/angular/templates/tools/copy-files.mjs +9 -0
  24. package/templates-experimental/angular/templates/tools/paths.mjs +9 -0
  25. package/templates-experimental/angular/templates/wrangler.toml +5 -0
  26. package/templates-experimental/astro/c3.ts +114 -0
  27. package/templates-experimental/astro/snippets/runtimeDeclaration.ts +5 -0
  28. package/templates-experimental/astro/templates/public/.assetsignore +4 -0
  29. package/templates-experimental/astro/templates/wrangler.toml +6 -0
  30. package/templates-experimental/docusaurus/c3.ts +32 -0
  31. package/templates-experimental/docusaurus/templates/wrangler.toml +4 -0
  32. package/templates-experimental/gatsby/c3.ts +53 -0
  33. package/templates-experimental/gatsby/templates/wrangler.toml +4 -0
  34. package/templates-experimental/hello-world-with-assets/c3.ts +22 -0
  35. package/templates-experimental/hello-world-with-assets/js/.editorconfig +12 -0
  36. package/templates-experimental/hello-world-with-assets/js/.prettierrc +6 -0
  37. package/templates-experimental/hello-world-with-assets/js/__dot__gitignore +172 -0
  38. package/templates-experimental/hello-world-with-assets/js/package.json +16 -0
  39. package/templates-experimental/hello-world-with-assets/js/public/index.html +19 -0
  40. package/templates-experimental/hello-world-with-assets/js/src/index.js +15 -0
  41. package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +20 -0
  42. package/templates-experimental/hello-world-with-assets/js/vitest.config.js +11 -0
  43. package/templates-experimental/hello-world-with-assets/js/wrangler.toml +6 -0
  44. package/templates-experimental/hello-world-with-assets/py/__dot__gitignore +68 -0
  45. package/templates-experimental/hello-world-with-assets/py/package.json +13 -0
  46. package/templates-experimental/hello-world-with-assets/py/public/index.html +19 -0
  47. package/templates-experimental/hello-world-with-assets/py/src/entry.py +4 -0
  48. package/templates-experimental/hello-world-with-assets/py/wrangler.toml +6 -0
  49. package/templates-experimental/hello-world-with-assets/ts/.editorconfig +12 -0
  50. package/templates-experimental/hello-world-with-assets/ts/.prettierrc +6 -0
  51. package/templates-experimental/hello-world-with-assets/ts/__dot__gitignore +172 -0
  52. package/templates-experimental/hello-world-with-assets/ts/package.json +18 -0
  53. package/templates-experimental/hello-world-with-assets/ts/public/index.html +19 -0
  54. package/templates-experimental/hello-world-with-assets/ts/src/index.ts +18 -0
  55. package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +25 -0
  56. package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +8 -0
  57. package/templates-experimental/hello-world-with-assets/ts/tsconfig.json +103 -0
  58. package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +11 -0
  59. package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +4 -0
  60. package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +6 -0
  61. package/templates-experimental/nuxt/c3.ts +135 -0
  62. package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +27 -0
  63. package/templates-experimental/nuxt/templates/env.d.ts +14 -0
  64. package/templates-experimental/nuxt/templates/worker-configuration.d.ts +4 -0
  65. package/templates-experimental/nuxt/templates/wrangler.toml +5 -0
  66. package/templates-experimental/qwik/c3.ts +153 -0
  67. package/templates-experimental/qwik/snippets/getPlatformProxy.ts +6 -0
  68. package/templates-experimental/qwik/templates/public/.assetsignore +4 -0
  69. package/templates-experimental/qwik/templates/worker-configuration.d.ts +4 -0
  70. package/templates-experimental/qwik/templates/wrangler.toml +6 -0
  71. package/templates-experimental/remix/c3.ts +77 -0
  72. package/templates-experimental/remix/templates/public/.assetsignore +4 -0
  73. package/templates-experimental/remix/templates/worker-configuration.d.ts +4 -0
  74. package/templates-experimental/remix/templates/wrangler.toml +5 -0
  75. package/templates-experimental/solid/c3.ts +137 -0
  76. package/templates-experimental/solid/templates/wrangler.toml +6 -0
  77. package/templates-experimental/svelte/c3.ts +132 -0
  78. package/templates-experimental/svelte/js/static/.assetsignore +4 -0
  79. package/templates-experimental/svelte/js/wrangler.toml +5 -0
  80. package/templates-experimental/svelte/ts/static/.assetsignore +4 -0
  81. package/templates-experimental/svelte/ts/wrangler.toml +5 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "2.26.0",
3
+ "version": "2.27.2",
4
4
  "description": "A CLI for creating and deploying new applications to Cloudflare.",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -23,13 +23,14 @@
23
23
  "bin": "./dist/cli.js",
24
24
  "files": [
25
25
  "dist",
26
- "templates"
26
+ "templates",
27
+ "templates-experimental"
27
28
  ],
28
29
  "devDependencies": {
29
30
  "@babel/parser": "^7.21.3",
30
31
  "@babel/types": "^7.21.4",
31
32
  "@clack/prompts": "^0.6.3",
32
- "@cloudflare/workers-types": "^4.20240821.1",
33
+ "@cloudflare/workers-types": "^4.20240909.0",
33
34
  "@iarna/toml": "^3.0.0",
34
35
  "@types/command-exists": "^1.2.0",
35
36
  "@types/cross-spawn": "^6.0.2",
@@ -64,10 +65,10 @@
64
65
  "which-pm-runs": "^1.1.0",
65
66
  "wrap-ansi": "^9.0.0",
66
67
  "yargs": "^17.7.2",
67
- "@cloudflare/cli": "1.1.1",
68
- "wrangler": "3.73.0",
69
68
  "@cloudflare/eslint-config-worker": "1.1.0",
70
- "@cloudflare/workers-tsconfig": "0.0.0"
69
+ "@cloudflare/workers-tsconfig": "0.0.0",
70
+ "wrangler": "3.78.4",
71
+ "@cloudflare/cli": "1.1.1"
71
72
  },
72
73
  "engines": {
73
74
  "node": ">=18.14.1"
@@ -113,6 +113,7 @@ const updateViteConfig = (ctx: C3Context) => {
113
113
  const config: TemplateConfig = {
114
114
  configVersion: 1,
115
115
  id: "analog",
116
+ frameworkCli: "create-analog",
116
117
  platform: "pages",
117
118
  displayName: "Analog",
118
119
  copyFiles: {
@@ -79,6 +79,7 @@ function updateAngularJson(ctx: C3Context) {
79
79
  const config: TemplateConfig = {
80
80
  configVersion: 1,
81
81
  id: "angular",
82
+ frameworkCli: "@angular/create",
82
83
  displayName: "Angular",
83
84
  platform: "pages",
84
85
  copyFiles: {
@@ -91,6 +91,7 @@ const updateEnvDeclaration = (ctx: C3Context) => {
91
91
  const config: TemplateConfig = {
92
92
  configVersion: 1,
93
93
  id: "astro",
94
+ frameworkCli: "create-astro",
94
95
  platform: "pages",
95
96
  displayName: "Astro",
96
97
  copyFiles: {
@@ -12,6 +12,7 @@ const generate = async (ctx: C3Context) => {
12
12
  const config: TemplateConfig = {
13
13
  configVersion: 1,
14
14
  id: "docusaurus",
15
+ frameworkCli: "create-docusaurus",
15
16
  platform: "pages",
16
17
  displayName: "Docusaurus",
17
18
  generate,
@@ -32,6 +32,7 @@ const generate = async (ctx: C3Context) => {
32
32
  const config: TemplateConfig = {
33
33
  configVersion: 1,
34
34
  id: "gatsby",
35
+ frameworkCli: "gatsby",
35
36
  platform: "pages",
36
37
  displayName: "Gatsby",
37
38
  generate,
@@ -9,8 +9,8 @@
9
9
  "test": "vitest"
10
10
  },
11
11
  "devDependencies": {
12
- "@cloudflare/vitest-pool-workers": "^0.4.5",
12
+ "@cloudflare/vitest-pool-workers": "^0.5.2",
13
13
  "wrangler": "^3.60.3",
14
- "vitest": "1.5.0"
14
+ "vitest": "2.0.5"
15
15
  }
16
16
  }
@@ -10,9 +10,9 @@
10
10
  "cf-typegen": "wrangler types"
11
11
  },
12
12
  "devDependencies": {
13
- "@cloudflare/vitest-pool-workers": "^0.4.5",
13
+ "@cloudflare/vitest-pool-workers": "^0.5.2",
14
14
  "typescript": "^5.5.2",
15
- "vitest": "1.5.0",
15
+ "vitest": "2.0.5",
16
16
  "wrangler": "^3.60.3"
17
17
  }
18
18
  }
@@ -48,6 +48,7 @@ const configure = async (ctx: C3Context) => {
48
48
  const config: TemplateConfig = {
49
49
  configVersion: 1,
50
50
  id: "hono",
51
+ frameworkCli: "create-hono",
51
52
  displayName: "Hono",
52
53
  copyFiles: {
53
54
  path: "./templates",
@@ -175,6 +175,7 @@ const addDevDependencies = async (installEslintPlugin: boolean) => {
175
175
  export default {
176
176
  configVersion: 1,
177
177
  id: "next",
178
+ frameworkCli: "create-next-app",
178
179
  platform: "pages",
179
180
  displayName: "Next",
180
181
  generate,
@@ -112,6 +112,7 @@ const updateNuxtConfig = () => {
112
112
  const config: TemplateConfig = {
113
113
  configVersion: 1,
114
114
  id: "nuxt",
115
+ frameworkCli: "nuxi",
115
116
  platform: "pages",
116
117
  displayName: "Nuxt",
117
118
  copyFiles: {
@@ -125,6 +125,7 @@ const populateCloudflareEnv = () => {
125
125
  const config: TemplateConfig = {
126
126
  configVersion: 1,
127
127
  id: "qwik",
128
+ frameworkCli: "create-qwik",
128
129
  displayName: "Qwik",
129
130
  platform: "pages",
130
131
  copyFiles: {
@@ -43,6 +43,8 @@ const variantsOptions = [
43
43
  const config: TemplateConfig = {
44
44
  configVersion: 1,
45
45
  id: "react",
46
+ // React's documentation now recommends using create-vite.
47
+ frameworkCli: "create-vite",
46
48
  displayName: "React",
47
49
  platform: "pages",
48
50
  generate,
@@ -45,6 +45,7 @@ const configure = async () => {
45
45
  const config: TemplateConfig = {
46
46
  configVersion: 1,
47
47
  id: "remix",
48
+ frameworkCli: "create-remix",
48
49
  platform: "pages",
49
50
  displayName: "Remix",
50
51
  copyFiles: {
@@ -65,6 +65,7 @@ const configure = async (ctx: C3Context) => {
65
65
  const config: TemplateConfig = {
66
66
  configVersion: 1,
67
67
  id: "solid",
68
+ frameworkCli: "create-solid",
68
69
  displayName: "Solid",
69
70
  platform: "pages",
70
71
  copyFiles: {
@@ -97,6 +97,7 @@ const updateTypeDefinitions = (ctx: C3Context) => {
97
97
  const config: TemplateConfig = {
98
98
  configVersion: 1,
99
99
  id: "svelte",
100
+ frameworkCli: "create-svelte",
100
101
  displayName: "Svelte",
101
102
  platform: "pages",
102
103
  copyFiles: {
@@ -12,6 +12,7 @@ const generate = async (ctx: C3Context) => {
12
12
  const config: TemplateConfig = {
13
13
  configVersion: 1,
14
14
  id: "vue",
15
+ frameworkCli: "create-vue",
15
16
  displayName: "Vue",
16
17
  platform: "pages",
17
18
  generate,
@@ -0,0 +1,102 @@
1
+ import { resolve } from "node:path";
2
+ import { logRaw } from "@cloudflare/cli";
3
+ import { brandColor, dim } from "@cloudflare/cli/colors";
4
+ import { spinner } from "@cloudflare/cli/interactive";
5
+ import { runFrameworkGenerator } from "frameworks/index";
6
+ import { readFile, readJSON, writeFile } from "helpers/files";
7
+ import { detectPackageManager } from "helpers/packageManagers";
8
+ import { installPackages } from "helpers/packages";
9
+ import type { TemplateConfig } from "../../src/templates";
10
+ import type { C3Context } from "types";
11
+
12
+ const { npm } = detectPackageManager();
13
+
14
+ const generate = async (ctx: C3Context) => {
15
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--ssr"]);
16
+ logRaw("");
17
+ };
18
+
19
+ const configure = async (ctx: C3Context) => {
20
+ updateAngularJson(ctx);
21
+ await updateAppCode();
22
+ await installCFWorker();
23
+ };
24
+
25
+ async function installCFWorker() {
26
+ await installPackages(
27
+ ["@cloudflare/workers-types", "@miniflare/tre@next", "wrangler@beta"],
28
+ {
29
+ dev: true,
30
+ startText: "Installing adapter dependencies",
31
+ doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
32
+ },
33
+ );
34
+ }
35
+ async function updateAppCode() {
36
+ const s = spinner();
37
+ s.start(`Updating application code`);
38
+
39
+ // Update an app config file to:
40
+ // - add the `provideHttpClient(withFetch())` call to enable `fetch` usage in `HttpClient`
41
+ const appConfigPath = "src/app/app.config.ts";
42
+ const appConfig = readFile(resolve(appConfigPath));
43
+ const newAppConfig =
44
+ "import { provideHttpClient, withFetch } from '@angular/common/http';\n" +
45
+ appConfig.replace(
46
+ "providers: [",
47
+ "providers: [provideHttpClient(withFetch()), ",
48
+ );
49
+ writeFile(resolve(appConfigPath), newAppConfig);
50
+ s.stop(`${brandColor(`updated`)} ${dim(appConfigPath)}`);
51
+
52
+ // Remove unwanted dependencies
53
+ s.start(`Updating package.json`);
54
+ const packageJsonPath = resolve("package.json");
55
+ const packageManifest = readJSON(packageJsonPath);
56
+
57
+ delete packageManifest["dependencies"]["@angular/ssr"];
58
+ delete packageManifest["dependencies"]["express"];
59
+ delete packageManifest["devDependencies"]["@types/express"];
60
+
61
+ writeFile(packageJsonPath, JSON.stringify(packageManifest, null, 2));
62
+ s.stop(`${brandColor(`updated`)} ${dim(`\`package.json\``)}`);
63
+ }
64
+
65
+ function updateAngularJson(ctx: C3Context) {
66
+ const s = spinner();
67
+ s.start(`Updating angular.json config`);
68
+ const angularJson = readJSON(resolve("angular.json"));
69
+ // Update builder
70
+ const architectSection = angularJson.projects[ctx.project.name].architect;
71
+ architectSection.build.options.outputPath = "dist";
72
+ architectSection.build.options.assets.push("src/_routes.json");
73
+
74
+ writeFile(resolve("angular.json"), JSON.stringify(angularJson, null, 2));
75
+ s.stop(`${brandColor(`updated`)} ${dim(`\`angular.json\``)}`);
76
+ }
77
+
78
+ const config: TemplateConfig = {
79
+ configVersion: 1,
80
+ id: "angular",
81
+ frameworkCli: "@angular/create",
82
+ displayName: "Angular",
83
+ platform: "workers",
84
+ copyFiles: {
85
+ path: "./templates",
86
+ },
87
+ path: "templates-experimental/angular",
88
+ devScript: "start",
89
+ deployScript: "deploy",
90
+ generate,
91
+ configure,
92
+ transformPackageJson: async () => ({
93
+ scripts: {
94
+ start: `${npm} run build && wrangler dev`,
95
+ build: `ng build && ${npm} run process`,
96
+ process:
97
+ "node ./tools/copy-files.mjs && node ./tools/alter-polyfills.mjs",
98
+ deploy: `${npm} run build && wrangler deploy`,
99
+ },
100
+ }),
101
+ };
102
+ export default config;
@@ -0,0 +1,34 @@
1
+ import { renderApplication } from "@angular/platform-server";
2
+ import bootstrap from "./src/main.server";
3
+
4
+ interface Env {
5
+ ASSETS: { fetch: typeof fetch };
6
+ }
7
+
8
+ // We attach the Cloudflare `fetch()` handler to the global scope
9
+ // so that we can export it when we process the Angular output.
10
+ // See tools/bundle.mjs
11
+ async function workerFetchHandler(request: Request, env: Env) {
12
+ const url = new URL(request.url);
13
+ console.log("render SSR", url.href);
14
+
15
+ // Get the root `index.html` content.
16
+ const indexUrl = new URL("/index.html", url);
17
+ const indexResponse = await env.ASSETS.fetch(new Request(indexUrl));
18
+ const document = await indexResponse.text();
19
+
20
+ const content = await renderApplication(bootstrap, {
21
+ document,
22
+ url: url.pathname,
23
+ });
24
+
25
+ // console.log("rendered SSR", content);
26
+ return new Response(content, indexResponse);
27
+ }
28
+
29
+ export default {
30
+ fetch: (request: Request, env: Env) =>
31
+ (globalThis as any)["__zone_symbol__Promise"].resolve(
32
+ workerFetchHandler(request, env),
33
+ ),
34
+ };
@@ -0,0 +1,4 @@
1
+ _worker.js
2
+ _routes.json
3
+ _headers
4
+ _redirects
@@ -0,0 +1,27 @@
1
+ import fs from "node:fs";
2
+ import { EOL } from "node:os";
3
+ import { join } from "node:path";
4
+ import { worker } from "./paths.mjs";
5
+
6
+ /**
7
+ * Split by lines and comment the banner
8
+ * ```
9
+ * import { createRequire } from 'node:module';
10
+ * globalThis['require'] ??= createRequire(import.meta.url);
11
+ * ```
12
+ */
13
+ const serverPolyfillsFile = join(worker, "polyfills.server.mjs");
14
+ const serverPolyfillsData = fs
15
+ .readFileSync(serverPolyfillsFile, "utf8")
16
+ .split(/\r?\n/);
17
+
18
+ for (let index = 0; index < 2; index++) {
19
+ if (serverPolyfillsData[index].includes("createRequire")) {
20
+ serverPolyfillsData[index] = "// " + serverPolyfillsData[index];
21
+ }
22
+ }
23
+
24
+ // Add needed polyfills
25
+ serverPolyfillsData.unshift(`globalThis['process'] = {};`);
26
+
27
+ fs.writeFileSync(serverPolyfillsFile, serverPolyfillsData.join(EOL));
@@ -0,0 +1,9 @@
1
+ // Copy the files over so that they can be uploaded by the pages publish command.
2
+ import fs from "node:fs";
3
+ import { join } from "node:path";
4
+ import { client, cloudflare, ssr, worker } from "./paths.mjs";
5
+
6
+ fs.cpSync(client, cloudflare, { recursive: true });
7
+ fs.cpSync(ssr, worker, { recursive: true });
8
+
9
+ fs.renameSync(join(worker, "server.mjs"), join(worker, "index.js"));
@@ -0,0 +1,9 @@
1
+ import path from "node:path";
2
+ import { fileURLToPath } from "node:url";
3
+
4
+ const dirname = path.dirname(fileURLToPath(import.meta.url));
5
+ export const root = path.resolve(dirname, "..");
6
+ export const client = path.resolve(root, "dist/browser");
7
+ export const ssr = path.resolve(root, "dist/server");
8
+ export const cloudflare = path.resolve(root, "dist/cloudflare");
9
+ export const worker = path.resolve(cloudflare, "_worker.js");
@@ -0,0 +1,5 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ main = "./dist/cloudflare/_worker.js"
5
+ experimental_assets = { directory = "./dist/cloudflare", binding = "ASSETS" }
@@ -0,0 +1,114 @@
1
+ import { logRaw, updateStatus } from "@cloudflare/cli";
2
+ import { blue, brandColor, dim } from "@cloudflare/cli/colors";
3
+ import { runFrameworkGenerator } from "frameworks/index";
4
+ import { loadTemplateSnippets, transformFile } from "helpers/codemod";
5
+ import { runCommand } from "helpers/command";
6
+ import { usesTypescript } from "helpers/files";
7
+ import { detectPackageManager } from "helpers/packageManagers";
8
+ import * as recast from "recast";
9
+ import type { TemplateConfig } from "../../src/templates";
10
+ import type { C3Context, PackageJson } from "types";
11
+
12
+ const { npx } = detectPackageManager();
13
+
14
+ const generate = async (ctx: C3Context) => {
15
+ await runFrameworkGenerator(ctx, [ctx.project.name, "--no-install"]);
16
+
17
+ logRaw(""); // newline
18
+ };
19
+
20
+ const configure = async (ctx: C3Context) => {
21
+ await runCommand([npx, "astro", "add", "cloudflare", "-y"], {
22
+ silent: true,
23
+ startText: "Installing adapter",
24
+ doneText: `${brandColor("installed")} ${dim(
25
+ `via \`${npx} astro add cloudflare\``,
26
+ )}`,
27
+ });
28
+
29
+ updateAstroConfig();
30
+ updateEnvDeclaration(ctx);
31
+ };
32
+
33
+ const updateAstroConfig = () => {
34
+ const filePath = "astro.config.mjs";
35
+
36
+ updateStatus(`Updating configuration in ${blue(filePath)}`);
37
+
38
+ transformFile(filePath, {
39
+ visitCallExpression: function (n) {
40
+ const callee = n.node.callee as recast.types.namedTypes.Identifier;
41
+ if (callee.name !== "cloudflare") {
42
+ return this.traverse(n);
43
+ }
44
+
45
+ const b = recast.types.builders;
46
+ n.node.arguments = [
47
+ b.objectExpression([
48
+ b.objectProperty(
49
+ b.identifier("platformProxy"),
50
+ b.objectExpression([
51
+ b.objectProperty(b.identifier("enabled"), b.booleanLiteral(true)),
52
+ ]),
53
+ ),
54
+ ]),
55
+ ];
56
+
57
+ return false;
58
+ },
59
+ });
60
+ };
61
+
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
+ const config: TemplateConfig = {
92
+ configVersion: 1,
93
+ id: "astro",
94
+ frameworkCli: "create-astro",
95
+ platform: "workers",
96
+ displayName: "Astro",
97
+ copyFiles: {
98
+ path: "./templates",
99
+ },
100
+ devScript: "dev",
101
+ deployScript: "deploy",
102
+ previewScript: "preview",
103
+ path: "templates-experimental/astro",
104
+ generate,
105
+ configure,
106
+ transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
107
+ scripts: {
108
+ deploy: `astro build && wrangler deploy`,
109
+ preview: `astro build && wrangler dev`,
110
+ ...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
111
+ },
112
+ }),
113
+ };
114
+ export default config;
@@ -0,0 +1,5 @@
1
+ type Runtime = import("@astrojs/cloudflare").Runtime<Env>;
2
+
3
+ declare namespace App {
4
+ interface Locals extends Runtime {}
5
+ }
@@ -0,0 +1,4 @@
1
+ _worker.js
2
+ _routes.json
3
+ _headers
4
+ _redirects
@@ -0,0 +1,6 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ compatibility_flags = ["nodejs_compat_v2"]
5
+ main = "./dist/_worker.js"
6
+ experimental_assets = { directory = "./dist", binding = "ASSETS" }
@@ -0,0 +1,32 @@
1
+ import { runFrameworkGenerator } from "frameworks/index";
2
+ import { detectPackageManager } from "helpers/packageManagers";
3
+ import type { TemplateConfig } from "../../src/templates";
4
+ import type { C3Context } from "types";
5
+
6
+ const { npm } = detectPackageManager();
7
+
8
+ const generate = async (ctx: C3Context) => {
9
+ await runFrameworkGenerator(ctx, [ctx.project.name, "classic"]);
10
+ };
11
+
12
+ const config: TemplateConfig = {
13
+ configVersion: 1,
14
+ id: "docusaurus",
15
+ frameworkCli: "create-docusaurus",
16
+ platform: "workers",
17
+ displayName: "Docusaurus",
18
+ copyFiles: {
19
+ path: "./templates",
20
+ },
21
+ path: "templates-experimental/docusaurus",
22
+ generate,
23
+ transformPackageJson: async () => ({
24
+ scripts: {
25
+ deploy: `${npm} run build && wrangler deploy`,
26
+ preview: `${npm} run build && wrangler dev`,
27
+ },
28
+ }),
29
+ devScript: "start",
30
+ deployScript: "deploy",
31
+ };
32
+ export default config;
@@ -0,0 +1,4 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ experimental_assets = { directory = "./build" }
@@ -0,0 +1,53 @@
1
+ import { inputPrompt } from "@cloudflare/cli/interactive";
2
+ import { runFrameworkGenerator } from "frameworks/index";
3
+ import { detectPackageManager } from "helpers/packageManagers";
4
+ import type { TemplateConfig } from "../../src/templates";
5
+ import type { C3Context } from "types";
6
+
7
+ const { npm } = detectPackageManager();
8
+
9
+ const generate = async (ctx: C3Context) => {
10
+ const defaultTemplate = "https://github.com/gatsbyjs/gatsby-starter-blog";
11
+
12
+ const useTemplate = await inputPrompt({
13
+ type: "confirm",
14
+ question: "Would you like to use a template?",
15
+ label: "template",
16
+ defaultValue: true,
17
+ });
18
+
19
+ let templateUrl = "";
20
+ if (useTemplate) {
21
+ templateUrl = await inputPrompt({
22
+ type: "text",
23
+ question: `Please specify the url of the template you'd like to use`,
24
+ label: "template",
25
+ defaultValue: defaultTemplate,
26
+ });
27
+ }
28
+
29
+ await runFrameworkGenerator(ctx, ["new", ctx.project.name, templateUrl]);
30
+ };
31
+
32
+ const config: TemplateConfig = {
33
+ configVersion: 1,
34
+ id: "gatsby",
35
+ frameworkCli: "gatsby",
36
+ platform: "workers",
37
+ displayName: "Gatsby",
38
+ copyFiles: {
39
+ path: "./templates",
40
+ },
41
+ path: "templates-experimental/gatsby",
42
+ generate,
43
+ transformPackageJson: async () => ({
44
+ scripts: {
45
+ deploy: `${npm} run build && wrangler deploy`,
46
+ preview: `${npm} run build && wrangler dev`,
47
+ },
48
+ }),
49
+ devScript: "develop",
50
+ deployScript: "deploy",
51
+ previewScript: "preview",
52
+ };
53
+ export default config;
@@ -0,0 +1,4 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ experimental_assets = { directory = "./public" }
@@ -0,0 +1,22 @@
1
+ export default {
2
+ configVersion: 1,
3
+ id: "hello-world-with-assets",
4
+ path: "templates-experimental/hello-world-with-assets",
5
+ displayName: "Hello World Worker with Assets",
6
+ description:
7
+ "Get started with a basic Worker that serves static assets, in the language of your choice",
8
+ platform: "workers",
9
+ copyFiles: {
10
+ variants: {
11
+ js: {
12
+ path: "./js",
13
+ },
14
+ ts: {
15
+ path: "./ts",
16
+ },
17
+ python: {
18
+ path: "./py",
19
+ },
20
+ },
21
+ },
22
+ };
@@ -0,0 +1,12 @@
1
+ # http://editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ indent_style = tab
6
+ end_of_line = lf
7
+ charset = utf-8
8
+ trim_trailing_whitespace = true
9
+ insert_final_newline = true
10
+
11
+ [*.yml]
12
+ indent_style = space