create-cloudflare 2.38.1 → 2.38.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 CHANGED
@@ -73317,7 +73317,7 @@ var Yargs = YargsFactory(esm_default);
73317
73317
  var yargs_default = Yargs;
73318
73318
 
73319
73319
  // package.json
73320
- var version = "2.38.1";
73320
+ var version = "2.38.2";
73321
73321
 
73322
73322
  // src/metrics.ts
73323
73323
  var import_node_async_hooks = require("node:async_hooks");
@@ -75393,7 +75393,7 @@ var package_default = {
75393
75393
  "create-vite": "6.1.1",
75394
75394
  "create-remix": "2.15.3",
75395
75395
  "create-solid": "0.5.14",
75396
- "create-vue": "3.14.0",
75396
+ "create-vue": "3.14.2",
75397
75397
  gatsby: "5.14.1",
75398
75398
  sv: "0.6.16",
75399
75399
  nuxi: "3.21.1"
@@ -75829,20 +75829,11 @@ var c3_default8 = config7;
75829
75829
 
75830
75830
  // templates-experimental/next/c3.ts
75831
75831
  var generate6 = async (ctx) => {
75832
- await runFrameworkGenerator(ctx, [
75833
- ctx.project.name,
75834
- "--ts",
75835
- "--tailwind",
75836
- "--eslint",
75837
- "--app",
75838
- "--import-alias",
75839
- "@/*",
75840
- "--src-dir"
75841
- ]);
75832
+ await runFrameworkGenerator(ctx, [ctx.project.name]);
75842
75833
  };
75843
75834
  var configure3 = async () => {
75844
75835
  const packages = [
75845
- "@opennextjs/cloudflare@0.4.x",
75836
+ "@opennextjs/cloudflare@0.5.x",
75846
75837
  "@cloudflare/workers-types"
75847
75838
  ];
75848
75839
  await installPackages(packages, {
@@ -77759,7 +77750,7 @@ var config26 = {
77759
77750
  var c3_default36 = config26;
77760
77751
 
77761
77752
  // ../wrangler/package.json
77762
- var version2 = "3.109.2";
77753
+ var version2 = "3.110.0";
77763
77754
 
77764
77755
  // src/git.ts
77765
77756
  var offerGit = async (ctx) => {
@@ -78872,7 +78863,7 @@ var poll = async (url) => {
78872
78863
  const start = Date.now();
78873
78864
  const domain = new URL(url).host;
78874
78865
  const s = spinner();
78875
- s.start("Waiting for DNS to propagate");
78866
+ s.start("Waiting for DNS to propagate. This might take a few minutes.");
78876
78867
  await sleep(10 * 1e3);
78877
78868
  await pollDns(domain, start, s);
78878
78869
  if (await pollHttp(url, start, s)) {
@@ -78887,7 +78878,9 @@ var poll = async (url) => {
78887
78878
  };
78888
78879
  var pollDns = async (domain, start, s) => {
78889
78880
  while (Date.now() - start < TIMEOUT) {
78890
- s.update(`Waiting for DNS to propagate (${secondsSince(start)}s)`);
78881
+ s.update(
78882
+ `Waiting for DNS to propagate. This might take a few minutes. (${secondsSince(start)}s)`
78883
+ );
78891
78884
  if (await isDomainResolvable(domain)) {
78892
78885
  s.stop(`${brandColor("DNS propagation")} ${dim("complete")}.`);
78893
78886
  return;
@@ -79951,6 +79944,7 @@ main(process.argv).catch((e) => {
79951
79944
  }
79952
79945
  }).finally(async () => {
79953
79946
  await reporter.waitForAllEventsSettled();
79947
+ process.exit();
79954
79948
  });
79955
79949
  // Annotate the CommonJS export names for ESM import in node:
79956
79950
  0 && (module.exports = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "2.38.1",
3
+ "version": "2.38.2",
4
4
  "description": "A CLI for creating and deploying new applications to Cloudflare.",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -70,9 +70,9 @@
70
70
  "xdg-app-paths": "^8.3.0",
71
71
  "yargs": "^17.7.2",
72
72
  "@cloudflare/cli": "1.1.1",
73
+ "wrangler": "3.110.0",
73
74
  "@cloudflare/eslint-config-worker": "1.1.0",
74
75
  "@cloudflare/mock-npm-registry": "0.0.0",
75
- "wrangler": "3.109.2",
76
76
  "@cloudflare/workers-tsconfig": "0.0.0"
77
77
  },
78
78
  "engines": {
@@ -7,21 +7,12 @@ import type { TemplateConfig } from "../../src/templates";
7
7
  import type { C3Context } from "types";
8
8
 
9
9
  const generate = async (ctx: C3Context) => {
10
- await runFrameworkGenerator(ctx, [
11
- ctx.project.name,
12
- "--ts",
13
- "--tailwind",
14
- "--eslint",
15
- "--app",
16
- "--import-alias",
17
- "@/*",
18
- "--src-dir",
19
- ]);
10
+ await runFrameworkGenerator(ctx, [ctx.project.name]);
20
11
  };
21
12
 
22
13
  const configure = async () => {
23
14
  const packages = [
24
- "@opennextjs/cloudflare@0.4.x",
15
+ "@opennextjs/cloudflare@0.5.x",
25
16
  "@cloudflare/workers-types",
26
17
  ];
27
18
  await installPackages(packages, {