create-cloudflare 2.27.2 → 2.27.3
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
CHANGED
|
@@ -73572,7 +73572,7 @@ var Yargs = YargsFactory(esm_default);
|
|
|
73572
73572
|
var yargs_default = Yargs;
|
|
73573
73573
|
|
|
73574
73574
|
// package.json
|
|
73575
|
-
var version = "2.27.
|
|
73575
|
+
var version = "2.27.3";
|
|
73576
73576
|
|
|
73577
73577
|
// src/helpers/packageManagers.ts
|
|
73578
73578
|
var import_fs5 = require("fs");
|
|
@@ -74335,7 +74335,7 @@ var usesEslint = (ctx) => {
|
|
|
74335
74335
|
var import_node_path = require("node:path");
|
|
74336
74336
|
|
|
74337
74337
|
// ../wrangler/package.json
|
|
74338
|
-
var version2 = "3.78.
|
|
74338
|
+
var version2 = "3.78.6";
|
|
74339
74339
|
|
|
74340
74340
|
// src/git.ts
|
|
74341
74341
|
var offerGit = async (ctx) => {
|
|
@@ -74527,13 +74527,13 @@ var package_default = {
|
|
|
74527
74527
|
dependencies: {
|
|
74528
74528
|
"create-astro": "4.8.0",
|
|
74529
74529
|
"create-analog": "1.3.1",
|
|
74530
|
-
"@angular/create": "18.
|
|
74530
|
+
"@angular/create": "18.2.0",
|
|
74531
74531
|
"create-docusaurus": "3.5.2",
|
|
74532
74532
|
"create-hono": "0.12.0",
|
|
74533
74533
|
"create-next-app": "14.2.5",
|
|
74534
|
-
"create-qwik": "1.
|
|
74534
|
+
"create-qwik": "1.9.0",
|
|
74535
74535
|
"create-vite": "5.2.3",
|
|
74536
|
-
"create-remix": "2.
|
|
74536
|
+
"create-remix": "2.12.0",
|
|
74537
74537
|
"create-solid": "0.5.12",
|
|
74538
74538
|
"create-svelte": "6.3.8",
|
|
74539
74539
|
"create-vue": "3.10.4",
|
|
@@ -75063,7 +75063,7 @@ var c3_default6 = config5;
|
|
|
75063
75063
|
var recast4 = __toESM(require_main3());
|
|
75064
75064
|
var { npm: npm5, npx: npx2 } = detectPackageManager();
|
|
75065
75065
|
var generate6 = async (ctx) => {
|
|
75066
|
-
await runFrameworkGenerator(ctx, ["
|
|
75066
|
+
await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
|
|
75067
75067
|
};
|
|
75068
75068
|
var configure4 = async (ctx) => {
|
|
75069
75069
|
const cmd = [npx2, "qwik", "add", "cloudflare-pages"];
|
|
@@ -76351,7 +76351,7 @@ var c3_default24 = {
|
|
|
76351
76351
|
var recast10 = __toESM(require_main3());
|
|
76352
76352
|
var { npm: npm15, npx: npx5 } = detectPackageManager();
|
|
76353
76353
|
var generate18 = async (ctx) => {
|
|
76354
|
-
await runFrameworkGenerator(ctx, ["
|
|
76354
|
+
await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
|
|
76355
76355
|
};
|
|
76356
76356
|
var configure14 = async (ctx) => {
|
|
76357
76357
|
const cmd = [npx5, "qwik", "add", "cloudflare-pages"];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-cloudflare",
|
|
3
|
-
"version": "2.27.
|
|
3
|
+
"version": "2.27.3",
|
|
4
4
|
"description": "A CLI for creating and deploying new applications to Cloudflare.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -65,10 +65,10 @@
|
|
|
65
65
|
"which-pm-runs": "^1.1.0",
|
|
66
66
|
"wrap-ansi": "^9.0.0",
|
|
67
67
|
"yargs": "^17.7.2",
|
|
68
|
-
"@cloudflare/
|
|
68
|
+
"@cloudflare/cli": "1.1.1",
|
|
69
69
|
"@cloudflare/workers-tsconfig": "0.0.0",
|
|
70
|
-
"wrangler": "3.78.
|
|
71
|
-
"@cloudflare/
|
|
70
|
+
"wrangler": "3.78.6",
|
|
71
|
+
"@cloudflare/eslint-config-worker": "1.1.0"
|
|
72
72
|
},
|
|
73
73
|
"engines": {
|
|
74
74
|
"node": ">=18.14.1"
|
package/templates/qwik/c3.ts
CHANGED
|
@@ -13,7 +13,7 @@ import type { C3Context } from "types";
|
|
|
13
13
|
const { npm, npx } = detectPackageManager();
|
|
14
14
|
|
|
15
15
|
const generate = async (ctx: C3Context) => {
|
|
16
|
-
await runFrameworkGenerator(ctx, ["
|
|
16
|
+
await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
const configure = async (ctx: C3Context) => {
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
name = "<TBD>"
|
|
3
3
|
compatibility_date = "<TBD>"
|
|
4
4
|
pages_build_output_dir = "./dist"
|
|
5
|
+
compatibility_flags = ["nodejs_compat"]
|
|
5
6
|
|
|
6
7
|
# Automatically place your workloads in an optimal location to minimize latency.
|
|
7
8
|
# If you are running back-end logic in a Pages Function, running it closer to your back-end infrastructure
|
|
@@ -13,7 +13,7 @@ import type { C3Context } from "types";
|
|
|
13
13
|
const { npm, npx } = detectPackageManager();
|
|
14
14
|
|
|
15
15
|
const generate = async (ctx: C3Context) => {
|
|
16
|
-
await runFrameworkGenerator(ctx, ["
|
|
16
|
+
await runFrameworkGenerator(ctx, ["playground", ctx.project.name]);
|
|
17
17
|
};
|
|
18
18
|
|
|
19
19
|
const configure = async (ctx: C3Context) => {
|