create-cloudflare 0.0.0-e37c1b86 → 0.0.0-e39e9ff4

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 (98) hide show
  1. package/dist/cli.js +42445 -41532
  2. package/package.json +7 -4
  3. package/templates/analog/c3.ts +134 -0
  4. package/templates/analog/snippets/devBindingsModule.ts +7 -0
  5. package/templates/analog/templates/env.d.ts +13 -0
  6. package/templates/analog/templates/src/dev-bindings.ts +18 -0
  7. package/templates/analog/templates/worker-configuration.d.ts +4 -0
  8. package/templates/analog/templates/wrangler.toml +78 -0
  9. package/templates/angular/c3.ts +10 -9
  10. package/templates/astro/c3.ts +81 -19
  11. package/templates/astro/snippets/runtimeDeclaration.ts +5 -0
  12. package/templates/astro/templates/wrangler.toml +78 -0
  13. package/templates/common/js/.editorconfig +0 -1
  14. package/templates/common/js/wrangler.toml +71 -22
  15. package/templates/common/ts/.editorconfig +0 -1
  16. package/templates/common/ts/package.json +2 -1
  17. package/templates/common/ts/src/index.ts +3 -0
  18. package/templates/common/ts/worker-configuration.d.ts +2 -14
  19. package/templates/common/ts/wrangler.toml +71 -22
  20. package/templates/docusaurus/c3.ts +5 -6
  21. package/templates/gatsby/c3.ts +7 -5
  22. package/templates/hello-world/js/.editorconfig +0 -1
  23. package/templates/hello-world/js/package.json +5 -2
  24. package/templates/hello-world/js/test/index.spec.js +20 -0
  25. package/templates/hello-world/js/vitest.config.js +11 -0
  26. package/templates/hello-world/js/wrangler.toml +72 -22
  27. package/templates/hello-world/ts/.editorconfig +0 -1
  28. package/templates/hello-world/ts/package.json +6 -2
  29. package/templates/hello-world/ts/src/index.ts +3 -17
  30. package/templates/hello-world/ts/test/index.spec.ts +25 -0
  31. package/templates/hello-world/ts/test/tsconfig.json +11 -0
  32. package/templates/hello-world/ts/tsconfig.json +3 -2
  33. package/templates/hello-world/ts/vitest.config.ts +11 -0
  34. package/templates/hello-world/ts/worker-configuration.d.ts +4 -0
  35. package/templates/hello-world/ts/wrangler.toml +72 -22
  36. package/templates/hello-world-durable-object/js/.editorconfig +0 -1
  37. package/templates/hello-world-durable-object/js/src/index.js +18 -14
  38. package/templates/hello-world-durable-object/js/wrangler.toml +72 -23
  39. package/templates/hello-world-durable-object/ts/.editorconfig +0 -1
  40. package/templates/hello-world-durable-object/ts/package.json +2 -2
  41. package/templates/hello-world-durable-object/ts/src/index.ts +24 -16
  42. package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +6 -0
  43. package/templates/hello-world-durable-object/ts/wrangler.toml +71 -22
  44. package/templates/hello-world-python/c3.ts +9 -0
  45. package/templates/hello-world-python/py/__dot__gitignore +68 -0
  46. package/templates/hello-world-python/py/package.json +13 -0
  47. package/templates/hello-world-python/py/src/entry.py +4 -0
  48. package/templates/hello-world-python/py/wrangler.toml +101 -0
  49. package/templates/hono/c3.ts +1 -1
  50. package/templates/next/README.md +11 -1
  51. package/templates/next/app/js/app/api/hello/route.js +1 -1
  52. package/templates/next/app/ts/app/api/hello/route.ts +1 -1
  53. package/templates/next/c3.ts +31 -21
  54. package/templates/next/env.d.ts +3 -5
  55. package/templates/next/pages/js/pages/api/hello.js +1 -1
  56. package/templates/next/pages/ts/pages/api/hello.ts +1 -1
  57. package/templates/next/wrangler.toml +52 -30
  58. package/templates/nuxt/c3.ts +46 -12
  59. package/templates/nuxt/templates/env.d.ts +14 -0
  60. package/templates/nuxt/templates/worker-configuration.d.ts +4 -0
  61. package/templates/nuxt/templates/wrangler.toml +53 -25
  62. package/templates/openapi/ts/package.json +2 -1
  63. package/templates/openapi/ts/worker-configuration.d.ts +4 -0
  64. package/templates/openapi/ts/wrangler.toml +97 -0
  65. package/templates/pre-existing/c3.ts +2 -2
  66. package/templates/pre-existing/js/.editorconfig +0 -1
  67. package/templates/pre-existing/js/wrangler.toml +1 -0
  68. package/templates/queues/js/.editorconfig +0 -1
  69. package/templates/queues/js/wrangler.toml +88 -2
  70. package/templates/queues/ts/.editorconfig +0 -1
  71. package/templates/queues/ts/package.json +2 -1
  72. package/templates/queues/ts/src/index.ts +3 -5
  73. package/templates/queues/ts/worker-configuration.d.ts +5 -0
  74. package/templates/queues/ts/wrangler.toml +88 -2
  75. package/templates/qwik/c3.ts +9 -8
  76. package/templates/qwik/templates/worker-configuration.d.ts +4 -3
  77. package/templates/qwik/templates/wrangler.toml +53 -25
  78. package/templates/react/c3.ts +7 -5
  79. package/templates/remix/c3.ts +39 -6
  80. package/templates/remix/templates/worker-configuration.d.ts +4 -0
  81. package/templates/remix/templates/wrangler.toml +78 -0
  82. package/templates/scheduled/js/.editorconfig +0 -1
  83. package/templates/scheduled/js/wrangler.toml +97 -0
  84. package/templates/scheduled/ts/.editorconfig +0 -1
  85. package/templates/scheduled/ts/package.json +2 -1
  86. package/templates/scheduled/ts/src/index.ts +3 -20
  87. package/templates/scheduled/ts/worker-configuration.d.ts +4 -0
  88. package/templates/scheduled/ts/wrangler.toml +97 -0
  89. package/templates/solid/c3.ts +58 -13
  90. package/templates/solid/templates/wrangler.toml +77 -0
  91. package/templates/svelte/c3.ts +6 -5
  92. package/templates/svelte/js/wrangler.toml +53 -25
  93. package/templates/svelte/ts/wrangler.toml +53 -25
  94. package/templates/vue/c3.ts +7 -6
  95. package/templates/solid/js/vite.config.js +0 -12
  96. package/templates/solid/ts/vite.config.ts +0 -12
  97. package/templates/svelte/js/src/hooks.server.js +0 -25
  98. package/templates/svelte/ts/src/hooks.server.ts +0 -24
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "0.0.0-e37c1b86",
3
+ "version": "0.0.0-e39e9ff4",
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/types": "^7.21.4",
31
31
  "@clack/prompts": "^0.6.3",
32
32
  "@cloudflare/eslint-config-worker": "*",
33
- "@cloudflare/workers-types": "^4.20230419.0",
33
+ "@cloudflare/workers-types": "^4.20240405.0",
34
34
  "@iarna/toml": "^3.0.0",
35
35
  "@types/command-exists": "^1.2.0",
36
36
  "@types/cross-spawn": "^6.0.2",
@@ -50,10 +50,12 @@
50
50
  "deepmerge": "^4.3.1",
51
51
  "degit": "^2.8.4",
52
52
  "dns2": "^2.1.0",
53
+ "dotenv": "^16.0.0",
53
54
  "esbuild": "^0.17.12",
54
55
  "execa": "^7.1.1",
55
56
  "glob": "^10.3.3",
56
57
  "haikunator": "^2.1.2",
58
+ "indent-string": "^5.0.0",
57
59
  "magic-string": "^0.30.5",
58
60
  "open": "^8.4.0",
59
61
  "pnpm": "^8.10.0",
@@ -63,11 +65,12 @@
63
65
  "undici": "5.28.3",
64
66
  "vite-tsconfig-paths": "^4.0.8",
65
67
  "which-pm-runs": "^1.1.0",
68
+ "wrap-ansi": "^9.0.0",
66
69
  "yargs": "^17.7.1",
67
70
  "yarn": "^1.22.19",
68
71
  "@cloudflare/cli": "1.1.1",
69
- "wrangler": "3.29.0",
70
- "@cloudflare/workers-tsconfig": "0.0.0"
72
+ "@cloudflare/workers-tsconfig": "0.0.0",
73
+ "wrangler": "3.51.2"
71
74
  },
72
75
  "engines": {
73
76
  "node": ">=18.14.1"
@@ -0,0 +1,134 @@
1
+ import { logRaw } from "@cloudflare/cli";
2
+ import { brandColor, dim } from "@cloudflare/cli/colors";
3
+ import { spinner } from "@cloudflare/cli/interactive";
4
+ import { runFrameworkGenerator } from "frameworks/index";
5
+ import { loadTemplateSnippets, transformFile } from "helpers/codemod";
6
+ import { getLatestTypesEntrypoint } from "helpers/compatDate";
7
+ import { readFile, writeFile } from "helpers/files";
8
+ import { detectPackageManager } from "helpers/packageManagers";
9
+ import { installPackages } from "helpers/packages";
10
+ import * as recast from "recast";
11
+ import type { TemplateConfig } from "../../src/templates";
12
+ import type { C3Context } from "types";
13
+
14
+ const { npm, name: pm } = detectPackageManager();
15
+
16
+ const generate = async (ctx: C3Context) => {
17
+ await runFrameworkGenerator(ctx, [
18
+ ctx.project.name,
19
+ "--template",
20
+ "angular-v17",
21
+ ]);
22
+
23
+ logRaw(""); // newline
24
+ };
25
+
26
+ const configure = async (ctx: C3Context) => {
27
+ // Fix hoisting issues with pnpm, yarn and bun
28
+ if (pm === "pnpm" || pm === "yarn" || pm === "bun") {
29
+ const packages = [];
30
+ packages.push("nitropack");
31
+ packages.push("h3");
32
+ packages.push("@ngtools/webpack");
33
+ packages.push("@angular-devkit/build-angular");
34
+
35
+ await installPackages(packages, {
36
+ dev: true,
37
+ startText: `Installing ${packages.join(", ")}`,
38
+ doneText: `${brandColor("installed")} ${dim(`via \`${npm} install\``)}`,
39
+ });
40
+ }
41
+
42
+ updateViteConfig(ctx);
43
+ updateEnvTypes(ctx);
44
+ };
45
+
46
+ const updateEnvTypes = (ctx: C3Context) => {
47
+ const filepath = "env.d.ts";
48
+
49
+ const s = spinner();
50
+ s.start(`Updating ${filepath}`);
51
+
52
+ let file = readFile(filepath);
53
+
54
+ let typesEntrypoint = `@cloudflare/workers-types`;
55
+ const latestEntrypoint = getLatestTypesEntrypoint(ctx);
56
+ if (latestEntrypoint) {
57
+ typesEntrypoint += `/${latestEntrypoint}`;
58
+ }
59
+
60
+ // Replace placeholder with actual types entrypoint
61
+ file = file.replace("WORKERS_TYPES_ENTRYPOINT", typesEntrypoint);
62
+ writeFile("env.d.ts", file);
63
+
64
+ s.stop(`${brandColor(`updated`)} ${dim(`\`${filepath}\``)}`);
65
+ };
66
+
67
+ const updateViteConfig = (ctx: C3Context) => {
68
+ const b = recast.types.builders;
69
+ const s = spinner();
70
+
71
+ const configFile = "vite.config.ts";
72
+ s.start(`Updating \`${configFile}\``);
73
+
74
+ const snippets = loadTemplateSnippets(ctx);
75
+
76
+ transformFile(configFile, {
77
+ visitProgram(n) {
78
+ const lastImportIndex = n.node.body.findLastIndex(
79
+ (t) => t.type === "ImportDeclaration"
80
+ );
81
+ const lastImport = n.get("body", lastImportIndex);
82
+ lastImport.insertAfter(...snippets.devBindingsModuleTs);
83
+
84
+ return this.traverse(n);
85
+ },
86
+ visitCallExpression(n) {
87
+ const callee = n.node.callee as recast.types.namedTypes.Identifier;
88
+ if (callee.name === "analog") {
89
+ const pluginArguments = b.objectProperty(
90
+ b.identifier("nitro"),
91
+ b.objectExpression([
92
+ b.objectProperty(
93
+ b.identifier("preset"),
94
+ b.stringLiteral("cloudflare-pages")
95
+ ),
96
+ b.objectProperty(
97
+ b.identifier("modules"),
98
+ b.arrayExpression([b.identifier("devBindingsModule")])
99
+ ),
100
+ ])
101
+ );
102
+
103
+ n.node.arguments = [b.objectExpression([pluginArguments])];
104
+ }
105
+
106
+ return this.traverse(n);
107
+ },
108
+ });
109
+
110
+ s.stop(`${brandColor(`updated`)} ${dim(`\`${configFile}\``)}`);
111
+ };
112
+
113
+ const config: TemplateConfig = {
114
+ configVersion: 1,
115
+ id: "analog",
116
+ platform: "pages",
117
+ displayName: "Analog",
118
+ copyFiles: {
119
+ path: "./templates",
120
+ },
121
+ generate,
122
+ configure,
123
+ transformPackageJson: async () => ({
124
+ scripts: {
125
+ preview: `${npm} run build && wrangler pages dev`,
126
+ deploy: `${npm} run build && wrangler pages deploy`,
127
+ "cf-typegen": `wrangler types`,
128
+ },
129
+ }),
130
+ devScript: "dev",
131
+ deployScript: "deploy",
132
+ previewScript: "preview",
133
+ };
134
+ export default config;
@@ -0,0 +1,7 @@
1
+ import { Nitro } from 'nitropack';
2
+
3
+ const devBindingsModule = async (nitro: Nitro) => {
4
+ if (nitro.options.dev) {
5
+ nitro.options.plugins.push('./src/dev-bindings.ts');
6
+ }
7
+ };
@@ -0,0 +1,13 @@
1
+ /// <reference types="WORKERS_TYPES_ENTRYPOINT" />
2
+
3
+ declare module "h3" {
4
+ interface H3EventContext {
5
+ cf: CfProperties;
6
+ cloudflare: {
7
+ env: Env;
8
+ context: ExecutionContext;
9
+ };
10
+ }
11
+ }
12
+
13
+ export {};
@@ -0,0 +1,18 @@
1
+ import { NitroApp } from 'nitropack';
2
+ import { defineNitroPlugin } from 'nitropack/dist/runtime/plugin';
3
+
4
+ export default defineNitroPlugin((nitroApp: NitroApp) => {
5
+ nitroApp.hooks.hook('request', async (event) => {
6
+ const _pkg = 'wrangler'; // Bypass bundling!
7
+ const { getPlatformProxy } = (await import(
8
+ _pkg
9
+ )) as typeof import('wrangler');
10
+ const platform = await getPlatformProxy();
11
+
12
+ event.context.cf = platform['cf'];
13
+ event.context.cloudflare = {
14
+ env: platform['env'] as unknown as Env,
15
+ context: platform['ctx'],
16
+ };
17
+ });
18
+ });
@@ -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,78 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ pages_build_output_dir = "./dist/analog/public"
5
+
6
+ # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
7
+ # Note: Use secrets to store sensitive data.
8
+ # Docs:
9
+ # - https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
10
+ # - https://developers.cloudflare.com/pages/functions/bindings/#secrets
11
+ # [vars]
12
+ # MY_VARIABLE = "production_value"
13
+
14
+ # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
15
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#workers-ai
16
+ # [ai]
17
+ # binding = "AI"
18
+
19
+ # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
20
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#d1-databases
21
+ # [[d1_databases]]
22
+ # binding = "MY_DB"
23
+ # database_name = "my-database"
24
+ # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
25
+
26
+ # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
27
+ # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
28
+ # Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
29
+ # [[durable_objects.bindings]]
30
+ # name = "MY_DURABLE_OBJECT"
31
+ # class_name = "MyDurableObject"
32
+ # script_name = 'my-durable-object'
33
+
34
+ # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
35
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#kv-namespaces
36
+ # [[kv_namespaces]]
37
+ # binding = "MY_KV_NAMESPACE"
38
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
39
+
40
+ # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
41
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#queue-producers
42
+ # [[queues.producers]]
43
+ # binding = "MY_QUEUE"
44
+ # queue = "my-queue"
45
+
46
+ # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
47
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#r2-buckets
48
+ # [[r2_buckets]]
49
+ # binding = "MY_BUCKET"
50
+ # bucket_name = "my-bucket"
51
+
52
+ # Bind another Worker service. Use this binding to call another Worker without network overhead.
53
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#service-bindings
54
+ # [[services]]
55
+ # binding = "MY_SERVICE"
56
+ # service = "my-service"
57
+
58
+ # To use different bindings for preview and production environments, follow the examples below.
59
+ # When using environment-specific overrides for bindings, ALL bindings must be specified on a per-environment basis.
60
+ # Docs: https://developers.cloudflare.com/pages/functions/wrangler-configuration#environment-specific-overrides
61
+
62
+ ######## PREVIEW environment config ########
63
+
64
+ # [env.preview.vars]
65
+ # API_KEY = "xyz789"
66
+
67
+ # [[env.preview.kv_namespaces]]
68
+ # binding = "MY_KV_NAMESPACE"
69
+ # id = "<PREVIEW_NAMESPACE_ID>"
70
+
71
+ ######## PRODUCTION environment config ########
72
+
73
+ # [env.production.vars]
74
+ # API_KEY = "abc123"
75
+
76
+ # [[env.production.kv_namespaces]]
77
+ # binding = "MY_KV_NAMESPACE"
78
+ # id = "<PRODUCTION_NAMESPACE_ID>"
@@ -2,9 +2,11 @@ import { resolve } from "node:path";
2
2
  import { logRaw } from "@cloudflare/cli";
3
3
  import { brandColor, dim } from "@cloudflare/cli/colors";
4
4
  import { spinner } from "@cloudflare/cli/interactive";
5
- import { installPackages, runFrameworkGenerator } from "helpers/command";
6
- import { compatDateFlag, readFile, readJSON, writeFile } from "helpers/files";
7
- import { detectPackageManager } from "helpers/packages";
5
+ import { runFrameworkGenerator } from "frameworks/index";
6
+ import { compatDateFlag } from "helpers/compatDate";
7
+ import { readFile, readJSON, writeFile } from "helpers/files";
8
+ import { detectPackageManager } from "helpers/packageManagers";
9
+ import { installPackages } from "helpers/packages";
8
10
  import type { TemplateConfig } from "../../src/templates";
9
11
  import type { C3Context } from "types";
10
12
 
@@ -81,19 +83,18 @@ const config: TemplateConfig = {
81
83
  copyFiles: {
82
84
  path: "./templates",
83
85
  },
86
+ devScript: "start",
87
+ deployScript: "deploy",
84
88
  generate,
85
89
  configure,
86
90
  transformPackageJson: async () => ({
87
91
  scripts: {
88
- start: `${npm} run pages:build && wrangler pages dev dist/cloudflare ${await compatDateFlag()} --experimental-local`,
92
+ start: `${npm} run build && wrangler pages dev dist/cloudflare ${await compatDateFlag()} --experimental-local`,
93
+ build: `ng build && ${npm} run process`,
89
94
  process:
90
95
  "node ./tools/copy-files.mjs && node ./tools/alter-polyfills.mjs",
91
- "pages:build": `ng build && ${npm} run process`,
92
- deploy: `${npm} run pages:build && wrangler pages deploy dist/cloudflare`,
96
+ deploy: `${npm} run build && wrangler pages deploy dist/cloudflare`,
93
97
  },
94
98
  }),
95
- deployScript: "deploy",
96
- devScript: "start",
97
- testFlags: ["--style", "sass"],
98
99
  };
99
100
  export default config;
@@ -1,10 +1,13 @@
1
- import { logRaw } from "@cloudflare/cli";
2
- import { brandColor, dim } from "@cloudflare/cli/colors";
3
- import { runCommand, runFrameworkGenerator } from "helpers/command";
4
- import { compatDateFlag } from "helpers/files";
5
- import { detectPackageManager } from "helpers/packages";
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";
6
9
  import type { TemplateConfig } from "../../src/templates";
7
- import type { C3Context } from "types";
10
+ import type { C3Context, PackageJson } from "types";
8
11
 
9
12
  const { npx } = detectPackageManager();
10
13
 
@@ -14,7 +17,7 @@ const generate = async (ctx: C3Context) => {
14
17
  logRaw(""); // newline
15
18
  };
16
19
 
17
- const configure = async () => {
20
+ const configure = async (ctx: C3Context) => {
18
21
  await runCommand([npx, "astro", "add", "cloudflare", "-y"], {
19
22
  silent: true,
20
23
  startText: "Installing adapter",
@@ -22,6 +25,67 @@ const configure = async () => {
22
25
  `via \`${npx} astro add cloudflare\``
23
26
  )}`,
24
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
+ });
25
89
  };
26
90
 
27
91
  const config: TemplateConfig = {
@@ -29,22 +93,20 @@ const config: TemplateConfig = {
29
93
  id: "astro",
30
94
  platform: "pages",
31
95
  displayName: "Astro",
96
+ copyFiles: {
97
+ path: "./templates",
98
+ },
99
+ devScript: "dev",
100
+ deployScript: "deploy",
101
+ previewScript: "preview",
32
102
  generate,
33
103
  configure,
34
- transformPackageJson: async () => ({
104
+ transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
35
105
  scripts: {
36
- "pages:dev": `wrangler pages dev ${await compatDateFlag()} -- astro dev`,
37
- "pages:deploy": `astro build && wrangler pages deploy ./dist`,
106
+ deploy: `astro build && wrangler pages deploy`,
107
+ preview: `astro build && wrangler pages dev`,
108
+ ...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
38
109
  },
39
110
  }),
40
- testFlags: [
41
- "--skip-houston",
42
- "--no-install",
43
- "--no-git",
44
- "--template",
45
- "blog",
46
- "--typescript",
47
- "strict",
48
- ],
49
111
  };
50
112
  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,78 @@
1
+ #:schema node_modules/wrangler/config-schema.json
2
+ name = "<TBD>"
3
+ compatibility_date = "<TBD>"
4
+ pages_build_output_dir = "./dist"
5
+
6
+ # Variable bindings. These are arbitrary, plaintext strings (similar to environment variables)
7
+ # Docs:
8
+ # - https://developers.cloudflare.com/pages/functions/bindings/#environment-variables
9
+ # Note: Use secrets to store sensitive data.
10
+ # - https://developers.cloudflare.com/pages/functions/bindings/#secrets
11
+ # [vars]
12
+ # MY_VARIABLE = "production_value"
13
+
14
+ # Bind the Workers AI model catalog. Run machine learning models, powered by serverless GPUs, on Cloudflare’s global network
15
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#workers-ai
16
+ # [ai]
17
+ # binding = "AI"
18
+
19
+ # Bind a D1 database. D1 is Cloudflare’s native serverless SQL database.
20
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#d1-databases
21
+ # [[d1_databases]]
22
+ # binding = "MY_DB"
23
+ # database_name = "my-database"
24
+ # database_id = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
25
+
26
+ # Bind a Durable Object. Durable objects are a scale-to-zero compute primitive based on the actor model.
27
+ # Durable Objects can live for as long as needed. Use these when you need a long-running "server", such as in realtime apps.
28
+ # Docs: https://developers.cloudflare.com/workers/runtime-apis/durable-objects
29
+ # [[durable_objects.bindings]]
30
+ # name = "MY_DURABLE_OBJECT"
31
+ # class_name = "MyDurableObject"
32
+ # script_name = 'my-durable-object'
33
+
34
+ # Bind a KV Namespace. Use KV as persistent storage for small key-value pairs.
35
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#kv-namespaces
36
+ # [[kv_namespaces]]
37
+ # binding = "MY_KV_NAMESPACE"
38
+ # id = "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
39
+
40
+ # Bind a Queue producer. Use this binding to schedule an arbitrary task that may be processed later by a Queue consumer.
41
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#queue-producers
42
+ # [[queues.producers]]
43
+ # binding = "MY_QUEUE"
44
+ # queue = "my-queue"
45
+
46
+ # Bind an R2 Bucket. Use R2 to store arbitrarily large blobs of data, such as files.
47
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#r2-buckets
48
+ # [[r2_buckets]]
49
+ # binding = "MY_BUCKET"
50
+ # bucket_name = "my-bucket"
51
+
52
+ # Bind another Worker service. Use this binding to call another Worker without network overhead.
53
+ # Docs: https://developers.cloudflare.com/pages/functions/bindings/#service-bindings
54
+ # [[services]]
55
+ # binding = "MY_SERVICE"
56
+ # service = "my-service"
57
+
58
+ # To use different bindings for preview and production environments, follow the examples below.
59
+ # When using environment-specific overrides for bindings, ALL bindings must be specified on a per-environment basis.
60
+ # Docs: https://developers.cloudflare.com/pages/functions/wrangler-configuration#environment-specific-overrides
61
+
62
+ ######## PREVIEW environment config ########
63
+
64
+ # [env.preview.vars]
65
+ # API_KEY = "xyz789"
66
+
67
+ # [[env.preview.kv_namespaces]]
68
+ # binding = "MY_KV_NAMESPACE"
69
+ # id = "<PREVIEW_NAMESPACE_ID>"
70
+
71
+ ######## PRODUCTION environment config ########
72
+
73
+ # [env.production.vars]
74
+ # API_KEY = "abc123"
75
+
76
+ # [[env.production.kv_namespaces]]
77
+ # binding = "MY_KV_NAMESPACE"
78
+ # id = "<PRODUCTION_NAMESPACE_ID>"
@@ -3,7 +3,6 @@ root = true
3
3
 
4
4
  [*]
5
5
  indent_style = tab
6
- tab_width = 2
7
6
  end_of_line = lf
8
7
  charset = utf-8
9
8
  trim_trailing_whitespace = true