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
@@ -5,202 +5,225 @@
5
5
  * This could be the top-level default environment, or a specific named environment.
6
6
  */
7
7
  export interface Environment
8
- extends EnvironmentInheritable,
9
- EnvironmentNonInheritable {}
8
+ extends EnvironmentInheritable,
9
+ EnvironmentNonInheritable {}
10
10
 
11
11
  export type SimpleRoute = string;
12
12
  export type ZoneIdRoute = {
13
- pattern: string;
14
- zone_id: string;
15
- custom_domain?: boolean;
13
+ pattern: string;
14
+ zone_id: string;
15
+ custom_domain?: boolean;
16
16
  };
17
17
  export type ZoneNameRoute = {
18
- pattern: string;
19
- zone_name: string;
20
- custom_domain?: boolean;
18
+ pattern: string;
19
+ zone_name: string;
20
+ custom_domain?: boolean;
21
21
  };
22
22
  export type CustomDomainRoute = { pattern: string; custom_domain: boolean };
23
23
  export type Route =
24
- | SimpleRoute
25
- | ZoneIdRoute
26
- | ZoneNameRoute
27
- | CustomDomainRoute;
24
+ | SimpleRoute
25
+ | ZoneIdRoute
26
+ | ZoneNameRoute
27
+ | CustomDomainRoute;
28
28
 
29
29
  /**
30
30
  * The `EnvironmentInheritable` interface declares all the configuration fields for an environment
31
31
  * that can be inherited (and overridden) from the top-level environment.
32
32
  */
33
33
  interface EnvironmentInheritable {
34
- /**
35
- * The name of your worker. Alphanumeric + dashes only.
36
- *
37
- * @inheritable
38
- */
39
- name: string | undefined;
40
-
41
- /**
42
- * This is the ID of the account associated with your zone.
43
- * You might have more than one account, so make sure to use
44
- * the ID of the account associated with the zone/route you
45
- * provide, if you provide one. It can also be specified through
46
- * the CLOUDFLARE_ACCOUNT_ID environment variable.
47
- *
48
- * @inheritable
49
- */
50
- account_id: string | undefined;
51
-
52
- /**
53
- * A date in the form yyyy-mm-dd, which will be used to determine
54
- * which version of the Workers runtime is used.
55
- *
56
- * More details at https://developers.cloudflare.com/workers/platform/compatibility-dates
57
- *
58
- * @inheritable
59
- */
60
- compatibility_date: string | undefined;
61
-
62
- /**
63
- * A list of flags that enable features from upcoming features of
64
- * the Workers runtime, usually used together with compatibility_flags.
65
- *
66
- * More details at https://developers.cloudflare.com/workers/platform/compatibility-dates
67
- *
68
- * @inheritable
69
- */
70
- compatibility_flags: string[];
71
-
72
- /**
73
- * The entrypoint/path to the JavaScript file that will be executed.
74
- */
75
- main: string | undefined;
76
-
77
- /**
78
- * Whether we use <name>.<subdomain>.workers.dev to
79
- * test and deploy your worker.
80
- *
81
- * @default `true` (This is a breaking change from wrangler 1)
82
- * @breaking
83
- * @inheritable
84
- */
85
- workers_dev: boolean | undefined;
86
-
87
- /**
88
- * A list of routes that your worker should be published to.
89
- * Only one of `routes` or `route` is required.
90
- *
91
- * Only required when workers_dev is false, and there's no scheduled worker (see `triggers`)
92
- *
93
- * @inheritable
94
- */
95
- routes: Route[] | undefined;
96
-
97
- /**
98
- * A route that your worker should be published to. Literally
99
- * the same as routes, but only one.
100
- * Only one of `routes` or `route` is required.
101
- *
102
- * Only required when workers_dev is false, and there's no scheduled worker
103
- *
104
- * @inheritable
105
- */
106
- route: Route | undefined;
107
-
108
- /**
109
- * Path to a custom tsconfig
110
- */
111
- tsconfig: string | undefined;
112
-
113
- /**
114
- * The function to use to replace jsx syntax.
115
- *
116
- * @default `"React.createElement"`
117
- * @inheritable
118
- */
119
- jsx_factory: string;
120
-
121
- /**
122
- * The function to use to replace jsx fragment syntax.
123
- *
124
- * @default `"React.Fragment"`
125
- * @inheritable
126
- */
127
- jsx_fragment: string;
128
-
129
- /**
130
- * "Cron" definitions to trigger a worker's "scheduled" function.
131
- *
132
- * Lets you call workers periodically, much like a cron job.
133
- *
134
- * More details here https://developers.cloudflare.com/workers/platform/cron-triggers
135
- *
136
- * @default `{crons:[]}`
137
- * @inheritable
138
- */
139
- triggers: { crons: string[] };
140
-
141
- /**
142
- * Specifies the Usage Model for your Worker. There are two options -
143
- * [bundled](https://developers.cloudflare.com/workers/platform/limits#bundled-usage-model) and
144
- * [unbound](https://developers.cloudflare.com/workers/platform/limits#unbound-usage-model).
145
- * For newly created Workers, if the Usage Model is omitted
146
- * it will be set to the [default Usage Model set on the account](https://dash.cloudflare.com/?account=workers/default-usage-model).
147
- * For existing Workers, if the Usage Model is omitted, it will be
148
- * set to the Usage Model configured in the dashboard for that Worker.
149
- *
150
- * @inheritable
151
- */
152
- usage_model: "bundled" | "unbound" | undefined;
153
-
154
- /**
155
- * An ordered list of rules that define which modules to import,
156
- * and what type to import them as. You will need to specify rules
157
- * to use Text, Data, and CompiledWasm modules, or when you wish to
158
- * have a .js file be treated as an ESModule instead of CommonJS.
159
- *
160
- * @inheritable
161
- */
162
- rules: Rule[];
163
-
164
- /**
165
- * Configures a custom build step to be run by Wrangler when building your Worker.
166
- *
167
- * Refer to the [custom builds documentation](https://developers.cloudflare.com/workers/cli-wrangler/configuration#build)
168
- * for more details.
169
- *
170
- * @default {}
171
- */
172
- build: {
173
- /** The command used to build your Worker. On Linux and macOS, the command is executed in the `sh` shell and the `cmd` shell for Windows. The `&&` and `||` shell operators may be used. */
174
- command?: string;
175
- /** The directory in which the command is executed. */
176
- cwd?: string;
177
- /** The directory to watch for changes while using wrangler dev, defaults to the current working directory */
178
- watch_dir?: string | string[];
179
- /**
180
- * Deprecated field previously used to configure the build and upload of the script.
181
- * @deprecated
182
- */
183
- upload?: DeprecatedUpload;
184
- };
185
-
186
- /**
187
- * Minify the script before uploading.
188
- * @inheritable
189
- */
190
- minify: boolean | undefined;
191
-
192
- /**
193
- * Add polyfills for node builtin modules and globals
194
- */
195
- node_compat: boolean | undefined;
196
-
197
- /**
198
- * TODO: remove this as it has been deprecated.
199
- *
200
- * This is just here for now because the `route` commands use it.
201
- * So we need to include it in this type so it is available.
202
- */
203
- zone_id?: string;
34
+ /**
35
+ * The name of your worker. Alphanumeric + dashes only.
36
+ *
37
+ * @inheritable
38
+ */
39
+ name: string | undefined;
40
+
41
+ /**
42
+ * This is the ID of the account associated with your zone.
43
+ * You might have more than one account, so make sure to use
44
+ * the ID of the account associated with the zone/route you
45
+ * provide, if you provide one. It can also be specified through
46
+ * the CLOUDFLARE_ACCOUNT_ID environment variable.
47
+ *
48
+ * @inheritable
49
+ */
50
+ account_id: string | undefined;
51
+
52
+ /**
53
+ * A date in the form yyyy-mm-dd, which will be used to determine
54
+ * which version of the Workers runtime is used.
55
+ *
56
+ * More details at https://developers.cloudflare.com/workers/platform/compatibility-dates
57
+ *
58
+ * @inheritable
59
+ */
60
+ compatibility_date: string | undefined;
61
+
62
+ /**
63
+ * A list of flags that enable features from upcoming features of
64
+ * the Workers runtime, usually used together with compatibility_flags.
65
+ *
66
+ * More details at https://developers.cloudflare.com/workers/platform/compatibility-dates
67
+ *
68
+ * @inheritable
69
+ */
70
+ compatibility_flags: string[];
71
+
72
+ /**
73
+ * The entrypoint/path to the JavaScript file that will be executed.
74
+ */
75
+ main: string | undefined;
76
+
77
+ /**
78
+ * Whether we use <name>.<subdomain>.workers.dev to
79
+ * test and deploy your worker.
80
+ *
81
+ * @default `true` (This is a breaking change from wrangler 1)
82
+ * @breaking
83
+ * @inheritable
84
+ */
85
+ workers_dev: boolean | undefined;
86
+
87
+ /**
88
+ * A list of routes that your worker should be published to.
89
+ * Only one of `routes` or `route` is required.
90
+ *
91
+ * Only required when workers_dev is false, and there's no scheduled worker (see `triggers`)
92
+ *
93
+ * @inheritable
94
+ */
95
+ routes: Route[] | undefined;
96
+
97
+ /**
98
+ * A route that your worker should be published to. Literally
99
+ * the same as routes, but only one.
100
+ * Only one of `routes` or `route` is required.
101
+ *
102
+ * Only required when workers_dev is false, and there's no scheduled worker
103
+ *
104
+ * @inheritable
105
+ */
106
+ route: Route | undefined;
107
+
108
+ /**
109
+ * Path to a custom tsconfig
110
+ */
111
+ tsconfig: string | undefined;
112
+
113
+ /**
114
+ * The function to use to replace jsx syntax.
115
+ *
116
+ * @default `"React.createElement"`
117
+ * @inheritable
118
+ */
119
+ jsx_factory: string;
120
+
121
+ /**
122
+ * The function to use to replace jsx fragment syntax.
123
+ *
124
+ * @default `"React.Fragment"`
125
+ * @inheritable
126
+ */
127
+ jsx_fragment: string;
128
+
129
+ /**
130
+ * "Cron" definitions to trigger a worker's "scheduled" function.
131
+ *
132
+ * Lets you call workers periodically, much like a cron job.
133
+ *
134
+ * More details here https://developers.cloudflare.com/workers/platform/cron-triggers
135
+ *
136
+ * @default `{crons:[]}`
137
+ * @inheritable
138
+ */
139
+ triggers: { crons: string[] };
140
+
141
+ /**
142
+ * Specifies the Usage Model for your Worker. There are two options -
143
+ * [bundled](https://developers.cloudflare.com/workers/platform/limits#bundled-usage-model) and
144
+ * [unbound](https://developers.cloudflare.com/workers/platform/limits#unbound-usage-model).
145
+ * For newly created Workers, if the Usage Model is omitted
146
+ * it will be set to the [default Usage Model set on the account](https://dash.cloudflare.com/?account=workers/default-usage-model).
147
+ * For existing Workers, if the Usage Model is omitted, it will be
148
+ * set to the Usage Model configured in the dashboard for that Worker.
149
+ *
150
+ * @inheritable
151
+ */
152
+ usage_model: "bundled" | "unbound" | undefined;
153
+
154
+ /**
155
+ * An ordered list of rules that define which modules to import,
156
+ * and what type to import them as. You will need to specify rules
157
+ * to use Text, Data, and CompiledWasm modules, or when you wish to
158
+ * have a .js file be treated as an ESModule instead of CommonJS.
159
+ *
160
+ * @inheritable
161
+ */
162
+ rules: Rule[];
163
+
164
+ /**
165
+ * Configures a custom build step to be run by Wrangler when building your Worker.
166
+ *
167
+ * Refer to the [custom builds documentation](https://developers.cloudflare.com/workers/cli-wrangler/configuration#build)
168
+ * for more details.
169
+ *
170
+ * @default {}
171
+ */
172
+ build: {
173
+ /** The command used to build your Worker. On Linux and macOS, the command is executed in the `sh` shell and the `cmd` shell for Windows. The `&&` and `||` shell operators may be used. */
174
+ command?: string;
175
+ /** The directory in which the command is executed. */
176
+ cwd?: string;
177
+ /** The directory to watch for changes while using wrangler dev, defaults to the current working directory */
178
+ watch_dir?: string | string[];
179
+ /**
180
+ * Deprecated field previously used to configure the build and upload of the script.
181
+ * @deprecated
182
+ */
183
+ upload?: DeprecatedUpload;
184
+ };
185
+
186
+ /**
187
+ * Skip internal build steps and directly publish script
188
+ * @inheritable
189
+ */
190
+ no_bundle: boolean | undefined;
191
+
192
+ /**
193
+ * Minify the script before uploading.
194
+ * @inheritable
195
+ */
196
+ minify: boolean | undefined;
197
+
198
+ /**
199
+ * Add polyfills for node builtin modules and globals
200
+ * @inheritable
201
+ */
202
+ node_compat: boolean | undefined;
203
+
204
+ /**
205
+ * Specifies namespace bindings that are bound to this Worker environment.
206
+ *
207
+ * NOTE: This field is not automatically inherited from the top level environment,
208
+ * and so must be specified in every named environment.
209
+ *
210
+ * @default `[]`
211
+ * @nonInheritable
212
+ */
213
+ worker_namespaces: {
214
+ /** The binding name used to refer to the bound service. */
215
+ binding: string;
216
+ /** The namespace to bind to. */
217
+ namespace: string;
218
+ }[];
219
+
220
+ /**
221
+ * TODO: remove this as it has been deprecated.
222
+ *
223
+ * This is just here for now because the `route` commands use it.
224
+ * So we need to include it in this type so it is available.
225
+ */
226
+ zone_id?: string;
204
227
  }
205
228
 
206
229
  /**
@@ -211,185 +234,195 @@ interface EnvironmentInheritable {
211
234
  * for each named environment.
212
235
  */
213
236
  interface EnvironmentNonInheritable {
214
- /**
215
- * A map of environment variables to set when deploying your worker.
216
- *
217
- * NOTE: This field is not automatically inherited from the top level environment,
218
- * and so must be specified in every named environment.
219
- *
220
- * @default `{}`
221
- * @nonInheritable
222
- */
223
- vars: { [key: string]: unknown };
224
-
225
- /**
226
- * A list of durable objects that your worker should be bound to.
227
- *
228
- * For more information about Durable Objects, see the documentation at
229
- * https://developers.cloudflare.com/workers/learning/using-durable-objects
230
- *
231
- * NOTE: This field is not automatically inherited from the top level environment,
232
- * and so must be specified in every named environment.
233
- *
234
- * @default `{bindings:[]}`
235
- * @nonInheritable
236
- */
237
- durable_objects: {
238
- bindings: {
239
- /** The name of the binding used to refer to the Durable Object */
240
- name: string;
241
- /** The exported class name of the Durable Object */
242
- class_name: string;
243
- /** The script where the Durable Object is defined (if it's external to this worker) */
244
- script_name?: string;
245
- /** The service environment of the script_name to bind to */
246
- environment?: string;
247
- }[];
248
- };
249
-
250
- /**
251
- * These specify any Workers KV Namespaces you want to
252
- * access from inside your Worker.
253
- *
254
- * To learn more about KV Namespaces,
255
- * see the documentation at https://developers.cloudflare.com/workers/learning/how-kv-works
256
- *
257
- * NOTE: This field is not automatically inherited from the top level environment,
258
- * and so must be specified in every named environment.
259
- *
260
- * @default `[]`
261
- * @nonInheritable
262
- */
263
- kv_namespaces: {
264
- /** The binding name used to refer to the KV Namespace */
265
- binding: string;
266
- /** The ID of the KV namespace */
267
- id: string;
268
- /** The ID of the KV namespace used during `wrangler dev` */
269
- preview_id?: string;
270
- }[];
271
-
272
- /**
273
- * Specifies R2 buckets that are bound to this Worker environment.
274
- *
275
- * NOTE: This field is not automatically inherited from the top level environment,
276
- * and so must be specified in every named environment.
277
- *
278
- * @default `[]`
279
- * @nonInheritable
280
- */
281
- r2_buckets: {
282
- /** The binding name used to refer to the R2 bucket in the worker. */
283
- binding: string;
284
- /** The name of this R2 bucket at the edge. */
285
- bucket_name: string;
286
- /** The preview name of this R2 bucket at the edge. */
287
- preview_bucket_name?: string;
288
- }[];
289
-
290
- /**
291
- * Specifies service bindings (worker-to-worker) that are bound to this Worker environment.
292
- *
293
- * NOTE: This field is not automatically inherited from the top level environment,
294
- * and so must be specified in every named environment.
295
- *
296
- * @default `[]`
297
- * @nonInheritable
298
- */
299
- services: {
300
- /** The binding name used to refer to the bound service. */
301
- binding: string;
302
- /** The name of the service. */
303
- service: string;
304
- /** The environment of the service (e.g. production, staging, etc). */
305
- environment?: string;
306
- }[];
307
-
308
- /**
309
- * "Unsafe" tables for features that aren't directly supported by wrangler.
310
- *
311
- * NOTE: This field is not automatically inherited from the top level environment,
312
- * and so must be specified in every named environment.
313
- *
314
- * @default `{ bindings: [] }`
315
- * @nonInheritable
316
- */
317
- unsafe: {
318
- /**
319
- * A set of bindings that should be put into a Worker's upload metadata without changes. These
320
- * can be used to implement bindings for features that haven't released and aren't supported
321
- * directly by wrangler or miniflare.
322
- *
323
- * @default []
324
- */
325
- bindings: {
326
- name: string;
327
- type: string;
328
- [key: string]: unknown;
329
- }[];
330
- };
237
+ /**
238
+ * A map of values to substitute when deploying your worker.
239
+ *
240
+ * NOTE: This field is not automatically inherited from the top level environment,
241
+ * and so must be specified in every named environment.
242
+ *
243
+ * @default `{}`
244
+ * @nonInheritable
245
+ */
246
+ define: Record<string, string>;
247
+ /**
248
+ * A map of environment variables to set when deploying your worker.
249
+ *
250
+ * NOTE: This field is not automatically inherited from the top level environment,
251
+ * and so must be specified in every named environment.
252
+ *
253
+ * @default `{}`
254
+ * @nonInheritable
255
+ */
256
+ vars: { [key: string]: unknown };
257
+
258
+ /**
259
+ * A list of durable objects that your worker should be bound to.
260
+ *
261
+ * For more information about Durable Objects, see the documentation at
262
+ * https://developers.cloudflare.com/workers/learning/using-durable-objects
263
+ *
264
+ * NOTE: This field is not automatically inherited from the top level environment,
265
+ * and so must be specified in every named environment.
266
+ *
267
+ * @default `{bindings:[]}`
268
+ * @nonInheritable
269
+ */
270
+ durable_objects: {
271
+ bindings: {
272
+ /** The name of the binding used to refer to the Durable Object */
273
+ name: string;
274
+ /** The exported class name of the Durable Object */
275
+ class_name: string;
276
+ /** The script where the Durable Object is defined (if it's external to this worker) */
277
+ script_name?: string;
278
+ /** The service environment of the script_name to bind to */
279
+ environment?: string;
280
+ }[];
281
+ };
282
+
283
+ /**
284
+ * These specify any Workers KV Namespaces you want to
285
+ * access from inside your Worker.
286
+ *
287
+ * To learn more about KV Namespaces,
288
+ * see the documentation at https://developers.cloudflare.com/workers/learning/how-kv-works
289
+ *
290
+ * NOTE: This field is not automatically inherited from the top level environment,
291
+ * and so must be specified in every named environment.
292
+ *
293
+ * @default `[]`
294
+ * @nonInheritable
295
+ */
296
+ kv_namespaces: {
297
+ /** The binding name used to refer to the KV Namespace */
298
+ binding: string;
299
+ /** The ID of the KV namespace */
300
+ id: string;
301
+ /** The ID of the KV namespace used during `wrangler dev` */
302
+ preview_id?: string;
303
+ }[];
304
+
305
+ /**
306
+ * Specifies R2 buckets that are bound to this Worker environment.
307
+ *
308
+ * NOTE: This field is not automatically inherited from the top level environment,
309
+ * and so must be specified in every named environment.
310
+ *
311
+ * @default `[]`
312
+ * @nonInheritable
313
+ */
314
+ r2_buckets: {
315
+ /** The binding name used to refer to the R2 bucket in the worker. */
316
+ binding: string;
317
+ /** The name of this R2 bucket at the edge. */
318
+ bucket_name: string;
319
+ /** The preview name of this R2 bucket at the edge. */
320
+ preview_bucket_name?: string;
321
+ }[];
322
+
323
+ /**
324
+ * Specifies service bindings (worker-to-worker) that are bound to this Worker environment.
325
+ *
326
+ * NOTE: This field is not automatically inherited from the top level environment,
327
+ * and so must be specified in every named environment.
328
+ *
329
+ * @default `[]`
330
+ * @nonInheritable
331
+ */
332
+ services: {
333
+ /** The binding name used to refer to the bound service. */
334
+ binding: string;
335
+ /** The name of the service. */
336
+ service: string;
337
+ /** The environment of the service (e.g. production, staging, etc). */
338
+ environment?: string;
339
+ }[];
340
+
341
+ /**
342
+ * "Unsafe" tables for features that aren't directly supported by wrangler.
343
+ *
344
+ * NOTE: This field is not automatically inherited from the top level environment,
345
+ * and so must be specified in every named environment.
346
+ *
347
+ * @default `{ bindings: [] }`
348
+ * @nonInheritable
349
+ */
350
+ unsafe: {
351
+ /**
352
+ * A set of bindings that should be put into a Worker's upload metadata without changes. These
353
+ * can be used to implement bindings for features that haven't released and aren't supported
354
+ * directly by wrangler or miniflare.
355
+ *
356
+ * @default []
357
+ */
358
+ bindings: {
359
+ name: string;
360
+ type: string;
361
+ [key: string]: unknown;
362
+ }[];
363
+ };
331
364
  }
332
365
 
333
366
  /**
334
367
  * The environment configuration properties that have been deprecated.
335
368
  */
336
369
  interface EnvironmentDeprecated {
337
- /**
338
- * The zone ID of the zone you want to deploy to. You can find this
339
- * in your domain page on the dashboard.
340
- *
341
- * @deprecated This is unnecessary since we can deduce this from routes directly.
342
- */
343
- zone_id?: string;
344
-
345
- /**
346
- * A list of services that your worker should be bound to.
347
- *
348
- * @default `[]`
349
- * @deprecated DO NOT USE. We'd added this to test the new service binding system, but the proper way to test experimental features is to use `unsafe.bindings` configuration.
350
- */
351
- experimental_services?: {
352
- /** The binding name used to refer to the Service */
353
- name: string;
354
- /** The name of the Service being bound */
355
- service: string;
356
- /** The Service's environment */
357
- environment: string;
358
- }[];
370
+ /**
371
+ * The zone ID of the zone you want to deploy to. You can find this
372
+ * in your domain page on the dashboard.
373
+ *
374
+ * @deprecated This is unnecessary since we can deduce this from routes directly.
375
+ */
376
+ zone_id?: string;
377
+
378
+ /**
379
+ * A list of services that your worker should be bound to.
380
+ *
381
+ * @default `[]`
382
+ * @deprecated DO NOT USE. We'd added this to test the new service binding system, but the proper way to test experimental features is to use `unsafe.bindings` configuration.
383
+ */
384
+ experimental_services?: {
385
+ /** The binding name used to refer to the Service */
386
+ name: string;
387
+ /** The name of the Service being bound */
388
+ service: string;
389
+ /** The Service's environment */
390
+ environment: string;
391
+ }[];
359
392
  }
360
393
 
361
394
  /**
362
395
  * Deprecated upload configuration.
363
396
  */
364
397
  export interface DeprecatedUpload {
365
- /**
366
- * The format of the Worker script.
367
- *
368
- * @deprecated We infer the format automatically now.
369
- */
370
- format?: "modules" | "service-worker";
371
-
372
- /**
373
- * The directory you wish to upload your worker from,
374
- * relative to the wrangler.toml file.
375
- *
376
- * Defaults to the directory containing the wrangler.toml file.
377
- *
378
- * @deprecated
379
- */
380
- dir?: string;
381
-
382
- /**
383
- * The path to the Worker script, relative to `upload.dir`.
384
- *
385
- * @deprecated This will be replaced by a command line argument.
386
- */
387
- main?: string;
388
-
389
- /**
390
- * @deprecated This is now defined at the top level `rules` field.
391
- */
392
- rules?: Environment["rules"];
398
+ /**
399
+ * The format of the Worker script.
400
+ *
401
+ * @deprecated We infer the format automatically now.
402
+ */
403
+ format?: "modules" | "service-worker";
404
+
405
+ /**
406
+ * The directory you wish to upload your worker from,
407
+ * relative to the wrangler.toml file.
408
+ *
409
+ * Defaults to the directory containing the wrangler.toml file.
410
+ *
411
+ * @deprecated
412
+ */
413
+ dir?: string;
414
+
415
+ /**
416
+ * The path to the Worker script, relative to `upload.dir`.
417
+ *
418
+ * @deprecated This will be replaced by a command line argument.
419
+ */
420
+ main?: string;
421
+
422
+ /**
423
+ * @deprecated This is now defined at the top level `rules` field.
424
+ */
425
+ rules?: Environment["rules"];
393
426
  }
394
427
 
395
428
  /**
@@ -404,17 +437,17 @@ export type RawEnvironment = Partial<Environment> & EnvironmentDeprecated;
404
437
  * A bundling resolver rule, defining the modules type for paths that match the specified globs.
405
438
  */
406
439
  export type Rule = {
407
- type: ConfigModuleRuleType;
408
- globs: string[];
409
- fallthrough?: boolean;
440
+ type: ConfigModuleRuleType;
441
+ globs: string[];
442
+ fallthrough?: boolean;
410
443
  };
411
444
 
412
445
  /**
413
446
  * The possible types for a `Rule`.
414
447
  */
415
448
  export type ConfigModuleRuleType =
416
- | "ESModule"
417
- | "CommonJS"
418
- | "CompiledWasm"
419
- | "Text"
420
- | "Data";
449
+ | "ESModule"
450
+ | "CommonJS"
451
+ | "CompiledWasm"
452
+ | "Text"
453
+ | "Data";