wrangler 2.0.12 → 2.0.16

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 (149) hide show
  1. package/README.md +7 -1
  2. package/bin/wrangler.js +111 -57
  3. package/miniflare-dist/index.mjs +9 -2
  4. package/package.json +156 -154
  5. package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
  6. package/src/__tests__/config-cache.test.ts +30 -24
  7. package/src/__tests__/configuration.test.ts +3935 -3476
  8. package/src/__tests__/dev.test.tsx +1128 -979
  9. package/src/__tests__/guess-worker-format.test.ts +68 -68
  10. package/src/__tests__/helpers/cmd-shim.d.ts +6 -6
  11. package/src/__tests__/helpers/faye-websocket.d.ts +4 -4
  12. package/src/__tests__/helpers/mock-account-id.ts +24 -24
  13. package/src/__tests__/helpers/mock-bin.ts +20 -20
  14. package/src/__tests__/helpers/mock-cfetch.ts +92 -92
  15. package/src/__tests__/helpers/mock-console.ts +49 -39
  16. package/src/__tests__/helpers/mock-dialogs.ts +94 -71
  17. package/src/__tests__/helpers/mock-http-server.ts +30 -30
  18. package/src/__tests__/helpers/mock-istty.ts +65 -18
  19. package/src/__tests__/helpers/mock-kv.ts +26 -26
  20. package/src/__tests__/helpers/mock-oauth-flow.ts +223 -228
  21. package/src/__tests__/helpers/mock-process.ts +39 -0
  22. package/src/__tests__/helpers/mock-stdin.ts +82 -77
  23. package/src/__tests__/helpers/mock-web-socket.ts +21 -21
  24. package/src/__tests__/helpers/run-in-tmp.ts +27 -27
  25. package/src/__tests__/helpers/run-wrangler.ts +8 -8
  26. package/src/__tests__/helpers/write-worker-source.ts +16 -16
  27. package/src/__tests__/helpers/write-wrangler-toml.ts +9 -9
  28. package/src/__tests__/https-options.test.ts +104 -104
  29. package/src/__tests__/index.test.ts +239 -234
  30. package/src/__tests__/init.test.ts +1605 -1250
  31. package/src/__tests__/jest.setup.ts +63 -33
  32. package/src/__tests__/kv.test.ts +1128 -1011
  33. package/src/__tests__/logger.test.ts +100 -74
  34. package/src/__tests__/package-manager.test.ts +303 -303
  35. package/src/__tests__/pages.test.ts +1152 -652
  36. package/src/__tests__/parse.test.ts +252 -252
  37. package/src/__tests__/publish.test.ts +6371 -5622
  38. package/src/__tests__/pubsub.test.ts +367 -0
  39. package/src/__tests__/r2.test.ts +133 -133
  40. package/src/__tests__/route.test.ts +18 -18
  41. package/src/__tests__/secret.test.ts +382 -377
  42. package/src/__tests__/tail.test.ts +530 -530
  43. package/src/__tests__/user.test.ts +123 -111
  44. package/src/__tests__/whoami.test.tsx +198 -117
  45. package/src/__tests__/worker-namespace.test.ts +327 -0
  46. package/src/abort.d.ts +1 -1
  47. package/src/api/dev.ts +49 -0
  48. package/src/api/index.ts +1 -0
  49. package/src/bundle-reporter.tsx +29 -0
  50. package/src/bundle.ts +157 -149
  51. package/src/cfetch/index.ts +80 -80
  52. package/src/cfetch/internal.ts +90 -83
  53. package/src/cli.ts +21 -7
  54. package/src/config/config.ts +204 -195
  55. package/src/config/diagnostics.ts +61 -61
  56. package/src/config/environment.ts +390 -357
  57. package/src/config/index.ts +206 -193
  58. package/src/config/validation-helpers.ts +366 -366
  59. package/src/config/validation.ts +1573 -1376
  60. package/src/config-cache.ts +79 -41
  61. package/src/create-worker-preview.ts +206 -136
  62. package/src/create-worker-upload-form.ts +247 -238
  63. package/src/dev/dev-vars.ts +13 -13
  64. package/src/dev/dev.tsx +329 -307
  65. package/src/dev/local.tsx +304 -275
  66. package/src/dev/remote.tsx +366 -224
  67. package/src/dev/use-esbuild.ts +126 -91
  68. package/src/dev.tsx +538 -0
  69. package/src/dialogs.tsx +97 -97
  70. package/src/durable.ts +87 -87
  71. package/src/entry.ts +234 -228
  72. package/src/environment-variables.ts +23 -23
  73. package/src/errors.ts +6 -6
  74. package/src/generate.ts +33 -0
  75. package/src/git-client.ts +42 -0
  76. package/src/https-options.ts +79 -79
  77. package/src/index.tsx +1775 -2763
  78. package/src/init.ts +549 -0
  79. package/src/inspect.ts +593 -593
  80. package/src/intl-polyfill.d.ts +123 -123
  81. package/src/is-interactive.ts +12 -0
  82. package/src/kv.ts +277 -277
  83. package/src/logger.ts +46 -39
  84. package/src/miniflare-cli/enum-keys.ts +8 -8
  85. package/src/miniflare-cli/index.ts +42 -31
  86. package/src/miniflare-cli/request-context.ts +18 -18
  87. package/src/module-collection.ts +212 -212
  88. package/src/open-in-browser.ts +4 -6
  89. package/src/package-manager.ts +123 -123
  90. package/src/pages/build.tsx +202 -0
  91. package/src/pages/constants.ts +7 -0
  92. package/src/pages/deployments.tsx +101 -0
  93. package/src/pages/dev.tsx +964 -0
  94. package/src/pages/functions/buildPlugin.ts +105 -0
  95. package/src/pages/functions/buildWorker.ts +151 -0
  96. package/{pages → src/pages}/functions/filepath-routing.test.ts +113 -113
  97. package/src/pages/functions/filepath-routing.ts +189 -0
  98. package/src/pages/functions/identifiers.ts +78 -0
  99. package/src/pages/functions/routes.ts +151 -0
  100. package/src/pages/index.tsx +84 -0
  101. package/src/pages/projects.tsx +157 -0
  102. package/src/pages/publish.tsx +335 -0
  103. package/src/pages/types.ts +40 -0
  104. package/src/pages/upload.tsx +384 -0
  105. package/src/pages/utils.ts +12 -0
  106. package/src/parse.ts +202 -138
  107. package/src/paths.ts +6 -6
  108. package/src/preview.ts +31 -0
  109. package/src/proxy.ts +400 -402
  110. package/src/publish.ts +667 -621
  111. package/src/pubsub/index.ts +286 -0
  112. package/src/pubsub/pubsub-commands.tsx +577 -0
  113. package/src/r2.ts +19 -19
  114. package/src/selfsigned.d.ts +23 -23
  115. package/src/sites.tsx +271 -225
  116. package/src/tail/filters.ts +108 -108
  117. package/src/tail/index.ts +217 -217
  118. package/src/tail/printing.ts +45 -45
  119. package/src/update-check.ts +11 -11
  120. package/src/user/choose-account.tsx +60 -0
  121. package/src/user/env-vars.ts +46 -0
  122. package/src/user/generate-auth-url.ts +33 -0
  123. package/src/user/generate-random-state.ts +16 -0
  124. package/src/user/index.ts +3 -0
  125. package/src/user/user.tsx +1161 -0
  126. package/src/whoami.tsx +61 -42
  127. package/src/worker-namespace.ts +190 -0
  128. package/src/worker.ts +110 -100
  129. package/src/zones.ts +39 -36
  130. package/templates/checked-fetch.js +17 -0
  131. package/templates/new-worker-scheduled.js +3 -3
  132. package/templates/new-worker-scheduled.ts +15 -15
  133. package/templates/new-worker.js +3 -3
  134. package/templates/new-worker.ts +15 -15
  135. package/templates/no-op-worker.js +10 -0
  136. package/templates/pages-template-plugin.ts +155 -0
  137. package/templates/pages-template-worker.ts +161 -0
  138. package/templates/static-asset-facade.js +31 -31
  139. package/templates/tsconfig.json +95 -95
  140. package/wrangler-dist/cli.js +55383 -54138
  141. package/pages/functions/buildPlugin.ts +0 -105
  142. package/pages/functions/buildWorker.ts +0 -151
  143. package/pages/functions/filepath-routing.ts +0 -189
  144. package/pages/functions/identifiers.ts +0 -78
  145. package/pages/functions/routes.ts +0 -156
  146. package/pages/functions/template-plugin.ts +0 -147
  147. package/pages/functions/template-worker.ts +0 -143
  148. package/src/pages.tsx +0 -2093
  149. package/src/user.tsx +0 -1214
@@ -4,171 +4,171 @@ import { execa, execaCommandSync } from "execa";
4
4
  import { logger } from "./logger";
5
5
 
6
6
  export interface PackageManager {
7
- cwd: string;
8
- type: "npm" | "yarn" | "pnpm";
9
- addDevDeps(...packages: string[]): Promise<void>;
10
- install(): Promise<void>;
7
+ cwd: string;
8
+ type: "npm" | "yarn" | "pnpm";
9
+ addDevDeps(...packages: string[]): Promise<void>;
10
+ install(): Promise<void>;
11
11
  }
12
12
 
13
13
  export async function getPackageManager(cwd: string): Promise<PackageManager> {
14
- const [hasYarn, hasNpm, hasPnpm] = await Promise.all([
15
- supportsYarn(),
16
- supportsNpm(),
17
- supportsPnpm(),
18
- ]);
19
- const hasYarnLock = existsSync(join(cwd, "yarn.lock"));
20
- const hasNpmLock = existsSync(join(cwd, "package-lock.json"));
21
- const hasPnpmLock = existsSync(join(cwd, "pnpm-lock.yaml"));
14
+ const [hasYarn, hasNpm, hasPnpm] = await Promise.all([
15
+ supportsYarn(),
16
+ supportsNpm(),
17
+ supportsPnpm(),
18
+ ]);
19
+ const hasYarnLock = existsSync(join(cwd, "yarn.lock"));
20
+ const hasNpmLock = existsSync(join(cwd, "package-lock.json"));
21
+ const hasPnpmLock = existsSync(join(cwd, "pnpm-lock.yaml"));
22
22
 
23
- if (hasNpmLock) {
24
- if (hasNpm) {
25
- logger.log(
26
- "Using npm as package manager, as there is already a package-lock.json file."
27
- );
28
- return { ...NpmPackageManager, cwd };
29
- } else if (hasYarn) {
30
- logger.log("Using yarn as package manager.");
31
- logger.warn(
32
- "There is already a package-lock.json file but could not find npm on the PATH."
33
- );
34
- return { ...YarnPackageManager, cwd };
35
- }
36
- } else if (hasPnpmLock) {
37
- if (hasPnpm) {
38
- logger.log(
39
- "Using pnpm as package manager, as there is already a pnpm-lock.yaml file."
40
- );
41
- return { ...PnpmPackageManager, cwd };
42
- } else {
43
- logger.warn(
44
- "There is already a pnpm-lock.yaml file but could not find pnpm on the PATH."
45
- );
46
- // will simply fallback to the first found of [npm, yaml, pnpm] in the next if round.
47
- }
48
- } else if (hasYarnLock) {
49
- if (hasYarn) {
50
- logger.log(
51
- "Using yarn as package manager, as there is already a yarn.lock file."
52
- );
53
- return { ...YarnPackageManager, cwd };
54
- } else if (hasNpm) {
55
- logger.log("Using npm as package manager.");
56
- logger.warn(
57
- "There is already a yarn.lock file but could not find yarn on the PATH."
58
- );
59
- return { ...NpmPackageManager, cwd };
60
- }
61
- }
23
+ if (hasNpmLock) {
24
+ if (hasNpm) {
25
+ logger.log(
26
+ "Using npm as package manager, as there is already a package-lock.json file."
27
+ );
28
+ return { ...NpmPackageManager, cwd };
29
+ } else if (hasYarn) {
30
+ logger.log("Using yarn as package manager.");
31
+ logger.warn(
32
+ "There is already a package-lock.json file but could not find npm on the PATH."
33
+ );
34
+ return { ...YarnPackageManager, cwd };
35
+ }
36
+ } else if (hasPnpmLock) {
37
+ if (hasPnpm) {
38
+ logger.log(
39
+ "Using pnpm as package manager, as there is already a pnpm-lock.yaml file."
40
+ );
41
+ return { ...PnpmPackageManager, cwd };
42
+ } else {
43
+ logger.warn(
44
+ "There is already a pnpm-lock.yaml file but could not find pnpm on the PATH."
45
+ );
46
+ // will simply fallback to the first found of [npm, yaml, pnpm] in the next if round.
47
+ }
48
+ } else if (hasYarnLock) {
49
+ if (hasYarn) {
50
+ logger.log(
51
+ "Using yarn as package manager, as there is already a yarn.lock file."
52
+ );
53
+ return { ...YarnPackageManager, cwd };
54
+ } else if (hasNpm) {
55
+ logger.log("Using npm as package manager.");
56
+ logger.warn(
57
+ "There is already a yarn.lock file but could not find yarn on the PATH."
58
+ );
59
+ return { ...NpmPackageManager, cwd };
60
+ }
61
+ }
62
62
 
63
- if (hasNpm) {
64
- logger.log("Using npm as package manager.");
65
- return { ...NpmPackageManager, cwd };
66
- } else if (hasYarn) {
67
- logger.log("Using yarn as package manager.");
68
- return { ...YarnPackageManager, cwd };
69
- } else if (hasPnpm) {
70
- logger.log("Using pnpm as package manager.");
71
- return { ...PnpmPackageManager, cwd };
72
- } else {
73
- throw new Error(
74
- "Unable to find a package manager. Supported managers are: npm, yarn, and pnpm."
75
- );
76
- }
63
+ if (hasNpm) {
64
+ logger.log("Using npm as package manager.");
65
+ return { ...NpmPackageManager, cwd };
66
+ } else if (hasYarn) {
67
+ logger.log("Using yarn as package manager.");
68
+ return { ...YarnPackageManager, cwd };
69
+ } else if (hasPnpm) {
70
+ logger.log("Using pnpm as package manager.");
71
+ return { ...PnpmPackageManager, cwd };
72
+ } else {
73
+ throw new Error(
74
+ "Unable to find a package manager. Supported managers are: npm, yarn, and pnpm."
75
+ );
76
+ }
77
77
  }
78
78
 
79
79
  /**
80
80
  * Get the name of the given `packageManager`.
81
81
  */
82
82
  export function getPackageManagerName(packageManager: PackageManager): string {
83
- return packageManager.type ?? "unknown";
83
+ return packageManager.type ?? "unknown";
84
84
  }
85
85
 
86
86
  /**
87
87
  * Manage packages using npm
88
88
  */
89
89
  const NpmPackageManager: PackageManager = {
90
- cwd: process.cwd(),
91
- type: "npm",
92
- /** Add and install a new devDependency into the local package.json. */
93
- async addDevDeps(...packages: string[]): Promise<void> {
94
- await execa("npm", ["install", ...packages, "--save-dev"], {
95
- stdio: "inherit",
96
- cwd: this.cwd,
97
- });
98
- },
90
+ cwd: process.cwd(),
91
+ type: "npm",
92
+ /** Add and install a new devDependency into the local package.json. */
93
+ async addDevDeps(...packages: string[]): Promise<void> {
94
+ await execa("npm", ["install", ...packages, "--save-dev"], {
95
+ stdio: "inherit",
96
+ cwd: this.cwd,
97
+ });
98
+ },
99
99
 
100
- /** Install all the dependencies in the local package.json. */
101
- async install(): Promise<void> {
102
- await execa("npm", ["install"], {
103
- stdio: "inherit",
104
- cwd: this.cwd,
105
- });
106
- },
100
+ /** Install all the dependencies in the local package.json. */
101
+ async install(): Promise<void> {
102
+ await execa("npm", ["install"], {
103
+ stdio: "inherit",
104
+ cwd: this.cwd,
105
+ });
106
+ },
107
107
  };
108
108
 
109
109
  /**
110
110
  * Manage packages using pnpm
111
111
  */
112
112
  const PnpmPackageManager: PackageManager = {
113
- cwd: process.cwd(),
114
- type: "pnpm",
115
- /** Add and install a new devDependency into the local package.json. */
116
- async addDevDeps(...packages: string[]): Promise<void> {
117
- await execa("pnpm", ["install", ...packages, "--save-dev"], {
118
- stdio: "inherit",
119
- cwd: this.cwd,
120
- });
121
- },
113
+ cwd: process.cwd(),
114
+ type: "pnpm",
115
+ /** Add and install a new devDependency into the local package.json. */
116
+ async addDevDeps(...packages: string[]): Promise<void> {
117
+ await execa("pnpm", ["install", ...packages, "--save-dev"], {
118
+ stdio: "inherit",
119
+ cwd: this.cwd,
120
+ });
121
+ },
122
122
 
123
- /** Install all the dependencies in the local package.json. */
124
- async install(): Promise<void> {
125
- await execa("pnpm", ["install"], {
126
- stdio: "inherit",
127
- cwd: this.cwd,
128
- });
129
- },
123
+ /** Install all the dependencies in the local package.json. */
124
+ async install(): Promise<void> {
125
+ await execa("pnpm", ["install"], {
126
+ stdio: "inherit",
127
+ cwd: this.cwd,
128
+ });
129
+ },
130
130
  };
131
131
 
132
132
  /**
133
133
  * Manage packages using yarn
134
134
  */
135
135
  const YarnPackageManager: PackageManager = {
136
- cwd: process.cwd(),
137
- type: "yarn",
138
- /** Add and install a new devDependency into the local package.json. */
139
- async addDevDeps(...packages: string[]): Promise<void> {
140
- await execa("yarn", ["add", ...packages, "--dev"], {
141
- stdio: "inherit",
142
- cwd: this.cwd,
143
- });
144
- },
136
+ cwd: process.cwd(),
137
+ type: "yarn",
138
+ /** Add and install a new devDependency into the local package.json. */
139
+ async addDevDeps(...packages: string[]): Promise<void> {
140
+ await execa("yarn", ["add", ...packages, "--dev"], {
141
+ stdio: "inherit",
142
+ cwd: this.cwd,
143
+ });
144
+ },
145
145
 
146
- /** Install all the dependencies in the local package.json. */
147
- async install(): Promise<void> {
148
- await execa("yarn", ["install"], {
149
- stdio: "inherit",
150
- cwd: this.cwd,
151
- });
152
- },
146
+ /** Install all the dependencies in the local package.json. */
147
+ async install(): Promise<void> {
148
+ await execa("yarn", ["install"], {
149
+ stdio: "inherit",
150
+ cwd: this.cwd,
151
+ });
152
+ },
153
153
  };
154
154
 
155
155
  async function supports(name: string): Promise<boolean> {
156
- try {
157
- execaCommandSync(`${name} --version`, { stdio: "ignore" });
158
- return true;
159
- } catch {
160
- return false;
161
- }
156
+ try {
157
+ execaCommandSync(`${name} --version`, { stdio: "ignore" });
158
+ return true;
159
+ } catch {
160
+ return false;
161
+ }
162
162
  }
163
163
 
164
164
  function supportsYarn(): Promise<boolean> {
165
- return supports("yarn");
165
+ return supports("yarn");
166
166
  }
167
167
 
168
168
  function supportsNpm(): Promise<boolean> {
169
- return supports("npm");
169
+ return supports("npm");
170
170
  }
171
171
 
172
172
  function supportsPnpm(): Promise<boolean> {
173
- return supports("pnpm");
173
+ return supports("pnpm");
174
174
  }
@@ -0,0 +1,202 @@
1
+ import { writeFileSync } from "node:fs";
2
+ import { tmpdir } from "node:os";
3
+ import { dirname, join } from "node:path";
4
+ import { logger } from "../logger";
5
+ import { toUrlPath } from "../paths";
6
+ import { isInPagesCI } from "./constants";
7
+ import { buildPlugin } from "./functions/buildPlugin";
8
+ import { buildWorker } from "./functions/buildWorker";
9
+ import { generateConfigFromFileTree } from "./functions/filepath-routing";
10
+ import { writeRoutesModule } from "./functions/routes";
11
+ import { pagesBetaWarning, RUNNING_BUILDERS } from "./utils";
12
+ import type { Config } from "./functions/routes";
13
+ import type { ArgumentsCamelCase, Argv } from "yargs";
14
+
15
+ type PagesBuildArgs = {
16
+ directory: string;
17
+ outfile: string;
18
+ "output-config-path"?: string;
19
+ minify: boolean;
20
+ sourcemap: boolean;
21
+ "fallback-service": string;
22
+ watch: boolean;
23
+ plugin: boolean;
24
+ "build-output-directory"?: string;
25
+ "node-compat": boolean;
26
+ };
27
+
28
+ export function Options(yargs: Argv): Argv<PagesBuildArgs> {
29
+ return yargs
30
+ .positional("directory", {
31
+ type: "string",
32
+ default: "functions",
33
+ description: "The directory of Pages Functions",
34
+ })
35
+ .options({
36
+ outfile: {
37
+ type: "string",
38
+ default: "_worker.js",
39
+ description: "The location of the output Worker script",
40
+ },
41
+ "output-config-path": {
42
+ type: "string",
43
+ description: "The location for the output config file",
44
+ },
45
+ minify: {
46
+ type: "boolean",
47
+ default: false,
48
+ description: "Minify the output Worker script",
49
+ },
50
+ sourcemap: {
51
+ type: "boolean",
52
+ default: false,
53
+ description: "Generate a sourcemap for the output Worker script",
54
+ },
55
+ "fallback-service": {
56
+ type: "string",
57
+ default: "ASSETS",
58
+ description:
59
+ "The service to fallback to at the end of the `next` chain. Setting to '' will fallback to the global `fetch`.",
60
+ },
61
+ watch: {
62
+ type: "boolean",
63
+ default: false,
64
+ description:
65
+ "Watch for changes to the functions and automatically rebuild the Worker script",
66
+ },
67
+ plugin: {
68
+ type: "boolean",
69
+ default: false,
70
+ description: "Build a plugin rather than a Worker script",
71
+ },
72
+ "build-output-directory": {
73
+ type: "string",
74
+ description: "The directory to output static assets to",
75
+ },
76
+ "node-compat": {
77
+ describe: "Enable node.js compatibility",
78
+ default: false,
79
+ type: "boolean",
80
+ hidden: true,
81
+ },
82
+ })
83
+ .epilogue(pagesBetaWarning);
84
+ }
85
+
86
+ export const Handler = async ({
87
+ directory,
88
+ outfile,
89
+ "output-config-path": outputConfigPath,
90
+ minify,
91
+ sourcemap,
92
+ fallbackService,
93
+ watch,
94
+ plugin,
95
+ "build-output-directory": buildOutputDirectory,
96
+ "node-compat": nodeCompat,
97
+ }: ArgumentsCamelCase<PagesBuildArgs>) => {
98
+ if (!isInPagesCI) {
99
+ // Beta message for `wrangler pages <commands>` usage
100
+ logger.log(pagesBetaWarning);
101
+ }
102
+
103
+ if (nodeCompat) {
104
+ console.warn(
105
+ "Enabling node.js compatibility mode for builtins and globals. This is experimental and has serious tradeoffs. Please see https://github.com/ionic-team/rollup-plugin-node-polyfills/ for more details."
106
+ );
107
+ }
108
+
109
+ buildOutputDirectory ??= dirname(outfile);
110
+
111
+ await buildFunctions({
112
+ outfile,
113
+ outputConfigPath,
114
+ functionsDirectory: directory,
115
+ minify,
116
+ sourcemap,
117
+ fallbackService,
118
+ watch,
119
+ plugin,
120
+ buildOutputDirectory,
121
+ nodeCompat,
122
+ });
123
+ };
124
+
125
+ export async function buildFunctions({
126
+ outfile,
127
+ outputConfigPath,
128
+ functionsDirectory,
129
+ minify = false,
130
+ sourcemap = false,
131
+ fallbackService = "ASSETS",
132
+ watch = false,
133
+ onEnd,
134
+ plugin = false,
135
+ buildOutputDirectory,
136
+ nodeCompat,
137
+ }: {
138
+ outfile: string;
139
+ outputConfigPath?: string;
140
+ functionsDirectory: string;
141
+ minify?: boolean;
142
+ sourcemap?: boolean;
143
+ fallbackService?: string;
144
+ watch?: boolean;
145
+ onEnd?: () => void;
146
+ plugin?: boolean;
147
+ buildOutputDirectory?: string;
148
+ nodeCompat?: boolean;
149
+ }) {
150
+ RUNNING_BUILDERS.forEach(
151
+ (runningBuilder) => runningBuilder.stop && runningBuilder.stop()
152
+ );
153
+
154
+ const routesModule = join(tmpdir(), `./functionsRoutes-${Math.random()}.mjs`);
155
+ const baseURL = toUrlPath("/");
156
+
157
+ const config: Config = await generateConfigFromFileTree({
158
+ baseDir: functionsDirectory,
159
+ baseURL,
160
+ });
161
+
162
+ if (outputConfigPath) {
163
+ writeFileSync(
164
+ outputConfigPath,
165
+ JSON.stringify({ ...config, baseURL }, null, 2)
166
+ );
167
+ }
168
+
169
+ await writeRoutesModule({
170
+ config,
171
+ srcDir: functionsDirectory,
172
+ outfile: routesModule,
173
+ });
174
+
175
+ if (plugin) {
176
+ RUNNING_BUILDERS.push(
177
+ await buildPlugin({
178
+ routesModule,
179
+ outfile,
180
+ minify,
181
+ sourcemap,
182
+ watch,
183
+ nodeCompat,
184
+ onEnd,
185
+ })
186
+ );
187
+ } else {
188
+ RUNNING_BUILDERS.push(
189
+ await buildWorker({
190
+ routesModule,
191
+ outfile,
192
+ minify,
193
+ sourcemap,
194
+ fallbackService,
195
+ watch,
196
+ onEnd,
197
+ buildOutputDirectory,
198
+ nodeCompat,
199
+ })
200
+ );
201
+ }
202
+ }
@@ -0,0 +1,7 @@
1
+ export const PAGES_CONFIG_CACHE_FILENAME = "pages.json";
2
+ export const MAX_BUCKET_SIZE = 50 * 1024 * 1024;
3
+ export const MAX_BUCKET_FILE_COUNT = 5000;
4
+ export const BULK_UPLOAD_CONCURRENCY = 3;
5
+ export const MAX_UPLOAD_ATTEMPTS = 5;
6
+ export const SECONDS_TO_WAIT_FOR_PROXY = 5;
7
+ export const isInPagesCI = !!process.env.CF_PAGES;
@@ -0,0 +1,101 @@
1
+ import { render, Text } from "ink";
2
+ import SelectInput from "ink-select-input";
3
+ import Table from "ink-table";
4
+ import React from "react";
5
+ import { format as timeagoFormat } from "timeago.js";
6
+ import { fetchResult } from "../cfetch";
7
+ import { getConfigCache, saveToConfigCache } from "../config-cache";
8
+ import { FatalError } from "../errors";
9
+ import { requireAuth } from "../user";
10
+ import { PAGES_CONFIG_CACHE_FILENAME } from "./constants";
11
+ import { listProjects } from "./projects";
12
+ import { pagesBetaWarning } from "./utils";
13
+ import type { Deployment, PagesConfigCache } from "./types";
14
+ import type { ArgumentsCamelCase, Argv } from "yargs";
15
+
16
+ type ListArgs = {
17
+ "project-name"?: string;
18
+ };
19
+
20
+ export function ListOptions(yargs: Argv): Argv<ListArgs> {
21
+ return yargs
22
+ .options({
23
+ "project-name": {
24
+ type: "string",
25
+ description:
26
+ "The name of the project you would like to list deployments for",
27
+ },
28
+ })
29
+ .epilogue(pagesBetaWarning);
30
+ }
31
+
32
+ export async function ListHandler({
33
+ projectName,
34
+ }: ArgumentsCamelCase<ListArgs>) {
35
+ const config = getConfigCache<PagesConfigCache>(PAGES_CONFIG_CACHE_FILENAME);
36
+ const accountId = await requireAuth(config);
37
+
38
+ projectName ??= config.project_name;
39
+
40
+ const isInteractive = process.stdin.isTTY;
41
+ if (!projectName && isInteractive) {
42
+ const projects = await listProjects({ accountId });
43
+ projectName = await new Promise((resolve) => {
44
+ const { unmount } = render(
45
+ <>
46
+ <Text>Select a project:</Text>
47
+ <SelectInput
48
+ items={projects.map((project) => ({
49
+ key: project.name,
50
+ label: project.name,
51
+ value: project,
52
+ }))}
53
+ onSelect={async (selected) => {
54
+ resolve(selected.value.name);
55
+ unmount();
56
+ }}
57
+ />
58
+ </>
59
+ );
60
+ });
61
+ }
62
+
63
+ if (!projectName) {
64
+ throw new FatalError("Must specify a project name.", 1);
65
+ }
66
+
67
+ const deployments: Array<Deployment> = await fetchResult(
68
+ `/accounts/${accountId}/pages/projects/${projectName}/deployments`
69
+ );
70
+
71
+ const titleCase = (word: string) =>
72
+ word.charAt(0).toUpperCase() + word.slice(1);
73
+
74
+ const shortSha = (sha: string) => sha.slice(0, 7);
75
+
76
+ const getStatus = (deployment: Deployment) => {
77
+ // Return a pretty time since timestamp if successful otherwise the status
78
+ if (deployment.latest_stage.status === `success`) {
79
+ return timeagoFormat(deployment.latest_stage.ended_on);
80
+ }
81
+ return titleCase(deployment.latest_stage.status);
82
+ };
83
+
84
+ const data = deployments.map((deployment) => {
85
+ return {
86
+ Environment: titleCase(deployment.environment),
87
+ Branch: deployment.deployment_trigger.metadata.branch,
88
+ Source: shortSha(deployment.deployment_trigger.metadata.commit_hash),
89
+ Deployment: deployment.url,
90
+ Status: getStatus(deployment),
91
+ // TODO: Use a url shortener
92
+ Build: `https://dash.cloudflare.com/${accountId}/pages/view/${deployment.project_name}/${deployment.id}`,
93
+ };
94
+ });
95
+
96
+ saveToConfigCache<PagesConfigCache>(PAGES_CONFIG_CACHE_FILENAME, {
97
+ account_id: accountId,
98
+ });
99
+
100
+ render(<Table data={data}></Table>, { patchConsole: false });
101
+ }