create-cloudflare 0.0.0-fd9dff833 → 0.0.0-fdae3f766
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.
- package/dist/cli.js +1314 -1185
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +8 -8
- package/templates/analog/c3.ts +0 -24
- package/templates/analog/templates/env.d.ts +1 -1
- package/templates/angular/pages/c3.ts +4 -3
- package/templates/angular/pages/templates/wrangler.jsonc +5 -0
- package/templates/angular/workers/c3.ts +1 -0
- package/templates/astro/c3.ts +5 -93
- package/templates/astro/pages/c3.ts +99 -0
- package/{templates-experimental/astro → templates/astro/workers}/c3.ts +2 -2
- package/templates/astro/workers/templates/js/public/.assetsignore +2 -0
- package/{templates-experimental/astro/templates/ts → templates/astro/workers/templates/js}/wrangler.jsonc +2 -1
- package/templates/astro/workers/templates/ts/public/.assetsignore +2 -0
- package/{templates-experimental/astro/templates/js → templates/astro/workers/templates/ts}/wrangler.jsonc +3 -2
- package/templates/common/c3.ts +5 -1
- package/templates/common/ts/tsconfig.json +0 -3
- package/templates/docusaurus/pages/c3.ts +2 -0
- package/templates/docusaurus/workers/c3.ts +1 -0
- package/templates/gatsby/pages/c3.ts +2 -0
- package/templates/gatsby/workers/c3.ts +1 -0
- package/templates/hello-world/c3.ts +3 -2
- package/templates/hello-world/js/package.json +1 -1
- package/templates/hello-world/py/README.md +2 -2
- package/templates/hello-world/py/pyproject.toml +1 -1
- package/templates/hello-world/py/src/entry.py +3 -2
- package/templates/hello-world/ts/package.json +1 -1
- package/templates/hello-world/ts/test/env.d.ts +3 -0
- package/templates/hello-world/ts/test/index.spec.ts +0 -1
- package/templates/hello-world/ts/test/tsconfig.json +1 -1
- package/templates/hello-world/ts/tsconfig.json +0 -2
- package/{templates-experimental → templates}/hello-world-assets-only/c3.ts +4 -3
- package/{templates-experimental → templates}/hello-world-assets-only/templates/public/index.html +1 -0
- package/{templates-experimental → templates}/hello-world-assets-only/templates/wrangler.jsonc +1 -0
- package/templates/hello-world-durable-object/c3.ts +9 -3
- package/templates/hello-world-durable-object/js/src/index.js +10 -9
- package/templates/hello-world-durable-object/js/wrangler.jsonc +1 -1
- package/templates/hello-world-durable-object/py/.python-version +1 -0
- package/templates/hello-world-durable-object/py/README.md +23 -0
- package/templates/hello-world-durable-object/py/__dot__gitignore +68 -0
- package/templates/hello-world-durable-object/py/package.json +13 -0
- package/templates/hello-world-durable-object/py/pyproject.toml +9 -0
- package/templates/hello-world-durable-object/py/src/entry.py +66 -0
- package/templates/hello-world-durable-object/py/uv.lock +22 -0
- package/templates/hello-world-durable-object/py/wrangler.jsonc +27 -0
- package/templates/hello-world-durable-object/ts/src/index.ts +10 -9
- package/templates/hello-world-durable-object/ts/tsconfig.json +0 -2
- package/templates/hello-world-durable-object/ts/wrangler.jsonc +1 -1
- package/{templates-experimental → templates}/hello-world-durable-object-with-assets/c3.ts +6 -3
- package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/public/index.html +1 -0
- package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/src/index.js +11 -10
- package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/wrangler.jsonc +3 -3
- package/templates/hello-world-durable-object-with-assets/py/.python-version +1 -0
- package/templates/hello-world-durable-object-with-assets/py/README.md +23 -0
- package/{templates-experimental/hello-world-durable-object-with-assets/ts → templates/hello-world-durable-object-with-assets/py}/public/index.html +1 -0
- package/templates/hello-world-durable-object-with-assets/py/pyproject.toml +9 -0
- package/templates/hello-world-durable-object-with-assets/py/src/entry.py +66 -0
- package/templates/hello-world-durable-object-with-assets/py/uv.lock +22 -0
- package/templates/hello-world-durable-object-with-assets/py/wrangler.jsonc +31 -0
- package/templates/hello-world-durable-object-with-assets/ts/public/index.html +20 -0
- package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/src/index.ts +10 -9
- package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/tsconfig.json +0 -2
- package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/wrangler.jsonc +2 -2
- package/templates/hello-world-with-assets/c3.ts +25 -0
- package/{templates-experimental → templates}/hello-world-with-assets/js/package.json +1 -1
- package/{templates-experimental/hello-world-with-assets/py → templates/hello-world-with-assets/js}/public/index.html +3 -2
- package/{templates-experimental → templates}/hello-world-with-assets/js/wrangler.jsonc +3 -2
- package/templates/hello-world-with-assets/py/.python-version +1 -0
- package/templates/hello-world-with-assets/py/README.md +23 -0
- package/templates/hello-world-with-assets/py/__dot__gitignore +68 -0
- package/templates/hello-world-with-assets/py/package.json +13 -0
- package/{templates-experimental/hello-world-with-assets/ts → templates/hello-world-with-assets/py}/public/index.html +3 -2
- package/templates/hello-world-with-assets/py/pyproject.toml +9 -0
- package/templates/hello-world-with-assets/py/src/entry.py +11 -0
- package/templates/hello-world-with-assets/py/uv.lock +22 -0
- package/{templates-experimental → templates}/hello-world-with-assets/py/wrangler.jsonc +1 -1
- package/{templates-experimental → templates}/hello-world-with-assets/ts/package.json +1 -1
- package/{templates-experimental/hello-world-with-assets/js → templates/hello-world-with-assets/ts}/public/index.html +3 -2
- package/templates/hello-world-with-assets/ts/test/env.d.ts +3 -0
- package/templates/hello-world-with-assets/ts/test/tsconfig.json +8 -0
- package/{templates-experimental → templates}/hello-world-with-assets/ts/tsconfig.json +0 -2
- package/{templates-experimental → templates}/hello-world-with-assets/ts/wrangler.jsonc +2 -2
- package/templates/hono/c3.ts +5 -66
- package/templates/hono/pages/c3.ts +47 -0
- package/templates/hono/pages/templates/src/index.tsx +12 -0
- package/templates/hono/{templates → pages/templates}/wrangler.jsonc +1 -1
- package/{templates-experimental/hono → templates/hono/workers}/c3.ts +5 -5
- package/templates/next/c3.ts +7 -221
- package/templates/next/pages/c3.ts +221 -0
- package/{templates-experimental/next → templates/next/workers}/c3.ts +12 -16
- package/templates/next/workers/templates/open-next.config.ts +9 -0
- package/{templates-experimental/next → templates/next/workers}/templates/wrangler.jsonc +3 -2
- package/templates/nuxt/pages/c3.ts +4 -26
- package/templates/nuxt/pages/templates/env.d.ts +1 -1
- package/templates/nuxt/workers/c3.ts +3 -26
- package/templates/nuxt/workers/templates/env.d.ts +1 -1
- package/templates/openapi/c3.ts +5 -1
- package/templates/openapi/ts/__dot__gitignore +1 -0
- package/templates/openapi/ts/package.json +7 -6
- package/templates/openapi/ts/src/endpoints/taskCreate.ts +2 -2
- package/templates/openapi/ts/src/endpoints/taskDelete.ts +2 -2
- package/templates/openapi/ts/src/endpoints/taskFetch.ts +2 -2
- package/templates/openapi/ts/src/endpoints/taskList.ts +2 -2
- package/templates/openapi/ts/src/index.ts +4 -1
- package/templates/openapi/ts/src/types.ts +3 -0
- package/templates/openapi/ts/tsconfig.json +18 -21
- package/templates/pre-existing/c3.ts +6 -2
- package/templates/queues/c3.ts +5 -1
- package/templates/queues/ts/tsconfig.json +0 -2
- package/templates/qwik/c3.ts +5 -144
- package/templates/qwik/pages/c3.ts +151 -0
- package/{templates-experimental/qwik → templates/qwik/workers}/c3.ts +5 -6
- package/{templates-experimental/qwik → templates/qwik/workers}/templates/wrangler.jsonc +2 -1
- package/templates/react/pages/c3.ts +5 -2
- package/templates/react/pages/templates/wrangler.jsonc +5 -0
- package/templates/react/workers/c3.ts +1 -1
- package/templates/react/workers/js/src/App.jsx +1 -1
- package/templates/react/workers/js/src/assets/Cloudflare_Logo.svg +7 -5
- package/templates/react/workers/js/{api → worker}/index.js +1 -1
- package/templates/react/workers/js/wrangler.jsonc +2 -2
- package/templates/react/workers/ts/src/App.tsx +1 -1
- package/templates/react/workers/ts/tsconfig.worker.json +2 -2
- package/templates/react/workers/ts/{api → worker}/index.ts +2 -3
- package/templates/react/workers/ts/wrangler.jsonc +2 -2
- package/templates/react-router/c3.ts +41 -0
- package/templates/remix/c3.ts +6 -63
- package/templates/remix/pages/c3.ts +70 -0
- package/{templates-experimental/remix → templates/remix/workers}/c3.ts +3 -2
- package/templates/remix/workers/templates/worker-configuration.d.ts +4 -0
- package/{templates-experimental/remix → templates/remix/workers}/templates/wrangler.toml +1 -1
- package/templates/scheduled/c3.ts +5 -1
- package/templates/scheduled/ts/src/index.ts +7 -0
- package/templates/scheduled/ts/tsconfig.json +0 -2
- package/templates/solid/c3.ts +1 -0
- package/templates/svelte/c3.ts +5 -154
- package/templates/svelte/pages/c3.ts +160 -0
- package/{templates-experimental/svelte → templates/svelte/workers}/c3.ts +6 -6
- package/templates/svelte/workers/templates/static/.assetsignore +2 -0
- package/templates/vue/pages/c3.ts +6 -3
- package/templates/vue/pages/templates/wrangler.jsonc +5 -0
- package/templates/vue/workers/js/server/index.js +2 -2
- package/templates/vue/workers/js/wrangler.jsonc +0 -1
- package/templates/vue/workers/ts/server/index.ts +2 -3
- package/templates/vue/workers/ts/tsconfig.worker.json +1 -1
- package/templates/vue/workers/ts/wrangler.jsonc +0 -1
- package/templates-experimental/solid/c3.ts +1 -1
- package/templates/analog/templates/worker-configuration.d.ts +0 -4
- package/templates/astro/templates/ts/worker-configuration.d.ts +0 -4
- package/templates/common/ts/worker-configuration.d.ts +0 -4
- package/templates/hello-world/ts/worker-configuration.d.ts +0 -4
- package/templates/hello-world-durable-object/ts/worker-configuration.d.ts +0 -5
- package/templates/hono/snippets/appDeclaration.ts +0 -1
- package/templates/hono/templates/worker-configuration.d.ts +0 -4
- package/templates/next/env.d.ts +0 -5
- package/templates/nuxt/pages/templates/worker-configuration.d.ts +0 -4
- package/templates/nuxt/workers/templates/worker-configuration.d.ts +0 -4
- package/templates/openapi/ts/worker-configuration.d.ts +0 -4
- package/templates/queues/ts/worker-configuration.d.ts +0 -5
- package/templates/qwik/templates/worker-configuration.d.ts +0 -4
- package/templates/react/workers/ts/worker-configuration.d.ts +0 -5
- package/templates/remix/templates/worker-configuration.d.ts +0 -4
- package/templates/scheduled/ts/worker-configuration.d.ts +0 -4
- package/templates/vue/workers/ts/worker-configuration.d.ts +0 -6
- package/templates-experimental/astro/templates/ts/public/.assetsignore +0 -4
- package/templates-experimental/hello-world-durable-object-with-assets/ts/worker-configuration.d.ts +0 -5
- package/templates-experimental/hello-world-with-assets/c3.ts +0 -22
- package/templates-experimental/hello-world-with-assets/py/src/entry.py +0 -9
- package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +0 -8
- package/templates-experimental/hono/templates/worker-configuration.d.ts +0 -4
- package/templates-experimental/next/templates/cloudflare-env.d.ts +0 -5
- package/templates-experimental/next/templates/open-next.config.ts +0 -6
- package/templates-experimental/qwik/templates/public/.assetsignore +0 -4
- package/templates-experimental/svelte/templates/static/.assetsignore +0 -4
- /package/templates/astro/{templates → pages/templates}/js/wrangler.jsonc +0 -0
- /package/{templates-experimental/astro → templates/astro/pages}/templates/ts/src/env.d.ts +0 -0
- /package/{templates-experimental/astro → templates/astro/pages}/templates/ts/worker-configuration.d.ts +0 -0
- /package/templates/astro/{templates → pages/templates}/ts/wrangler.jsonc +0 -0
- /package/templates/astro/{templates → workers/templates}/ts/src/env.d.ts +0 -0
- /package/{templates-experimental → templates}/hello-world-assets-only/templates/package.json +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/.editorconfig +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/.prettierrc +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/__dot__gitignore +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/js/package.json +0 -0
- /package/{templates-experimental/hello-world-with-assets → templates/hello-world-durable-object-with-assets}/py/__dot__gitignore +0 -0
- /package/{templates-experimental/hello-world-with-assets → templates/hello-world-durable-object-with-assets}/py/package.json +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/.editorconfig +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/.prettierrc +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/__dot__gitignore +0 -0
- /package/{templates-experimental → templates}/hello-world-durable-object-with-assets/ts/package.json +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/js/.editorconfig +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/js/.prettierrc +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/js/__dot__gitignore +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/js/src/index.js +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/js/test/index.spec.js +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/js/vitest.config.js +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/ts/.editorconfig +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/ts/.prettierrc +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/ts/__dot__gitignore +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/ts/src/index.ts +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/ts/test/index.spec.ts +0 -0
- /package/{templates-experimental → templates}/hello-world-with-assets/ts/vitest.config.mts +0 -0
- /package/{templates-experimental/hono → templates/hono/workers}/templates/public/index.html +0 -0
- /package/{templates-experimental/hono → templates/hono/workers}/templates/src/index.ts +0 -0
- /package/{templates-experimental/hono → templates/hono/workers}/templates/wrangler.jsonc +0 -0
- /package/templates/next/{README.md → pages/README.md} +0 -0
- /package/templates/next/{app → pages/app}/js/app/api/hello/route.js +0 -0
- /package/templates/next/{app → pages/app}/js/app/not-found.js +0 -0
- /package/templates/next/{app → pages/app}/ts/app/api/hello/route.ts +0 -0
- /package/templates/next/{app → pages/app}/ts/app/not-found.tsx +0 -0
- /package/templates/next/pages/{js → pages/js}/pages/api/hello.js +0 -0
- /package/templates/next/pages/{ts → pages/ts}/pages/api/hello.ts +0 -0
- /package/templates/next/{wrangler.jsonc → pages/wrangler.jsonc} +0 -0
- /package/{templates-experimental/next → templates/next/workers}/templates/.dev.vars +0 -0
- /package/{templates-experimental/next → templates/next/workers}/templates/__dot__gitignore +0 -0
- /package/{templates-experimental/qwik → templates/qwik/pages}/snippets/getPlatformProxy.ts +0 -0
- /package/{templates-experimental/hello-world-with-assets/ts → templates/qwik/pages/templates}/worker-configuration.d.ts +0 -0
- /package/templates/qwik/{templates → pages/templates}/wrangler.jsonc +0 -0
- /package/templates/qwik/{snippets → workers/snippets}/getPlatformProxy.ts +0 -0
- /package/{templates-experimental/astro/templates/js → templates/qwik/workers/templates}/public/.assetsignore +0 -0
- /package/{templates-experimental/qwik → templates/qwik/workers}/templates/worker-configuration.d.ts +0 -0
- /package/{templates-experimental/remix → templates/remix/pages}/templates/worker-configuration.d.ts +0 -0
- /package/templates/remix/{templates → pages/templates}/wrangler.jsonc +0 -0
- /package/{templates-experimental/remix → templates/remix/workers}/templates/public/.assetsignore +0 -0
- /package/templates/svelte/{templates → pages/templates}/wrangler.jsonc +0 -0
- /package/{templates-experimental/svelte → templates/svelte/workers}/templates/wrangler.jsonc +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cloudflare",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-fdae3f766",
|
|
4
4
|
"description": "A CLI for creating and deploying new applications to Cloudflare.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
"@babel/parser": "^7.21.3",
|
|
31
31
|
"@babel/types": "^7.21.4",
|
|
32
32
|
"@clack/prompts": "^0.6.3",
|
|
33
|
-
"@cloudflare/workers-types": "^4.
|
|
33
|
+
"@cloudflare/workers-types": "^4.20250523.0",
|
|
34
34
|
"@iarna/toml": "^3.0.0",
|
|
35
35
|
"@types/command-exists": "^1.2.0",
|
|
36
36
|
"@types/cross-spawn": "^6.0.2",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"@types/degit": "^2.8.6",
|
|
39
39
|
"@types/dns2": "^2.0.3",
|
|
40
40
|
"@types/esprima": "^4.0.3",
|
|
41
|
-
"@types/node": "^
|
|
41
|
+
"@types/node": "^20.17.32",
|
|
42
42
|
"@types/semver": "^7.5.1",
|
|
43
43
|
"@types/which-pm-runs": "^1.0.0",
|
|
44
44
|
"@types/yargs": "^17.0.22",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"degit": "^2.8.4",
|
|
53
53
|
"dns2": "^2.1.0",
|
|
54
54
|
"dotenv": "^16.0.0",
|
|
55
|
-
"esbuild": "0.
|
|
55
|
+
"esbuild": "0.25.4",
|
|
56
56
|
"execa": "^7.1.1",
|
|
57
57
|
"glob": "^10.3.3",
|
|
58
58
|
"haikunator": "^2.1.2",
|
|
@@ -65,17 +65,17 @@
|
|
|
65
65
|
"undici": "^5.28.5",
|
|
66
66
|
"vite": "^5.4.14",
|
|
67
67
|
"vite-tsconfig-paths": "^4.0.8",
|
|
68
|
-
"vitest": "~3.
|
|
68
|
+
"vitest": "~3.1.1",
|
|
69
69
|
"which-pm-runs": "^1.1.0",
|
|
70
70
|
"wrap-ansi": "^9.0.0",
|
|
71
71
|
"xdg-app-paths": "^8.3.0",
|
|
72
72
|
"yargs": "^17.7.2",
|
|
73
73
|
"@cloudflare/cli": "1.1.1",
|
|
74
|
-
"@cloudflare/eslint-config-worker": "1.1.0",
|
|
75
74
|
"@cloudflare/mock-npm-registry": "0.0.0",
|
|
76
|
-
"@cloudflare/vite-plugin": "0.0.0-
|
|
75
|
+
"@cloudflare/vite-plugin": "0.0.0-fdae3f766",
|
|
77
76
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
78
|
-
"wrangler": "0.0.0-
|
|
77
|
+
"wrangler": "0.0.0-fdae3f766",
|
|
78
|
+
"@cloudflare/eslint-config-worker": "1.1.0"
|
|
79
79
|
},
|
|
80
80
|
"engines": {
|
|
81
81
|
"node": ">=18.14.1"
|
package/templates/analog/c3.ts
CHANGED
|
@@ -3,8 +3,6 @@ import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
|
3
3
|
import { spinner } from "@cloudflare/cli/interactive";
|
|
4
4
|
import { runFrameworkGenerator } from "frameworks/index";
|
|
5
5
|
import { loadTemplateSnippets, transformFile } from "helpers/codemod";
|
|
6
|
-
import { getLatestTypesEntrypoint } from "helpers/compatDate";
|
|
7
|
-
import { readFile, writeFile } from "helpers/files";
|
|
8
6
|
import { detectPackageManager } from "helpers/packageManagers";
|
|
9
7
|
import { installPackages } from "helpers/packages";
|
|
10
8
|
import * as recast from "recast";
|
|
@@ -40,28 +38,6 @@ const configure = async (ctx: C3Context) => {
|
|
|
40
38
|
}
|
|
41
39
|
|
|
42
40
|
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
41
|
};
|
|
66
42
|
|
|
67
43
|
const updateViteConfig = (ctx: C3Context) => {
|
|
@@ -3,7 +3,6 @@ import { logRaw } from "@cloudflare/cli";
|
|
|
3
3
|
import { brandColor, dim } from "@cloudflare/cli/colors";
|
|
4
4
|
import { spinner } from "@cloudflare/cli/interactive";
|
|
5
5
|
import { runFrameworkGenerator } from "frameworks/index";
|
|
6
|
-
import { compatDateFlag } from "helpers/compatDate";
|
|
7
6
|
import { readFile, readJSON, writeFile } from "helpers/files";
|
|
8
7
|
import { detectPackageManager } from "helpers/packageManagers";
|
|
9
8
|
import { installPackages } from "helpers/packages";
|
|
@@ -95,6 +94,7 @@ const config: TemplateConfig = {
|
|
|
95
94
|
frameworkCli: "@angular/create",
|
|
96
95
|
displayName: "Angular",
|
|
97
96
|
platform: "pages",
|
|
97
|
+
hidden: true,
|
|
98
98
|
copyFiles: {
|
|
99
99
|
path: "./templates",
|
|
100
100
|
},
|
|
@@ -106,10 +106,11 @@ const config: TemplateConfig = {
|
|
|
106
106
|
configure,
|
|
107
107
|
transformPackageJson: async () => ({
|
|
108
108
|
scripts: {
|
|
109
|
-
start: `${npm} run build && wrangler pages dev
|
|
109
|
+
start: `${npm} run build && wrangler pages dev`,
|
|
110
110
|
build: `ng build && ${npm} run process`,
|
|
111
111
|
process: "node ./tools/copy-files.mjs",
|
|
112
|
-
deploy: `${npm} run build && wrangler pages deploy
|
|
112
|
+
deploy: `${npm} run build && wrangler pages deploy`,
|
|
113
|
+
"cf-typegen": `wrangler types`,
|
|
113
114
|
},
|
|
114
115
|
}),
|
|
115
116
|
};
|
package/templates/astro/c3.ts
CHANGED
|
@@ -1,97 +1,9 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
4
|
-
import { 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";
|
|
1
|
+
import pages from "./pages/c3";
|
|
2
|
+
import workers from "./workers/c3";
|
|
3
|
+
import type { MultiPlatformTemplateConfig } from "../../src/templates";
|
|
11
4
|
|
|
12
|
-
const
|
|
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 () => {
|
|
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
|
-
};
|
|
31
|
-
|
|
32
|
-
const updateAstroConfig = () => {
|
|
33
|
-
const filePath = "astro.config.mjs";
|
|
34
|
-
|
|
35
|
-
updateStatus(`Updating configuration in ${blue(filePath)}`);
|
|
36
|
-
|
|
37
|
-
transformFile(filePath, {
|
|
38
|
-
visitCallExpression: function (n) {
|
|
39
|
-
const callee = n.node.callee as recast.types.namedTypes.Identifier;
|
|
40
|
-
if (callee.name !== "cloudflare") {
|
|
41
|
-
return this.traverse(n);
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
const b = recast.types.builders;
|
|
45
|
-
n.node.arguments = [
|
|
46
|
-
b.objectExpression([
|
|
47
|
-
b.objectProperty(
|
|
48
|
-
b.identifier("platformProxy"),
|
|
49
|
-
b.objectExpression([
|
|
50
|
-
b.objectProperty(b.identifier("enabled"), b.booleanLiteral(true)),
|
|
51
|
-
]),
|
|
52
|
-
),
|
|
53
|
-
]),
|
|
54
|
-
];
|
|
55
|
-
|
|
56
|
-
return false;
|
|
57
|
-
},
|
|
58
|
-
});
|
|
59
|
-
};
|
|
60
|
-
|
|
61
|
-
const config: TemplateConfig = {
|
|
62
|
-
configVersion: 1,
|
|
63
|
-
id: "astro",
|
|
64
|
-
frameworkCli: "create-astro",
|
|
65
|
-
platform: "pages",
|
|
5
|
+
const config: MultiPlatformTemplateConfig = {
|
|
66
6
|
displayName: "Astro",
|
|
67
|
-
|
|
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
|
-
},
|
|
83
|
-
},
|
|
84
|
-
devScript: "dev",
|
|
85
|
-
deployScript: "deploy",
|
|
86
|
-
previewScript: "preview",
|
|
87
|
-
generate,
|
|
88
|
-
configure,
|
|
89
|
-
transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
|
|
90
|
-
scripts: {
|
|
91
|
-
deploy: `astro build && wrangler pages deploy`,
|
|
92
|
-
preview: `astro build && wrangler pages dev`,
|
|
93
|
-
...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
|
|
94
|
-
},
|
|
95
|
-
}),
|
|
7
|
+
platformVariants: { pages, workers },
|
|
96
8
|
};
|
|
97
9
|
export default config;
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
import { logRaw, updateStatus } from "@cloudflare/cli";
|
|
2
|
+
import { blue, brandColor, dim } from "@cloudflare/cli/colors";
|
|
3
|
+
import { runFrameworkGenerator } from "frameworks/index";
|
|
4
|
+
import { 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 () => {
|
|
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
|
+
};
|
|
31
|
+
|
|
32
|
+
const updateAstroConfig = () => {
|
|
33
|
+
const filePath = "astro.config.mjs";
|
|
34
|
+
|
|
35
|
+
updateStatus(`Updating configuration in ${blue(filePath)}`);
|
|
36
|
+
|
|
37
|
+
transformFile(filePath, {
|
|
38
|
+
visitCallExpression: function (n) {
|
|
39
|
+
const callee = n.node.callee as recast.types.namedTypes.Identifier;
|
|
40
|
+
if (callee.name !== "cloudflare") {
|
|
41
|
+
return this.traverse(n);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
const b = recast.types.builders;
|
|
45
|
+
n.node.arguments = [
|
|
46
|
+
b.objectExpression([
|
|
47
|
+
b.objectProperty(
|
|
48
|
+
b.identifier("platformProxy"),
|
|
49
|
+
b.objectExpression([
|
|
50
|
+
b.objectProperty(b.identifier("enabled"), b.booleanLiteral(true)),
|
|
51
|
+
]),
|
|
52
|
+
),
|
|
53
|
+
]),
|
|
54
|
+
];
|
|
55
|
+
|
|
56
|
+
return false;
|
|
57
|
+
},
|
|
58
|
+
});
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
const config: TemplateConfig = {
|
|
62
|
+
configVersion: 1,
|
|
63
|
+
id: "astro",
|
|
64
|
+
frameworkCli: "create-astro",
|
|
65
|
+
platform: "pages",
|
|
66
|
+
hidden: true,
|
|
67
|
+
displayName: "Astro",
|
|
68
|
+
path: "templates/astro/pages",
|
|
69
|
+
copyFiles: {
|
|
70
|
+
async selectVariant(ctx) {
|
|
71
|
+
// Note: this `selectVariant` function should not be needed
|
|
72
|
+
// this is just a quick workaround until
|
|
73
|
+
// https://github.com/cloudflare/workers-sdk/issues/7495
|
|
74
|
+
// is resolved
|
|
75
|
+
return usesTypescript(ctx) ? "ts" : "js";
|
|
76
|
+
},
|
|
77
|
+
variants: {
|
|
78
|
+
js: {
|
|
79
|
+
path: "./templates/js",
|
|
80
|
+
},
|
|
81
|
+
ts: {
|
|
82
|
+
path: "./templates/ts",
|
|
83
|
+
},
|
|
84
|
+
},
|
|
85
|
+
},
|
|
86
|
+
devScript: "dev",
|
|
87
|
+
deployScript: "deploy",
|
|
88
|
+
previewScript: "preview",
|
|
89
|
+
generate,
|
|
90
|
+
configure,
|
|
91
|
+
transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
|
|
92
|
+
scripts: {
|
|
93
|
+
deploy: `astro build && wrangler pages deploy`,
|
|
94
|
+
preview: `astro build && wrangler pages dev`,
|
|
95
|
+
...(usesTypescript(ctx) && { "cf-typegen": `wrangler types` }),
|
|
96
|
+
},
|
|
97
|
+
}),
|
|
98
|
+
};
|
|
99
|
+
export default config;
|
|
@@ -6,7 +6,7 @@ import { runCommand } from "helpers/command";
|
|
|
6
6
|
import { usesTypescript } from "helpers/files";
|
|
7
7
|
import { detectPackageManager } from "helpers/packageManagers";
|
|
8
8
|
import * as recast from "recast";
|
|
9
|
-
import type { TemplateConfig } from "
|
|
9
|
+
import type { TemplateConfig } from "../../../src/templates";
|
|
10
10
|
import type { C3Context, PackageJson } from "types";
|
|
11
11
|
|
|
12
12
|
const { npx } = detectPackageManager();
|
|
@@ -84,7 +84,7 @@ const config: TemplateConfig = {
|
|
|
84
84
|
devScript: "dev",
|
|
85
85
|
deployScript: "deploy",
|
|
86
86
|
previewScript: "preview",
|
|
87
|
-
path: "templates
|
|
87
|
+
path: "templates/astro/workers",
|
|
88
88
|
generate,
|
|
89
89
|
configure,
|
|
90
90
|
transformPackageJson: async (pkgJson: PackageJson, ctx: C3Context) => ({
|
|
@@ -3,7 +3,8 @@
|
|
|
3
3
|
"main": "./dist/_worker.js/index.js",
|
|
4
4
|
"compatibility_date": "<TBD>",
|
|
5
5
|
"compatibility_flags": [
|
|
6
|
-
"nodejs_compat"
|
|
6
|
+
"nodejs_compat",
|
|
7
|
+
"global_fetch_strictly_public"
|
|
7
8
|
],
|
|
8
9
|
"assets": {
|
|
9
10
|
"binding": "ASSETS",
|
|
@@ -11,5 +12,5 @@
|
|
|
11
12
|
},
|
|
12
13
|
"observability": {
|
|
13
14
|
"enabled": true
|
|
14
|
-
}
|
|
15
|
+
},
|
|
15
16
|
}
|
package/templates/common/c3.ts
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
import type { TemplateConfig } from "../../src/templates";
|
|
2
|
+
|
|
3
|
+
const config: TemplateConfig = {
|
|
2
4
|
configVersion: 1,
|
|
3
5
|
id: "common",
|
|
4
6
|
displayName: "Example router & proxy Worker",
|
|
@@ -17,3 +19,5 @@ export default {
|
|
|
17
19
|
},
|
|
18
20
|
},
|
|
19
21
|
};
|
|
22
|
+
|
|
23
|
+
export default config;
|
|
@@ -16,9 +16,6 @@
|
|
|
16
16
|
/* Enable importing .json files */
|
|
17
17
|
"resolveJsonModule": true,
|
|
18
18
|
|
|
19
|
-
/* Specify type package names to be included without being referenced in a source file. */
|
|
20
|
-
"types": ["@cloudflare/workers-types"],
|
|
21
|
-
|
|
22
19
|
/* Allow JavaScript files to be a part of your program. Use the `checkJS` option to get errors from these files. */
|
|
23
20
|
"allowJs": true,
|
|
24
21
|
/* Enable error reporting in type-checked JavaScript files. */
|
|
@@ -14,6 +14,7 @@ const config: TemplateConfig = {
|
|
|
14
14
|
id: "docusaurus",
|
|
15
15
|
frameworkCli: "create-docusaurus",
|
|
16
16
|
platform: "pages",
|
|
17
|
+
hidden: true,
|
|
17
18
|
displayName: "Docusaurus",
|
|
18
19
|
path: "templates/docusaurus/pages",
|
|
19
20
|
generate,
|
|
@@ -26,5 +27,6 @@ const config: TemplateConfig = {
|
|
|
26
27
|
devScript: "preview",
|
|
27
28
|
deployScript: "deploy",
|
|
28
29
|
previewScript: "preview",
|
|
30
|
+
workersTypes: "none",
|
|
29
31
|
};
|
|
30
32
|
export default config;
|
|
@@ -34,6 +34,7 @@ const config: TemplateConfig = {
|
|
|
34
34
|
id: "gatsby",
|
|
35
35
|
frameworkCli: "gatsby",
|
|
36
36
|
platform: "pages",
|
|
37
|
+
hidden: true,
|
|
37
38
|
displayName: "Gatsby",
|
|
38
39
|
path: "templates/gatsby/pages",
|
|
39
40
|
generate,
|
|
@@ -46,5 +47,6 @@ const config: TemplateConfig = {
|
|
|
46
47
|
devScript: "develop",
|
|
47
48
|
deployScript: "deploy",
|
|
48
49
|
previewScript: "preview",
|
|
50
|
+
workersTypes: "none",
|
|
49
51
|
};
|
|
50
52
|
export default config;
|
|
@@ -5,8 +5,9 @@ import type { TemplateConfig } from "../../src/templates";
|
|
|
5
5
|
export default {
|
|
6
6
|
configVersion: 1,
|
|
7
7
|
id: "hello-world",
|
|
8
|
-
displayName: "
|
|
9
|
-
description:
|
|
8
|
+
displayName: "Worker only",
|
|
9
|
+
description:
|
|
10
|
+
"For processing requests, transforming responses, or API endpoints",
|
|
10
11
|
platform: "workers",
|
|
11
12
|
async configure(ctx) {
|
|
12
13
|
if (ctx.args.lang === "python") {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
## Usage
|
|
2
2
|
|
|
3
|
-
You can run the
|
|
3
|
+
You can run the Worker defined by your new project by executing `wrangler dev` in this
|
|
4
4
|
directory. This will start up an HTTP server and will allow you to iterate on your
|
|
5
|
-
|
|
5
|
+
Worker without having to restart `wrangler`.
|
|
6
6
|
|
|
7
7
|
### Types and autocomplete
|
|
8
8
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"extends": "../tsconfig.json",
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"types": ["@cloudflare/
|
|
4
|
+
"types": ["@cloudflare/vitest-pool-workers"]
|
|
5
5
|
},
|
|
6
6
|
"include": ["./**/*.ts", "../worker-configuration.d.ts"],
|
|
7
7
|
"exclude": []
|
|
@@ -13,8 +13,6 @@
|
|
|
13
13
|
"module": "es2022",
|
|
14
14
|
/* Specify how TypeScript looks up a file from a given module specifier. */
|
|
15
15
|
"moduleResolution": "Bundler",
|
|
16
|
-
/* Specify type package names to be included without being referenced in a source file. */
|
|
17
|
-
"types": ["@cloudflare/workers-types"],
|
|
18
16
|
/* Enable importing .json files */
|
|
19
17
|
"resolveJsonModule": true,
|
|
20
18
|
|
|
@@ -3,9 +3,10 @@ import type { TemplateConfig } from "../../src/templates";
|
|
|
3
3
|
const config: TemplateConfig = {
|
|
4
4
|
configVersion: 1,
|
|
5
5
|
id: "hello-world-assets-only",
|
|
6
|
-
path: "templates
|
|
7
|
-
displayName: "
|
|
8
|
-
description:
|
|
6
|
+
path: "templates/hello-world-assets-only",
|
|
7
|
+
displayName: "Static site",
|
|
8
|
+
description:
|
|
9
|
+
"For static sites or when using your own backend. Uses Workers Static Assets.",
|
|
9
10
|
platform: "workers",
|
|
10
11
|
copyFiles: {
|
|
11
12
|
path: "./templates",
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
|
|
1
|
+
import type { TemplateConfig } from "../../src/templates";
|
|
2
|
+
|
|
3
|
+
const config: TemplateConfig = {
|
|
2
4
|
configVersion: 1,
|
|
3
5
|
id: "hello-world-durable-object",
|
|
4
|
-
displayName: "
|
|
6
|
+
displayName: "Worker + Durable Objects",
|
|
5
7
|
description:
|
|
6
|
-
"
|
|
8
|
+
"For multiplayer apps using WebSockets, or when you need synchronization",
|
|
7
9
|
platform: "workers",
|
|
8
10
|
copyFiles: {
|
|
9
11
|
variants: {
|
|
@@ -13,6 +15,10 @@ export default {
|
|
|
13
15
|
ts: {
|
|
14
16
|
path: "./ts",
|
|
15
17
|
},
|
|
18
|
+
python: {
|
|
19
|
+
path: "./py",
|
|
20
|
+
},
|
|
16
21
|
},
|
|
17
22
|
},
|
|
18
23
|
};
|
|
24
|
+
export default config;
|