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
package/src/entry.ts CHANGED
@@ -19,109 +19,115 @@ export type Entry = { file: string; directory: string; format: CfScriptFormat };
19
19
  * Compute the entry-point for the Worker.
20
20
  */
21
21
  export async function getEntry(
22
- args: { script?: string; format?: CfScriptFormat | undefined },
23
- config: Config,
24
- command: "dev" | "publish"
22
+ args: {
23
+ script?: string;
24
+ format?: CfScriptFormat | undefined;
25
+ assets?: string | undefined;
26
+ },
27
+ config: Config,
28
+ command: "dev" | "publish"
25
29
  ): Promise<Entry> {
26
- let file: string;
27
- let directory = process.cwd();
28
- if (args.script) {
29
- // If the script name comes from the command line it is relative to the current working directory.
30
- file = path.resolve(args.script);
31
- } else if (config.main === undefined) {
32
- if (config.site?.["entry-point"]) {
33
- directory = path.resolve(path.dirname(config.configPath ?? "."));
34
- file = path.extname(config.site?.["entry-point"])
35
- ? path.resolve(config.site?.["entry-point"])
36
- : // site.entry-point could be a directory
37
- path.resolve(config.site?.["entry-point"], "index.js");
38
- } else {
39
- throw new Error(
40
- `Missing entry-point: The entry-point should be specified via the command line (e.g. \`wrangler ${command} path/to/script\`) or the \`main\` config field.`
41
- );
42
- }
43
- } else {
44
- directory = path.resolve(path.dirname(config.configPath ?? "."));
45
- file = path.resolve(directory, config.main);
46
- }
30
+ let file: string;
31
+ let directory = process.cwd();
32
+ if (args.script) {
33
+ // If the script name comes from the command line it is relative to the current working directory.
34
+ file = path.resolve(args.script);
35
+ } else if (config.main === undefined) {
36
+ if (config.site?.["entry-point"]) {
37
+ directory = path.resolve(path.dirname(config.configPath ?? "."));
38
+ file = path.extname(config.site?.["entry-point"])
39
+ ? path.resolve(config.site?.["entry-point"])
40
+ : // site.entry-point could be a directory
41
+ path.resolve(config.site?.["entry-point"], "index.js");
42
+ } else if (args.assets) {
43
+ file = path.resolve(__dirname, "../templates/no-op-worker.js");
44
+ } else {
45
+ throw new Error(
46
+ `Missing entry-point: The entry-point should be specified via the command line (e.g. \`wrangler ${command} path/to/script\`) or the \`main\` config field.`
47
+ );
48
+ }
49
+ } else {
50
+ directory = path.resolve(path.dirname(config.configPath ?? "."));
51
+ file = path.resolve(directory, config.main);
52
+ }
47
53
 
48
- const relativeFile = path.relative(directory, file) || ".";
49
- await runCustomBuild(file, relativeFile, config.build);
54
+ const relativeFile = path.relative(directory, file) || ".";
55
+ await runCustomBuild(file, relativeFile, config.build);
50
56
 
51
- if (fileExists(file) === false) {
52
- throw new Error(
53
- getMissingEntryPointMessage(
54
- `The entry-point file at "${relativeFile}" was not found.`,
55
- file,
56
- relativeFile
57
- )
58
- );
59
- }
60
- const format = await guessWorkerFormat(
61
- file,
62
- directory,
63
- args.format ?? config.build?.upload?.format,
64
- config.tsconfig
65
- );
57
+ if (fileExists(file) === false) {
58
+ throw new Error(
59
+ getMissingEntryPointMessage(
60
+ `The entry-point file at "${relativeFile}" was not found.`,
61
+ file,
62
+ relativeFile
63
+ )
64
+ );
65
+ }
66
+ const format = await guessWorkerFormat(
67
+ file,
68
+ directory,
69
+ args.format ?? config.build?.upload?.format,
70
+ config.tsconfig
71
+ );
66
72
 
67
- const { localBindings, remoteBindings } =
68
- partitionDurableObjectBindings(config);
73
+ const { localBindings, remoteBindings } =
74
+ partitionDurableObjectBindings(config);
69
75
 
70
- if (command === "dev" && remoteBindings.length > 0) {
71
- logger.warn(
72
- "WARNING: You have Durable Object bindings that are not defined locally in the worker being developed.\n" +
73
- "Be aware that changes to the data stored in these Durable Objects will be permanent and affect the live instances.\n" +
74
- "Remote Durable Objects that are affected:\n" +
75
- remoteBindings.map((b) => `- ${JSON.stringify(b)}`).join("\n")
76
- );
77
- }
76
+ if (command === "dev" && remoteBindings.length > 0) {
77
+ logger.warn(
78
+ "WARNING: You have Durable Object bindings that are not defined locally in the worker being developed.\n" +
79
+ "Be aware that changes to the data stored in these Durable Objects will be permanent and affect the live instances.\n" +
80
+ "Remote Durable Objects that are affected:\n" +
81
+ remoteBindings.map((b) => `- ${JSON.stringify(b)}`).join("\n")
82
+ );
83
+ }
78
84
 
79
- if (format === "service-worker" && localBindings.length > 0) {
80
- const errorMessage =
81
- "You seem to be trying to use Durable Objects in a Worker written as a service-worker.";
82
- const addScriptName =
83
- "You can use Durable Objects defined in other Workers by specifying a `script_name` in your wrangler.toml, where `script_name` is the name of the Worker that implements that Durable Object. For example:";
84
- const addScriptNameExamples = generateAddScriptNameExamples(localBindings);
85
- const migrateText =
86
- "Alternatively, migrate your worker to ES Module syntax to implement a Durable Object in this Worker:";
87
- const migrateUrl =
88
- "https://developers.cloudflare.com/workers/learning/migrating-to-module-workers/";
89
- throw new Error(
90
- `${errorMessage}\n${addScriptName}\n${addScriptNameExamples}\n${migrateText}\n${migrateUrl}`
91
- );
92
- }
85
+ if (format === "service-worker" && localBindings.length > 0) {
86
+ const errorMessage =
87
+ "You seem to be trying to use Durable Objects in a Worker written as a service-worker.";
88
+ const addScriptName =
89
+ "You can use Durable Objects defined in other Workers by specifying a `script_name` in your wrangler.toml, where `script_name` is the name of the Worker that implements that Durable Object. For example:";
90
+ const addScriptNameExamples = generateAddScriptNameExamples(localBindings);
91
+ const migrateText =
92
+ "Alternatively, migrate your worker to ES Module syntax to implement a Durable Object in this Worker:";
93
+ const migrateUrl =
94
+ "https://developers.cloudflare.com/workers/learning/migrating-to-module-workers/";
95
+ throw new Error(
96
+ `${errorMessage}\n${addScriptName}\n${addScriptNameExamples}\n${migrateText}\n${migrateUrl}`
97
+ );
98
+ }
93
99
 
94
- return { file, directory, format };
100
+ return { file, directory, format };
95
101
  }
96
102
 
97
103
  export async function runCustomBuild(
98
- expectedEntryAbsolute: string,
99
- expectedEntryRelative: string,
100
- build: Config["build"]
104
+ expectedEntryAbsolute: string,
105
+ expectedEntryRelative: string,
106
+ build: Config["build"]
101
107
  ) {
102
- if (build?.command) {
103
- // TODO: add a deprecation message here?
104
- logger.log("Running custom build:", build.command);
105
- await execaCommand(build.command, {
106
- shell: true,
107
- // we keep these two as "inherit" so that
108
- // logs are still visible.
109
- stdout: "inherit",
110
- stderr: "inherit",
111
- ...(build.cwd && { cwd: build.cwd }),
112
- });
108
+ if (build?.command) {
109
+ // TODO: add a deprecation message here?
110
+ logger.log("Running custom build:", build.command);
111
+ await execaCommand(build.command, {
112
+ shell: true,
113
+ // we keep these two as "inherit" so that
114
+ // logs are still visible.
115
+ stdout: "inherit",
116
+ stderr: "inherit",
117
+ ...(build.cwd && { cwd: build.cwd }),
118
+ });
113
119
 
114
- if (fileExists(expectedEntryAbsolute) === false) {
115
- throw new Error(
116
- getMissingEntryPointMessage(
117
- `The expected output file at "${expectedEntryRelative}" was not found after running custom build: ${build.command}.\n` +
118
- "The `main` property in wrangler.toml should point to the file generated by the custom build.",
119
- expectedEntryAbsolute,
120
- expectedEntryRelative
121
- )
122
- );
123
- }
124
- }
120
+ if (fileExists(expectedEntryAbsolute) === false) {
121
+ throw new Error(
122
+ getMissingEntryPointMessage(
123
+ `The expected output file at "${expectedEntryRelative}" was not found after running custom build: ${build.command}.\n` +
124
+ "The `main` property in wrangler.toml should point to the file generated by the custom build.",
125
+ expectedEntryAbsolute,
126
+ expectedEntryRelative
127
+ )
128
+ );
129
+ }
130
+ }
125
131
  }
126
132
 
127
133
  /**
@@ -133,81 +139,81 @@ export async function runCustomBuild(
133
139
  * well in practice.
134
140
  */
135
141
  export default async function guessWorkerFormat(
136
- entryFile: string,
137
- entryWorkingDirectory: string,
138
- hint: CfScriptFormat | undefined,
139
- tsconfig?: string | undefined
142
+ entryFile: string,
143
+ entryWorkingDirectory: string,
144
+ hint: CfScriptFormat | undefined,
145
+ tsconfig?: string | undefined
140
146
  ): Promise<CfScriptFormat> {
141
- const result = await esbuild.build({
142
- entryPoints: [entryFile],
143
- absWorkingDir: entryWorkingDirectory,
144
- metafile: true,
145
- bundle: false,
146
- format: "esm",
147
- target: "es2020",
148
- write: false,
149
- loader: {
150
- ".js": "jsx",
151
- ".mjs": "jsx",
152
- ".cjs": "jsx",
153
- },
154
- ...(tsconfig && { tsconfig }),
155
- });
156
- // result.metafile is defined because of the `metafile: true` option above.
157
- // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
158
- const metafile = result.metafile!;
159
- const entryPoints = Object.entries(metafile.outputs).filter(
160
- ([_path, output]) => output.entryPoint !== undefined
161
- );
162
- assert(
163
- entryPoints.length > 0,
164
- `Cannot find entry-point "${entryFile}" in generated bundle.` +
165
- listEntryPoints(entryPoints)
166
- );
167
- assert(
168
- entryPoints.length < 2,
169
- "More than one entry-point found for generated bundle." +
170
- listEntryPoints(entryPoints)
171
- );
147
+ const result = await esbuild.build({
148
+ entryPoints: [entryFile],
149
+ absWorkingDir: entryWorkingDirectory,
150
+ metafile: true,
151
+ bundle: false,
152
+ format: "esm",
153
+ target: "es2020",
154
+ write: false,
155
+ loader: {
156
+ ".js": "jsx",
157
+ ".mjs": "jsx",
158
+ ".cjs": "jsx",
159
+ },
160
+ ...(tsconfig && { tsconfig }),
161
+ });
162
+ // result.metafile is defined because of the `metafile: true` option above.
163
+ // eslint-disable-next-line @typescript-eslint/no-non-null-assertion
164
+ const metafile = result.metafile!;
165
+ const entryPoints = Object.entries(metafile.outputs).filter(
166
+ ([_path, output]) => output.entryPoint !== undefined
167
+ );
168
+ assert(
169
+ entryPoints.length > 0,
170
+ `Cannot find entry-point "${entryFile}" in generated bundle.` +
171
+ listEntryPoints(entryPoints)
172
+ );
173
+ assert(
174
+ entryPoints.length < 2,
175
+ "More than one entry-point found for generated bundle." +
176
+ listEntryPoints(entryPoints)
177
+ );
172
178
 
173
- let guessedWorkerFormat: CfScriptFormat;
174
- const scriptExports = entryPoints[0][1].exports;
175
- if (scriptExports.length > 0) {
176
- if (scriptExports.includes("default")) {
177
- guessedWorkerFormat = "modules";
178
- } else {
179
- logger.warn(
180
- `The entrypoint ${path.relative(
181
- process.cwd(),
182
- entryFile
183
- )} has exports like an ES Module, but hasn't defined a default export like a module worker normally would. Building the worker using "service-worker" format...`
184
- );
185
- guessedWorkerFormat = "service-worker";
186
- }
187
- } else {
188
- guessedWorkerFormat = "service-worker";
189
- }
179
+ let guessedWorkerFormat: CfScriptFormat;
180
+ const scriptExports = entryPoints[0][1].exports;
181
+ if (scriptExports.length > 0) {
182
+ if (scriptExports.includes("default")) {
183
+ guessedWorkerFormat = "modules";
184
+ } else {
185
+ logger.warn(
186
+ `The entrypoint ${path.relative(
187
+ process.cwd(),
188
+ entryFile
189
+ )} has exports like an ES Module, but hasn't defined a default export like a module worker normally would. Building the worker using "service-worker" format...`
190
+ );
191
+ guessedWorkerFormat = "service-worker";
192
+ }
193
+ } else {
194
+ guessedWorkerFormat = "service-worker";
195
+ }
190
196
 
191
- if (hint) {
192
- if (hint !== guessedWorkerFormat) {
193
- if (hint === "service-worker") {
194
- throw new Error(
195
- "You configured this worker to be a 'service-worker', but the file you are trying to build appears to have a `default` export like a module worker. Please pass `--format modules`, or simply remove the configuration."
196
- );
197
- } else {
198
- throw new Error(
199
- "You configured this worker to be 'modules', but the file you are trying to build doesn't export a handler. Please pass `--format service-worker`, or simply remove the configuration."
200
- );
201
- }
202
- }
203
- }
204
- return guessedWorkerFormat;
197
+ if (hint) {
198
+ if (hint !== guessedWorkerFormat) {
199
+ if (hint === "service-worker") {
200
+ throw new Error(
201
+ "You configured this worker to be a 'service-worker', but the file you are trying to build appears to have a `default` export like a module worker. Please pass `--format modules`, or simply remove the configuration."
202
+ );
203
+ } else {
204
+ throw new Error(
205
+ "You configured this worker to be 'modules', but the file you are trying to build doesn't export a handler. Please pass `--format service-worker`, or simply remove the configuration."
206
+ );
207
+ }
208
+ }
209
+ }
210
+ return guessedWorkerFormat;
205
211
  }
206
212
 
207
213
  function listEntryPoints(
208
- outputs: [string, ValueOf<Metafile["outputs"]>][]
214
+ outputs: [string, ValueOf<Metafile["outputs"]>][]
209
215
  ): string {
210
- return outputs.map(([_input, output]) => output.entryPoint).join("\n");
216
+ return outputs.map(([_input, output]) => output.entryPoint).join("\n");
211
217
  }
212
218
 
213
219
  type ValueOf<T> = T[keyof T];
@@ -217,16 +223,16 @@ type ValueOf<T> = T[keyof T];
217
223
  * or if some version of it (by appending a common extension) exists.
218
224
  */
219
225
  export function fileExists(filePath: string): boolean {
220
- if (path.extname(filePath) !== "") {
221
- return existsSync(filePath);
222
- }
223
- const base = path.join(path.dirname(filePath), path.basename(filePath));
224
- for (const ext of [".ts", ".tsx", ".js", ".jsx"]) {
225
- if (existsSync(base + ext)) {
226
- return true;
227
- }
228
- }
229
- return false;
226
+ if (path.extname(filePath) !== "") {
227
+ return existsSync(filePath);
228
+ }
229
+ const base = path.join(path.dirname(filePath), path.basename(filePath));
230
+ for (const ext of [".ts", ".tsx", ".js", ".jsx"]) {
231
+ if (existsSync(base + ext)) {
232
+ return true;
233
+ }
234
+ }
235
+ return false;
230
236
  }
231
237
 
232
238
  type DurableObjectBindings = Config["durable_objects"]["bindings"];
@@ -236,19 +242,19 @@ type DurableObjectBindings = Config["durable_objects"]["bindings"];
236
242
  * those that are defined locally and those that refer to a durable object defined in another script.
237
243
  */
238
244
  function partitionDurableObjectBindings(config: Config): {
239
- localBindings: DurableObjectBindings;
240
- remoteBindings: DurableObjectBindings;
245
+ localBindings: DurableObjectBindings;
246
+ remoteBindings: DurableObjectBindings;
241
247
  } {
242
- const localBindings: DurableObjectBindings = [];
243
- const remoteBindings: DurableObjectBindings = [];
244
- for (const binding of config.durable_objects.bindings) {
245
- if (binding.script_name === undefined) {
246
- localBindings.push(binding);
247
- } else {
248
- remoteBindings.push(binding);
249
- }
250
- }
251
- return { localBindings, remoteBindings };
248
+ const localBindings: DurableObjectBindings = [];
249
+ const remoteBindings: DurableObjectBindings = [];
250
+ for (const binding of config.durable_objects.bindings) {
251
+ if (binding.script_name === undefined) {
252
+ localBindings.push(binding);
253
+ } else {
254
+ remoteBindings.push(binding);
255
+ }
256
+ }
257
+ return { localBindings, remoteBindings };
252
258
  }
253
259
 
254
260
  /**
@@ -257,21 +263,21 @@ function partitionDurableObjectBindings(config: Config): {
257
263
  * externally defined Durable Object.
258
264
  */
259
265
  function generateAddScriptNameExamples(
260
- localBindings: DurableObjectBindings
266
+ localBindings: DurableObjectBindings
261
267
  ): string {
262
- function exampleScriptName(binding_name: string): string {
263
- return `${binding_name.toLowerCase().replaceAll("_", "-")}-worker`;
264
- }
268
+ function exampleScriptName(binding_name: string): string {
269
+ return `${binding_name.toLowerCase().replaceAll("_", "-")}-worker`;
270
+ }
265
271
 
266
- return localBindings
267
- .map(({ name, class_name }) => {
268
- const script_name = exampleScriptName(name);
269
- const currentBinding = `{ name = ${name}, class_name = ${class_name} }`;
270
- const fixedBinding = `{ name = ${name}, class_name = ${class_name}, script_name = ${script_name} }`;
272
+ return localBindings
273
+ .map(({ name, class_name }) => {
274
+ const script_name = exampleScriptName(name);
275
+ const currentBinding = `{ name = ${name}, class_name = ${class_name} }`;
276
+ const fixedBinding = `{ name = ${name}, class_name = ${class_name}, script_name = ${script_name} }`;
271
277
 
272
- return `${currentBinding} ==> ${fixedBinding}`;
273
- })
274
- .join("\n");
278
+ return `${currentBinding} ==> ${fixedBinding}`;
279
+ })
280
+ .join("\n");
275
281
  }
276
282
 
277
283
  /**
@@ -281,42 +287,42 @@ function generateAddScriptNameExamples(
281
287
  * nearby to the expected file path.
282
288
  */
283
289
  function getMissingEntryPointMessage(
284
- message: string,
285
- absoluteEntryPointPath: string,
286
- relativeEntryPointPath: string
290
+ message: string,
291
+ absoluteEntryPointPath: string,
292
+ relativeEntryPointPath: string
287
293
  ): string {
288
- if (
289
- existsSync(absoluteEntryPointPath) &&
290
- statSync(absoluteEntryPointPath).isDirectory()
291
- ) {
292
- // The expected entry-point is a directory, so offer further guidance.
293
- message += `\nThe provided entry-point path, "${relativeEntryPointPath}", points to a directory, rather than a file.\n`;
294
+ if (
295
+ existsSync(absoluteEntryPointPath) &&
296
+ statSync(absoluteEntryPointPath).isDirectory()
297
+ ) {
298
+ // The expected entry-point is a directory, so offer further guidance.
299
+ message += `\nThe provided entry-point path, "${relativeEntryPointPath}", points to a directory, rather than a file.\n`;
294
300
 
295
- // Perhaps we can even guess what the correct path should be...
296
- const possiblePaths: string[] = [];
297
- for (const basenamePath of [
298
- "worker",
299
- "dist/worker",
300
- "index",
301
- "dist/index",
302
- ]) {
303
- for (const extension of [".ts", ".tsx", ".js", ".jsx"]) {
304
- const filePath = basenamePath + extension;
305
- if (fileExists(path.resolve(absoluteEntryPointPath, filePath))) {
306
- possiblePaths.push(path.join(relativeEntryPointPath, filePath));
307
- }
308
- }
309
- }
301
+ // Perhaps we can even guess what the correct path should be...
302
+ const possiblePaths: string[] = [];
303
+ for (const basenamePath of [
304
+ "worker",
305
+ "dist/worker",
306
+ "index",
307
+ "dist/index",
308
+ ]) {
309
+ for (const extension of [".ts", ".tsx", ".js", ".jsx"]) {
310
+ const filePath = basenamePath + extension;
311
+ if (fileExists(path.resolve(absoluteEntryPointPath, filePath))) {
312
+ possiblePaths.push(path.join(relativeEntryPointPath, filePath));
313
+ }
314
+ }
315
+ }
310
316
 
311
- if (possiblePaths.length > 0) {
312
- message +=
313
- `\nDid you mean to set the main field to${
314
- possiblePaths.length > 1 ? " one of" : ""
315
- }:\n` +
316
- "```\n" +
317
- possiblePaths.map((filePath) => `main = "./${filePath}"\n`).join("") +
318
- "```";
319
- }
320
- }
321
- return message;
317
+ if (possiblePaths.length > 0) {
318
+ message +=
319
+ `\nDid you mean to set the main field to${
320
+ possiblePaths.length > 1 ? " one of" : ""
321
+ }:\n` +
322
+ "```\n" +
323
+ possiblePaths.map((filePath) => `main = "./${filePath}"\n`).join("") +
324
+ "```";
325
+ }
326
+ }
327
+ return message;
322
328
  }
@@ -7,29 +7,29 @@ import { logger } from "./logger";
7
7
  * A warning is shown if the client is using a deprecated version - but only once.
8
8
  */
9
9
  export function getEnvironmentVariableFactory({
10
- variableName,
11
- deprecatedName,
12
- defaultValue,
10
+ variableName,
11
+ deprecatedName,
12
+ defaultValue,
13
13
  }: {
14
- variableName: string;
15
- deprecatedName?: string;
16
- defaultValue?: string;
14
+ variableName: string;
15
+ deprecatedName?: string;
16
+ defaultValue?: string;
17
17
  }) {
18
- let hasWarned = false;
19
- return () => {
20
- if (process.env[variableName]) {
21
- return process.env[variableName];
22
- } else if (deprecatedName && process.env[deprecatedName]) {
23
- if (!hasWarned) {
24
- // Only show the warning once.
25
- hasWarned = true;
26
- logger.warn(
27
- `Using "${deprecatedName}" environment variable. This is deprecated. Please use "${variableName}", instead.`
28
- );
29
- }
30
- return process.env[deprecatedName];
31
- } else {
32
- return defaultValue;
33
- }
34
- };
18
+ let hasWarned = false;
19
+ return () => {
20
+ if (process.env[variableName]) {
21
+ return process.env[variableName];
22
+ } else if (deprecatedName && process.env[deprecatedName]) {
23
+ if (!hasWarned) {
24
+ // Only show the warning once.
25
+ hasWarned = true;
26
+ logger.warn(
27
+ `Using "${deprecatedName}" environment variable. This is deprecated. Please use "${variableName}", instead.`
28
+ );
29
+ }
30
+ return process.env[deprecatedName];
31
+ } else {
32
+ return defaultValue;
33
+ }
34
+ };
35
35
  }
package/src/errors.ts CHANGED
@@ -1,11 +1,11 @@
1
1
  export class DeprecationError extends Error {
2
- constructor(message: string) {
3
- super(`Deprecation:\n${message}`);
4
- }
2
+ constructor(message: string) {
3
+ super(`Deprecation:\n${message}`);
4
+ }
5
5
  }
6
6
 
7
7
  export class FatalError extends Error {
8
- constructor(message?: string, readonly code?: number) {
9
- super(message);
10
- }
8
+ constructor(message?: string, readonly code?: number) {
9
+ super(message);
10
+ }
11
11
  }
@@ -0,0 +1,33 @@
1
+ import { DeprecationError } from "./errors";
2
+ import type { Argv, ArgumentsCamelCase } from "yargs";
3
+
4
+ interface GenerateArgs {
5
+ name: string;
6
+ template: string;
7
+ }
8
+
9
+ export function generateOptions(yargs: Argv) {
10
+ return yargs
11
+ .positional("name", {
12
+ describe: "Name of the Workers project",
13
+ default: "worker",
14
+ })
15
+ .positional("template", {
16
+ describe: "The URL of a GitHub template",
17
+ default: "https://github.com/cloudflare/worker-template",
18
+ });
19
+ }
20
+
21
+ export function generateHandler(
22
+ generateArgs: ArgumentsCamelCase<GenerateArgs>
23
+ ) {
24
+ // "👯 [DEPRECATED]. Scaffold a Cloudflare Workers project from a public GitHub repository.",
25
+ throw new DeprecationError(
26
+ "`wrangler generate` has been deprecated.\n" +
27
+ "Try running `wrangler init` to generate a basic Worker, or cloning the template repository instead:\n\n" +
28
+ "```\n" +
29
+ `git clone ${generateArgs.template}\n` +
30
+ "```\n\n" +
31
+ "Please refer to https://developers.cloudflare.com/workers/wrangler/deprecations/#generate for more information."
32
+ );
33
+ }