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
@@ -6,50 +6,50 @@ import type { CfWorkerInit } from "../worker";
6
6
  import type { Config, RawConfig } from "./config";
7
7
 
8
8
  export type {
9
- Config,
10
- RawConfig,
11
- ConfigFields,
12
- DevConfig,
13
- RawDevConfig,
9
+ Config,
10
+ RawConfig,
11
+ ConfigFields,
12
+ DevConfig,
13
+ RawDevConfig,
14
14
  } from "./config";
15
15
  export type {
16
- Environment,
17
- RawEnvironment,
18
- ConfigModuleRuleType,
16
+ Environment,
17
+ RawEnvironment,
18
+ ConfigModuleRuleType,
19
19
  } from "./environment";
20
20
 
21
21
  /**
22
22
  * Get the Wrangler configuration; read it from the give `configPath` if available.
23
23
  */
24
24
  export function readConfig(
25
- configPath: string | undefined,
26
- args: unknown
25
+ configPath: string | undefined,
26
+ args: unknown
27
27
  ): Config {
28
- let rawConfig: RawConfig = {};
29
- if (!configPath) {
30
- configPath = findWranglerToml();
31
- }
32
-
33
- // Load the configuration from disk if available
34
- if (configPath) {
35
- rawConfig = parseTOML(readFileSync(configPath), configPath);
36
- }
37
-
38
- // Process the top-level configuration.
39
- const { config, diagnostics } = normalizeAndValidateConfig(
40
- rawConfig,
41
- configPath,
42
- args
43
- );
44
-
45
- if (diagnostics.hasWarnings()) {
46
- logger.warn(diagnostics.renderWarnings());
47
- }
48
- if (diagnostics.hasErrors()) {
49
- throw new Error(diagnostics.renderErrors());
50
- }
51
-
52
- return config;
28
+ let rawConfig: RawConfig = {};
29
+ if (!configPath) {
30
+ configPath = findWranglerToml();
31
+ }
32
+
33
+ // Load the configuration from disk if available
34
+ if (configPath) {
35
+ rawConfig = parseTOML(readFileSync(configPath), configPath);
36
+ }
37
+
38
+ // Process the top-level configuration.
39
+ const { config, diagnostics } = normalizeAndValidateConfig(
40
+ rawConfig,
41
+ configPath,
42
+ args
43
+ );
44
+
45
+ if (diagnostics.hasWarnings()) {
46
+ logger.warn(diagnostics.renderWarnings());
47
+ }
48
+ if (diagnostics.hasErrors()) {
49
+ throw new Error(diagnostics.renderErrors());
50
+ }
51
+
52
+ return config;
53
53
  }
54
54
 
55
55
  /**
@@ -57,169 +57,182 @@ export function readConfig(
57
57
  * from the current working directory.
58
58
  */
59
59
  export function findWranglerToml(
60
- referencePath: string = process.cwd()
60
+ referencePath: string = process.cwd()
61
61
  ): string | undefined {
62
- const configPath = findUpSync("wrangler.toml", { cwd: referencePath });
63
- return configPath;
62
+ const configPath = findUpSync("wrangler.toml", { cwd: referencePath });
63
+ return configPath;
64
64
  }
65
65
 
66
66
  /**
67
67
  * Print all the bindings a worker using a given config would have access to
68
68
  */
69
69
  export function printBindings(bindings: CfWorkerInit["bindings"]) {
70
- const truncate = (item: string | Record<string, unknown>) => {
71
- const s = typeof item === "string" ? item : JSON.stringify(item);
72
- const maxLength = 40;
73
- if (s.length < maxLength) {
74
- return s;
75
- }
76
-
77
- return `${s.substring(0, maxLength - 3)}...`;
78
- };
79
-
80
- const output: { type: string; entries: { key: string; value: string }[] }[] =
81
- [];
82
-
83
- const {
84
- data_blobs,
85
- durable_objects,
86
- kv_namespaces,
87
- r2_buckets,
88
- services,
89
- text_blobs,
90
- unsafe,
91
- vars,
92
- wasm_modules,
93
- } = bindings;
94
-
95
- if (data_blobs !== undefined && Object.keys(data_blobs).length > 0) {
96
- output.push({
97
- type: "Data Blobs",
98
- entries: Object.entries(data_blobs).map(([key, value]) => ({
99
- key,
100
- value: truncate(value),
101
- })),
102
- });
103
- }
104
-
105
- if (durable_objects !== undefined && durable_objects.bindings.length > 0) {
106
- output.push({
107
- type: "Durable Objects",
108
- entries: durable_objects.bindings.map(
109
- ({ name, class_name, script_name, environment }) => {
110
- let value = class_name;
111
- if (script_name) {
112
- value += ` (defined in ${script_name})`;
113
- }
114
- if (environment) {
115
- value += ` - ${environment}`;
116
- }
117
-
118
- return {
119
- key: name,
120
- value,
121
- };
122
- }
123
- ),
124
- });
125
- }
126
-
127
- if (kv_namespaces !== undefined && kv_namespaces.length > 0) {
128
- output.push({
129
- type: "KV Namespaces",
130
- entries: kv_namespaces.map(({ binding, id }) => {
131
- return {
132
- key: binding,
133
- value: id,
134
- };
135
- }),
136
- });
137
- }
138
-
139
- if (r2_buckets !== undefined && r2_buckets.length > 0) {
140
- output.push({
141
- type: "R2 Buckets",
142
- entries: r2_buckets.map(({ binding, bucket_name }) => {
143
- return {
144
- key: binding,
145
- value: bucket_name,
146
- };
147
- }),
148
- });
149
- }
150
-
151
- if (services !== undefined && services.length > 0) {
152
- output.push({
153
- type: "Services",
154
- entries: services.map(({ binding, service, environment }) => {
155
- let value = service;
156
- if (environment) {
157
- value += ` - ${environment}`;
158
- }
159
-
160
- return {
161
- key: binding,
162
- value,
163
- };
164
- }),
165
- });
166
- }
167
-
168
- if (text_blobs !== undefined && Object.keys(text_blobs).length > 0) {
169
- output.push({
170
- type: "Text Blobs",
171
- entries: Object.entries(text_blobs).map(([key, value]) => ({
172
- key,
173
- value: truncate(value),
174
- })),
175
- });
176
- }
177
-
178
- if (unsafe !== undefined && unsafe.length > 0) {
179
- output.push({
180
- type: "Unsafe",
181
- entries: unsafe.map(({ name, type }) => ({
182
- key: type,
183
- value: name,
184
- })),
185
- });
186
- }
187
-
188
- if (vars !== undefined && Object.keys(vars).length > 0) {
189
- output.push({
190
- type: "Vars",
191
- entries: Object.entries(vars).map(([key, value]) => ({
192
- key,
193
- value: `"${truncate(`${value}`)}"`,
194
- })),
195
- });
196
- }
197
-
198
- if (wasm_modules !== undefined && Object.keys(wasm_modules).length > 0) {
199
- output.push({
200
- type: "Wasm Modules",
201
- entries: Object.entries(wasm_modules).map(([key, value]) => ({
202
- key,
203
- value: truncate(value),
204
- })),
205
- });
206
- }
207
-
208
- if (output.length === 0) {
209
- return;
210
- }
211
-
212
- const message = [
213
- `Your worker has access to the following bindings:`,
214
- ...output
215
- .map((bindingGroup) => {
216
- return [
217
- `- ${bindingGroup.type}:`,
218
- bindingGroup.entries.map(({ key, value }) => ` - ${key}: ${value}`),
219
- ];
220
- })
221
- .flat(2),
222
- ].join("\n");
223
-
224
- logger.log(message);
70
+ const truncate = (item: string | Record<string, unknown>) => {
71
+ const s = typeof item === "string" ? item : JSON.stringify(item);
72
+ const maxLength = 40;
73
+ if (s.length < maxLength) {
74
+ return s;
75
+ }
76
+
77
+ return `${s.substring(0, maxLength - 3)}...`;
78
+ };
79
+
80
+ const output: { type: string; entries: { key: string; value: string }[] }[] =
81
+ [];
82
+
83
+ const {
84
+ data_blobs,
85
+ durable_objects,
86
+ kv_namespaces,
87
+ r2_buckets,
88
+ services,
89
+ text_blobs,
90
+ unsafe,
91
+ vars,
92
+ wasm_modules,
93
+ worker_namespaces,
94
+ } = bindings;
95
+
96
+ if (data_blobs !== undefined && Object.keys(data_blobs).length > 0) {
97
+ output.push({
98
+ type: "Data Blobs",
99
+ entries: Object.entries(data_blobs).map(([key, value]) => ({
100
+ key,
101
+ value: truncate(value),
102
+ })),
103
+ });
104
+ }
105
+
106
+ if (durable_objects !== undefined && durable_objects.bindings.length > 0) {
107
+ output.push({
108
+ type: "Durable Objects",
109
+ entries: durable_objects.bindings.map(
110
+ ({ name, class_name, script_name, environment }) => {
111
+ let value = class_name;
112
+ if (script_name) {
113
+ value += ` (defined in ${script_name})`;
114
+ }
115
+ if (environment) {
116
+ value += ` - ${environment}`;
117
+ }
118
+
119
+ return {
120
+ key: name,
121
+ value,
122
+ };
123
+ }
124
+ ),
125
+ });
126
+ }
127
+
128
+ if (kv_namespaces !== undefined && kv_namespaces.length > 0) {
129
+ output.push({
130
+ type: "KV Namespaces",
131
+ entries: kv_namespaces.map(({ binding, id }) => {
132
+ return {
133
+ key: binding,
134
+ value: id,
135
+ };
136
+ }),
137
+ });
138
+ }
139
+
140
+ if (r2_buckets !== undefined && r2_buckets.length > 0) {
141
+ output.push({
142
+ type: "R2 Buckets",
143
+ entries: r2_buckets.map(({ binding, bucket_name }) => {
144
+ return {
145
+ key: binding,
146
+ value: bucket_name,
147
+ };
148
+ }),
149
+ });
150
+ }
151
+
152
+ if (services !== undefined && services.length > 0) {
153
+ output.push({
154
+ type: "Services",
155
+ entries: services.map(({ binding, service, environment }) => {
156
+ let value = service;
157
+ if (environment) {
158
+ value += ` - ${environment}`;
159
+ }
160
+
161
+ return {
162
+ key: binding,
163
+ value,
164
+ };
165
+ }),
166
+ });
167
+ }
168
+
169
+ if (text_blobs !== undefined && Object.keys(text_blobs).length > 0) {
170
+ output.push({
171
+ type: "Text Blobs",
172
+ entries: Object.entries(text_blobs).map(([key, value]) => ({
173
+ key,
174
+ value: truncate(value),
175
+ })),
176
+ });
177
+ }
178
+
179
+ if (unsafe !== undefined && unsafe.length > 0) {
180
+ output.push({
181
+ type: "Unsafe",
182
+ entries: unsafe.map(({ name, type }) => ({
183
+ key: type,
184
+ value: name,
185
+ })),
186
+ });
187
+ }
188
+
189
+ if (vars !== undefined && Object.keys(vars).length > 0) {
190
+ output.push({
191
+ type: "Vars",
192
+ entries: Object.entries(vars).map(([key, value]) => ({
193
+ key,
194
+ value: `"${truncate(`${value}`)}"`,
195
+ })),
196
+ });
197
+ }
198
+
199
+ if (wasm_modules !== undefined && Object.keys(wasm_modules).length > 0) {
200
+ output.push({
201
+ type: "Wasm Modules",
202
+ entries: Object.entries(wasm_modules).map(([key, value]) => ({
203
+ key,
204
+ value: truncate(value),
205
+ })),
206
+ });
207
+ }
208
+
209
+ if (worker_namespaces !== undefined && worker_namespaces.length > 0) {
210
+ output.push({
211
+ type: "Worker Namespaces",
212
+ entries: worker_namespaces.map(({ binding, namespace }) => {
213
+ return {
214
+ key: binding,
215
+ value: namespace,
216
+ };
217
+ }),
218
+ });
219
+ }
220
+
221
+ if (output.length === 0) {
222
+ return;
223
+ }
224
+
225
+ const message = [
226
+ `Your worker has access to the following bindings:`,
227
+ ...output
228
+ .map((bindingGroup) => {
229
+ return [
230
+ `- ${bindingGroup.type}:`,
231
+ bindingGroup.entries.map(({ key, value }) => ` - ${key}: ${value}`),
232
+ ];
233
+ })
234
+ .flat(2),
235
+ ].join("\n");
236
+
237
+ logger.log(message);
225
238
  }