create-cloudflare 0.0.0-c220a5fe → 0.0.0-c2f1b689

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 (2) hide show
  1. package/dist/cli.js +45499 -43943
  2. package/package.json +12 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-cloudflare",
3
- "version": "0.0.0-c220a5fe",
3
+ "version": "0.0.0-c2f1b689",
4
4
  "description": "A CLI for creating and deploying new applications to Cloudflare.",
5
5
  "keywords": [
6
6
  "cloudflare",
@@ -26,14 +26,17 @@
26
26
  "templates"
27
27
  ],
28
28
  "scripts": {
29
- "build": "node scripts/build.js",
29
+ "build": "node -r esbuild-register scripts/build.ts",
30
30
  "check:lint": "eslint .",
31
31
  "check:type": "tsc",
32
32
  "lint": "eslint",
33
33
  "prepublishOnly": "npm run build",
34
- "test:e2e": "npm run build && vitest run --config ./vitest-e2e.config.ts",
34
+ "test:e2e:cleanup": "node -r esbuild-register scripts/e2eCleanup.ts",
35
+ "test:e2e:npm": "npm run build && TEST_PM=npm vitest run --config ./vitest-e2e.config.ts",
36
+ "test:e2e:pnpm": "npm run build && TEST_PM=pnpm vitest run --config ./vitest-e2e.config.ts",
35
37
  "test:unit": "vitest run --config ./vitest.config.ts",
36
- "watch": "node scripts/build.js --watch"
38
+ "test:unit:watch": "vitest --config ./vitest.config.ts",
39
+ "watch": "node -r esbuild-register scripts/build.ts --watch"
37
40
  },
38
41
  "devDependencies": {
39
42
  "@babel/parser": "^7.21.3",
@@ -44,6 +47,7 @@
44
47
  "@cloudflare/workers-types": "^4.20230419.0",
45
48
  "@types/command-exists": "^1.2.0",
46
49
  "@types/cross-spawn": "^6.0.2",
50
+ "@types/dns2": "^2.0.3",
47
51
  "@types/esprima": "^4.0.3",
48
52
  "@types/node": "^18.15.3",
49
53
  "@types/which-pm-runs": "^1.0.0",
@@ -53,11 +57,13 @@
53
57
  "chalk": "^5.2.0",
54
58
  "command-exists": "^1.2.9",
55
59
  "cross-spawn": "^7.0.3",
60
+ "dns2": "^2.1.0",
56
61
  "esbuild": "^0.17.12",
57
62
  "execa": "^7.1.1",
58
63
  "haikunator": "^2.1.2",
59
64
  "log-update": "^5.0.1",
60
65
  "open": "^8.4.0",
66
+ "pnpm": "^8.6.11",
61
67
  "recast": "^0.22.0",
62
68
  "semver": "^7.5.1",
63
69
  "typescript": "^5.0.2",
@@ -66,7 +72,8 @@
66
72
  "vitest": "^0.30.0",
67
73
  "which-pm-runs": "^1.1.0",
68
74
  "wrangler": "*",
69
- "yargs": "^17.7.1"
75
+ "yargs": "^17.7.1",
76
+ "yarn": "^1.22.19"
70
77
  },
71
78
  "engines": {
72
79
  "node": ">=16.13.0"