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.
- package/README.md +7 -1
- package/bin/wrangler.js +111 -57
- package/miniflare-dist/index.mjs +9 -2
- package/package.json +156 -154
- package/src/__tests__/config-cache-without-cache-dir.test.ts +38 -0
- package/src/__tests__/config-cache.test.ts +30 -24
- package/src/__tests__/configuration.test.ts +3935 -3476
- package/src/__tests__/dev.test.tsx +1128 -979
- package/src/__tests__/guess-worker-format.test.ts +68 -68
- package/src/__tests__/helpers/cmd-shim.d.ts +6 -6
- package/src/__tests__/helpers/faye-websocket.d.ts +4 -4
- package/src/__tests__/helpers/mock-account-id.ts +24 -24
- package/src/__tests__/helpers/mock-bin.ts +20 -20
- package/src/__tests__/helpers/mock-cfetch.ts +92 -92
- package/src/__tests__/helpers/mock-console.ts +49 -39
- package/src/__tests__/helpers/mock-dialogs.ts +94 -71
- package/src/__tests__/helpers/mock-http-server.ts +30 -30
- package/src/__tests__/helpers/mock-istty.ts +65 -18
- package/src/__tests__/helpers/mock-kv.ts +26 -26
- package/src/__tests__/helpers/mock-oauth-flow.ts +223 -228
- package/src/__tests__/helpers/mock-process.ts +39 -0
- package/src/__tests__/helpers/mock-stdin.ts +82 -77
- package/src/__tests__/helpers/mock-web-socket.ts +21 -21
- package/src/__tests__/helpers/run-in-tmp.ts +27 -27
- package/src/__tests__/helpers/run-wrangler.ts +8 -8
- package/src/__tests__/helpers/write-worker-source.ts +16 -16
- package/src/__tests__/helpers/write-wrangler-toml.ts +9 -9
- package/src/__tests__/https-options.test.ts +104 -104
- package/src/__tests__/index.test.ts +239 -234
- package/src/__tests__/init.test.ts +1605 -1250
- package/src/__tests__/jest.setup.ts +63 -33
- package/src/__tests__/kv.test.ts +1128 -1011
- package/src/__tests__/logger.test.ts +100 -74
- package/src/__tests__/package-manager.test.ts +303 -303
- package/src/__tests__/pages.test.ts +1152 -652
- package/src/__tests__/parse.test.ts +252 -252
- package/src/__tests__/publish.test.ts +6371 -5622
- package/src/__tests__/pubsub.test.ts +367 -0
- package/src/__tests__/r2.test.ts +133 -133
- package/src/__tests__/route.test.ts +18 -18
- package/src/__tests__/secret.test.ts +382 -377
- package/src/__tests__/tail.test.ts +530 -530
- package/src/__tests__/user.test.ts +123 -111
- package/src/__tests__/whoami.test.tsx +198 -117
- package/src/__tests__/worker-namespace.test.ts +327 -0
- package/src/abort.d.ts +1 -1
- package/src/api/dev.ts +49 -0
- package/src/api/index.ts +1 -0
- package/src/bundle-reporter.tsx +29 -0
- package/src/bundle.ts +157 -149
- package/src/cfetch/index.ts +80 -80
- package/src/cfetch/internal.ts +90 -83
- package/src/cli.ts +21 -7
- package/src/config/config.ts +204 -195
- package/src/config/diagnostics.ts +61 -61
- package/src/config/environment.ts +390 -357
- package/src/config/index.ts +206 -193
- package/src/config/validation-helpers.ts +366 -366
- package/src/config/validation.ts +1573 -1376
- package/src/config-cache.ts +79 -41
- package/src/create-worker-preview.ts +206 -136
- package/src/create-worker-upload-form.ts +247 -238
- package/src/dev/dev-vars.ts +13 -13
- package/src/dev/dev.tsx +329 -307
- package/src/dev/local.tsx +304 -275
- package/src/dev/remote.tsx +366 -224
- package/src/dev/use-esbuild.ts +126 -91
- package/src/dev.tsx +538 -0
- package/src/dialogs.tsx +97 -97
- package/src/durable.ts +87 -87
- package/src/entry.ts +234 -228
- package/src/environment-variables.ts +23 -23
- package/src/errors.ts +6 -6
- package/src/generate.ts +33 -0
- package/src/git-client.ts +42 -0
- package/src/https-options.ts +79 -79
- package/src/index.tsx +1775 -2763
- package/src/init.ts +549 -0
- package/src/inspect.ts +593 -593
- package/src/intl-polyfill.d.ts +123 -123
- package/src/is-interactive.ts +12 -0
- package/src/kv.ts +277 -277
- package/src/logger.ts +46 -39
- package/src/miniflare-cli/enum-keys.ts +8 -8
- package/src/miniflare-cli/index.ts +42 -31
- package/src/miniflare-cli/request-context.ts +18 -18
- package/src/module-collection.ts +212 -212
- package/src/open-in-browser.ts +4 -6
- package/src/package-manager.ts +123 -123
- package/src/pages/build.tsx +202 -0
- package/src/pages/constants.ts +7 -0
- package/src/pages/deployments.tsx +101 -0
- package/src/pages/dev.tsx +964 -0
- package/src/pages/functions/buildPlugin.ts +105 -0
- package/src/pages/functions/buildWorker.ts +151 -0
- package/{pages → src/pages}/functions/filepath-routing.test.ts +113 -113
- package/src/pages/functions/filepath-routing.ts +189 -0
- package/src/pages/functions/identifiers.ts +78 -0
- package/src/pages/functions/routes.ts +151 -0
- package/src/pages/index.tsx +84 -0
- package/src/pages/projects.tsx +157 -0
- package/src/pages/publish.tsx +335 -0
- package/src/pages/types.ts +40 -0
- package/src/pages/upload.tsx +384 -0
- package/src/pages/utils.ts +12 -0
- package/src/parse.ts +202 -138
- package/src/paths.ts +6 -6
- package/src/preview.ts +31 -0
- package/src/proxy.ts +400 -402
- package/src/publish.ts +667 -621
- package/src/pubsub/index.ts +286 -0
- package/src/pubsub/pubsub-commands.tsx +577 -0
- package/src/r2.ts +19 -19
- package/src/selfsigned.d.ts +23 -23
- package/src/sites.tsx +271 -225
- package/src/tail/filters.ts +108 -108
- package/src/tail/index.ts +217 -217
- package/src/tail/printing.ts +45 -45
- package/src/update-check.ts +11 -11
- package/src/user/choose-account.tsx +60 -0
- package/src/user/env-vars.ts +46 -0
- package/src/user/generate-auth-url.ts +33 -0
- package/src/user/generate-random-state.ts +16 -0
- package/src/user/index.ts +3 -0
- package/src/user/user.tsx +1161 -0
- package/src/whoami.tsx +61 -42
- package/src/worker-namespace.ts +190 -0
- package/src/worker.ts +110 -100
- package/src/zones.ts +39 -36
- package/templates/checked-fetch.js +17 -0
- package/templates/new-worker-scheduled.js +3 -3
- package/templates/new-worker-scheduled.ts +15 -15
- package/templates/new-worker.js +3 -3
- package/templates/new-worker.ts +15 -15
- package/templates/no-op-worker.js +10 -0
- package/templates/pages-template-plugin.ts +155 -0
- package/templates/pages-template-worker.ts +161 -0
- package/templates/static-asset-facade.js +31 -31
- package/templates/tsconfig.json +95 -95
- package/wrangler-dist/cli.js +55383 -54138
- package/pages/functions/buildPlugin.ts +0 -105
- package/pages/functions/buildWorker.ts +0 -151
- package/pages/functions/filepath-routing.ts +0 -189
- package/pages/functions/identifiers.ts +0 -78
- package/pages/functions/routes.ts +0 -156
- package/pages/functions/template-plugin.ts +0 -147
- package/pages/functions/template-worker.ts +0 -143
- package/src/pages.tsx +0 -2093
- 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
|
-
|
|
9
|
-
|
|
8
|
+
extends EnvironmentInheritable,
|
|
9
|
+
EnvironmentNonInheritable {}
|
|
10
10
|
|
|
11
11
|
export type SimpleRoute = string;
|
|
12
12
|
export type ZoneIdRoute = {
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
13
|
+
pattern: string;
|
|
14
|
+
zone_id: string;
|
|
15
|
+
custom_domain?: boolean;
|
|
16
16
|
};
|
|
17
17
|
export type ZoneNameRoute = {
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
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
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
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
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
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
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
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
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
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
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
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
|
-
|
|
408
|
-
|
|
409
|
-
|
|
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
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
449
|
+
| "ESModule"
|
|
450
|
+
| "CommonJS"
|
|
451
|
+
| "CompiledWasm"
|
|
452
|
+
| "Text"
|
|
453
|
+
| "Data";
|