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.
- package/dist/cli.js +47075 -46847
- package/package.json +7 -6
- package/templates/analog/c3.ts +1 -0
- package/templates/angular/c3.ts +1 -0
- package/templates/astro/c3.ts +1 -0
- package/templates/docusaurus/c3.ts +1 -0
- package/templates/gatsby/c3.ts +1 -0
- package/templates/hello-world/js/package.json +2 -2
- package/templates/hello-world/ts/package.json +2 -2
- package/templates/hono/c3.ts +1 -0
- package/templates/next/c3.ts +1 -0
- package/templates/nuxt/c3.ts +1 -0
- package/templates/qwik/c3.ts +1 -0
- package/templates/react/c3.ts +2 -0
- package/templates/remix/c3.ts +1 -0
- package/templates/solid/c3.ts +1 -0
- package/templates/svelte/c3.ts +1 -0
- package/templates/vue/c3.ts +1 -0
- package/templates-experimental/angular/c3.ts +102 -0
- package/templates-experimental/angular/templates/server.ts +34 -0
- package/templates-experimental/angular/templates/src/.assetsignore +4 -0
- package/templates-experimental/angular/templates/tools/alter-polyfills.mjs +27 -0
- package/templates-experimental/angular/templates/tools/copy-files.mjs +9 -0
- package/templates-experimental/angular/templates/tools/paths.mjs +9 -0
- package/templates-experimental/angular/templates/wrangler.toml +5 -0
- package/templates-experimental/astro/c3.ts +114 -0
- package/templates-experimental/astro/snippets/runtimeDeclaration.ts +5 -0
- package/templates-experimental/astro/templates/public/.assetsignore +4 -0
- package/templates-experimental/astro/templates/wrangler.toml +6 -0
- package/templates-experimental/docusaurus/c3.ts +32 -0
- package/templates-experimental/docusaurus/templates/wrangler.toml +4 -0
- package/templates-experimental/gatsby/c3.ts +53 -0
- package/templates-experimental/gatsby/templates/wrangler.toml +4 -0
- package/templates-experimental/hello-world-with-assets/c3.ts +22 -0
- package/templates-experimental/hello-world-with-assets/js/.editorconfig +12 -0
- package/templates-experimental/hello-world-with-assets/js/.prettierrc +6 -0
- package/templates-experimental/hello-world-with-assets/js/__dot__gitignore +172 -0
- package/templates-experimental/hello-world-with-assets/js/package.json +16 -0
- package/templates-experimental/hello-world-with-assets/js/public/index.html +19 -0
- package/templates-experimental/hello-world-with-assets/js/src/index.js +15 -0
- package/templates-experimental/hello-world-with-assets/js/test/index.spec.js +20 -0
- package/templates-experimental/hello-world-with-assets/js/vitest.config.js +11 -0
- package/templates-experimental/hello-world-with-assets/js/wrangler.toml +6 -0
- package/templates-experimental/hello-world-with-assets/py/__dot__gitignore +68 -0
- package/templates-experimental/hello-world-with-assets/py/package.json +13 -0
- package/templates-experimental/hello-world-with-assets/py/public/index.html +19 -0
- package/templates-experimental/hello-world-with-assets/py/src/entry.py +4 -0
- package/templates-experimental/hello-world-with-assets/py/wrangler.toml +6 -0
- package/templates-experimental/hello-world-with-assets/ts/.editorconfig +12 -0
- package/templates-experimental/hello-world-with-assets/ts/.prettierrc +6 -0
- package/templates-experimental/hello-world-with-assets/ts/__dot__gitignore +172 -0
- package/templates-experimental/hello-world-with-assets/ts/package.json +18 -0
- package/templates-experimental/hello-world-with-assets/ts/public/index.html +19 -0
- package/templates-experimental/hello-world-with-assets/ts/src/index.ts +18 -0
- package/templates-experimental/hello-world-with-assets/ts/test/index.spec.ts +25 -0
- package/templates-experimental/hello-world-with-assets/ts/test/tsconfig.json +8 -0
- package/templates-experimental/hello-world-with-assets/ts/tsconfig.json +103 -0
- package/templates-experimental/hello-world-with-assets/ts/vitest.config.mts +11 -0
- package/templates-experimental/hello-world-with-assets/ts/worker-configuration.d.ts +4 -0
- package/templates-experimental/hello-world-with-assets/ts/wrangler.toml +6 -0
- package/templates-experimental/nuxt/c3.ts +135 -0
- package/templates-experimental/nuxt/templates/cloudflare-preset/nitro.config.ts +27 -0
- package/templates-experimental/nuxt/templates/env.d.ts +14 -0
- package/templates-experimental/nuxt/templates/worker-configuration.d.ts +4 -0
- package/templates-experimental/nuxt/templates/wrangler.toml +5 -0
- package/templates-experimental/qwik/c3.ts +153 -0
- package/templates-experimental/qwik/snippets/getPlatformProxy.ts +6 -0
- package/templates-experimental/qwik/templates/public/.assetsignore +4 -0
- package/templates-experimental/qwik/templates/worker-configuration.d.ts +4 -0
- package/templates-experimental/qwik/templates/wrangler.toml +6 -0
- package/templates-experimental/remix/c3.ts +77 -0
- package/templates-experimental/remix/templates/public/.assetsignore +4 -0
- package/templates-experimental/remix/templates/worker-configuration.d.ts +4 -0
- package/templates-experimental/remix/templates/wrangler.toml +5 -0
- package/templates-experimental/solid/c3.ts +137 -0
- package/templates-experimental/solid/templates/wrangler.toml +6 -0
- package/templates-experimental/svelte/c3.ts +132 -0
- package/templates-experimental/svelte/js/static/.assetsignore +4 -0
- package/templates-experimental/svelte/js/wrangler.toml +5 -0
- package/templates-experimental/svelte/ts/static/.assetsignore +4 -0
- 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.
|
|
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.
|
|
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"
|
package/templates/analog/c3.ts
CHANGED
package/templates/angular/c3.ts
CHANGED
package/templates/astro/c3.ts
CHANGED
package/templates/gatsby/c3.ts
CHANGED
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"cf-typegen": "wrangler types"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
|
-
"@cloudflare/vitest-pool-workers": "^0.
|
|
13
|
+
"@cloudflare/vitest-pool-workers": "^0.5.2",
|
|
14
14
|
"typescript": "^5.5.2",
|
|
15
|
-
"vitest": "
|
|
15
|
+
"vitest": "2.0.5",
|
|
16
16
|
"wrangler": "^3.60.3"
|
|
17
17
|
}
|
|
18
18
|
}
|
package/templates/hono/c3.ts
CHANGED
package/templates/next/c3.ts
CHANGED
package/templates/nuxt/c3.ts
CHANGED
package/templates/qwik/c3.ts
CHANGED
package/templates/react/c3.ts
CHANGED
package/templates/remix/c3.ts
CHANGED
package/templates/solid/c3.ts
CHANGED
package/templates/svelte/c3.ts
CHANGED
package/templates/vue/c3.ts
CHANGED
|
@@ -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,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,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,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,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,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
|
+
};
|