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
package/src/parse.ts
CHANGED
|
@@ -5,96 +5,96 @@ import { formatMessagesSync } from "esbuild";
|
|
|
5
5
|
import { logger } from "./logger";
|
|
6
6
|
|
|
7
7
|
export type Message = {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
8
|
+
text: string;
|
|
9
|
+
location?: Location;
|
|
10
|
+
notes?: Message[];
|
|
11
|
+
kind?: "warning" | "error";
|
|
12
12
|
};
|
|
13
13
|
|
|
14
14
|
export type Location = File & {
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
15
|
+
line: number;
|
|
16
|
+
column: number;
|
|
17
|
+
length?: number;
|
|
18
|
+
lineText?: string;
|
|
19
|
+
suggestion?: string;
|
|
20
20
|
};
|
|
21
21
|
|
|
22
22
|
export type File = {
|
|
23
|
-
|
|
24
|
-
|
|
23
|
+
file?: string;
|
|
24
|
+
fileText?: string;
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
28
|
* Formats a `Message` using esbuild's pretty-printing algorithm.
|
|
29
29
|
*/
|
|
30
30
|
export function formatMessage(
|
|
31
|
-
|
|
32
|
-
|
|
31
|
+
{ text, notes, location, kind = "error" }: Message,
|
|
32
|
+
color = true
|
|
33
33
|
): string {
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
34
|
+
const input = { text, notes, location };
|
|
35
|
+
delete input.location?.fileText;
|
|
36
|
+
for (const note of notes ?? []) {
|
|
37
|
+
delete note.location?.fileText;
|
|
38
|
+
}
|
|
39
|
+
const lines = formatMessagesSync([input], {
|
|
40
|
+
color,
|
|
41
|
+
kind: kind,
|
|
42
|
+
terminalWidth: logger.columns,
|
|
43
|
+
});
|
|
44
|
+
return lines.join("\n");
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
48
|
* An error that's thrown when something fails to parse.
|
|
49
49
|
*/
|
|
50
50
|
export class ParseError extends Error implements Message {
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
51
|
+
readonly text: string;
|
|
52
|
+
readonly notes: Message[];
|
|
53
|
+
readonly location?: Location;
|
|
54
|
+
readonly kind: "warning" | "error";
|
|
55
|
+
|
|
56
|
+
constructor({ text, notes, location, kind }: Message) {
|
|
57
|
+
super(text);
|
|
58
|
+
this.name = this.constructor.name;
|
|
59
|
+
this.text = text;
|
|
60
|
+
this.notes = notes ?? [];
|
|
61
|
+
this.location = location;
|
|
62
|
+
this.kind = kind ?? "error";
|
|
63
|
+
}
|
|
64
64
|
}
|
|
65
65
|
|
|
66
66
|
const TOML_ERROR_NAME = "TomlError";
|
|
67
67
|
const TOML_ERROR_SUFFIX = " at row ";
|
|
68
68
|
|
|
69
69
|
type TomlError = Error & {
|
|
70
|
-
|
|
71
|
-
|
|
70
|
+
line: number;
|
|
71
|
+
col: number;
|
|
72
72
|
};
|
|
73
73
|
|
|
74
74
|
/**
|
|
75
75
|
* A wrapper around `TOML.parse` that throws a `ParseError`.
|
|
76
76
|
*/
|
|
77
77
|
export function parseTOML(input: string, file?: string): TOML.JsonMap | never {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
78
|
+
try {
|
|
79
|
+
// Normalize CRLF to LF to avoid hitting https://github.com/iarna/iarna-toml/issues/33.
|
|
80
|
+
const normalizedInput = input.replace(/\r\n/g, "\n");
|
|
81
|
+
return TOML.parse(normalizedInput);
|
|
82
|
+
} catch (err) {
|
|
83
|
+
const { name, message, line, col } = err as TomlError;
|
|
84
|
+
if (name !== TOML_ERROR_NAME) {
|
|
85
|
+
throw err;
|
|
86
|
+
}
|
|
87
|
+
const text = message.substring(0, message.lastIndexOf(TOML_ERROR_SUFFIX));
|
|
88
|
+
const lineText = input.split("\n")[line];
|
|
89
|
+
const location = {
|
|
90
|
+
lineText,
|
|
91
|
+
line: line + 1,
|
|
92
|
+
column: col - 1,
|
|
93
|
+
file,
|
|
94
|
+
fileText: input,
|
|
95
|
+
};
|
|
96
|
+
throw new ParseError({ text, location });
|
|
97
|
+
}
|
|
98
98
|
}
|
|
99
99
|
|
|
100
100
|
const JSON_ERROR_SUFFIX = " in JSON at position ";
|
|
@@ -103,120 +103,184 @@ const JSON_ERROR_SUFFIX = " in JSON at position ";
|
|
|
103
103
|
* A minimal type describing a package.json file.
|
|
104
104
|
*/
|
|
105
105
|
export type PackageJSON = {
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
106
|
+
devDependencies?: Record<string, unknown>;
|
|
107
|
+
dependencies?: Record<string, unknown>;
|
|
108
|
+
scripts?: Record<string, unknown>;
|
|
109
109
|
};
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
112
|
* A typed version of `parseJSON()`.
|
|
113
113
|
*/
|
|
114
114
|
export function parsePackageJSON<T extends PackageJSON = PackageJSON>(
|
|
115
|
-
|
|
116
|
-
|
|
115
|
+
input: string,
|
|
116
|
+
file?: string
|
|
117
117
|
): T {
|
|
118
|
-
|
|
118
|
+
return parseJSON<T>(input, file);
|
|
119
119
|
}
|
|
120
120
|
|
|
121
121
|
/**
|
|
122
122
|
* A wrapper around `JSON.parse` that throws a `ParseError`.
|
|
123
123
|
*/
|
|
124
124
|
export function parseJSON<T>(input: string, file?: string): T {
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
125
|
+
try {
|
|
126
|
+
return JSON.parse(input);
|
|
127
|
+
} catch (err) {
|
|
128
|
+
const { message } = err as Error;
|
|
129
|
+
const index = message.lastIndexOf(JSON_ERROR_SUFFIX);
|
|
130
|
+
if (index < 0) {
|
|
131
|
+
throw err;
|
|
132
|
+
}
|
|
133
|
+
const text = message.substring(0, index);
|
|
134
|
+
const position = parseInt(
|
|
135
|
+
message.substring(index + JSON_ERROR_SUFFIX.length)
|
|
136
|
+
);
|
|
137
|
+
const location = indexLocation({ file, fileText: input }, position);
|
|
138
|
+
throw new ParseError({ text, location });
|
|
139
|
+
}
|
|
140
140
|
}
|
|
141
141
|
|
|
142
142
|
/**
|
|
143
143
|
* Reads a file into a node Buffer.
|
|
144
144
|
*/
|
|
145
145
|
export function readFileSyncToBuffer(file: string): Buffer {
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
146
|
+
try {
|
|
147
|
+
return fs.readFileSync(file);
|
|
148
|
+
} catch (err) {
|
|
149
|
+
const { message } = err as Error;
|
|
150
|
+
throw new ParseError({
|
|
151
|
+
text: `Could not read file: ${file}`,
|
|
152
|
+
notes: [
|
|
153
|
+
{
|
|
154
|
+
text: message.replace(file, resolve(file)),
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
});
|
|
158
|
+
}
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
/**
|
|
162
162
|
* Reads a file and parses it based on its type.
|
|
163
163
|
*/
|
|
164
164
|
export function readFileSync(file: string): string {
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
165
|
+
try {
|
|
166
|
+
return fs.readFileSync(file, { encoding: "utf-8" });
|
|
167
|
+
} catch (err) {
|
|
168
|
+
const { message } = err as Error;
|
|
169
|
+
throw new ParseError({
|
|
170
|
+
text: `Could not read file: ${file}`,
|
|
171
|
+
notes: [
|
|
172
|
+
{
|
|
173
|
+
text: message.replace(file, resolve(file)),
|
|
174
|
+
},
|
|
175
|
+
],
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
178
|
}
|
|
179
179
|
|
|
180
180
|
/**
|
|
181
181
|
* Calculates the line and column location from an index.
|
|
182
182
|
*/
|
|
183
183
|
export function indexLocation(file: File, index: number): Location {
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
184
|
+
let lineText,
|
|
185
|
+
line = 0,
|
|
186
|
+
column = 0,
|
|
187
|
+
cursor = 0;
|
|
188
|
+
const { fileText = "" } = file;
|
|
189
|
+
for (const row of fileText.split("\n")) {
|
|
190
|
+
line++;
|
|
191
|
+
cursor += row.length + 1;
|
|
192
|
+
if (cursor >= index) {
|
|
193
|
+
lineText = row;
|
|
194
|
+
column = row.length - (cursor - index);
|
|
195
|
+
break;
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
return { lineText, line, column, ...file };
|
|
199
199
|
}
|
|
200
200
|
|
|
201
201
|
/**
|
|
202
202
|
* Guesses the line and column location of a search query.
|
|
203
203
|
*/
|
|
204
204
|
export function searchLocation(file: File, query: unknown): Location {
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
205
|
+
let lineText,
|
|
206
|
+
length,
|
|
207
|
+
line = 0,
|
|
208
|
+
column = 0;
|
|
209
|
+
const queryText = String(query);
|
|
210
|
+
const { fileText = "" } = file;
|
|
211
|
+
for (const content of fileText.split("\n")) {
|
|
212
|
+
line++;
|
|
213
|
+
const index = content.indexOf(queryText);
|
|
214
|
+
if (index >= 0) {
|
|
215
|
+
lineText = content;
|
|
216
|
+
column = index;
|
|
217
|
+
length = queryText.length;
|
|
218
|
+
break;
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
return { lineText, line, column, length, ...file };
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
const units = {
|
|
225
|
+
nanoseconds: 0.000000001,
|
|
226
|
+
nanosecond: 0.000000001,
|
|
227
|
+
microseconds: 0.000001,
|
|
228
|
+
microsecond: 0.000001,
|
|
229
|
+
milliseconds: 0.001,
|
|
230
|
+
millisecond: 0.001,
|
|
231
|
+
seconds: 1,
|
|
232
|
+
second: 1,
|
|
233
|
+
minutes: 60,
|
|
234
|
+
minute: 60,
|
|
235
|
+
hours: 3600,
|
|
236
|
+
hour: 3600,
|
|
237
|
+
days: 86400,
|
|
238
|
+
day: 86400,
|
|
239
|
+
weeks: 604800,
|
|
240
|
+
week: 604800,
|
|
241
|
+
month: 18144000,
|
|
242
|
+
year: 220752000,
|
|
243
|
+
|
|
244
|
+
nsecs: 0.000000001,
|
|
245
|
+
nsec: 0.000000001,
|
|
246
|
+
usecs: 0.000001,
|
|
247
|
+
usec: 0.000001,
|
|
248
|
+
msecs: 0.001,
|
|
249
|
+
msec: 0.001,
|
|
250
|
+
secs: 1,
|
|
251
|
+
sec: 1,
|
|
252
|
+
mins: 60,
|
|
253
|
+
min: 60,
|
|
254
|
+
|
|
255
|
+
ns: 0.000000001,
|
|
256
|
+
us: 0.000001,
|
|
257
|
+
ms: 0.001,
|
|
258
|
+
mo: 18144000,
|
|
259
|
+
yr: 220752000,
|
|
260
|
+
|
|
261
|
+
s: 1,
|
|
262
|
+
m: 60,
|
|
263
|
+
h: 3600,
|
|
264
|
+
d: 86400,
|
|
265
|
+
w: 604800,
|
|
266
|
+
y: 220752000,
|
|
267
|
+
};
|
|
268
|
+
|
|
269
|
+
/**
|
|
270
|
+
* Parse a human-readable time duration in seconds (including fractional)
|
|
271
|
+
*
|
|
272
|
+
* Invalid values will return NaN
|
|
273
|
+
*/
|
|
274
|
+
export function parseHumanDuration(s: string): number {
|
|
275
|
+
const unitsMap = new Map(Object.entries(units));
|
|
276
|
+
s = s.trim().toLowerCase();
|
|
277
|
+
let base = 1;
|
|
278
|
+
for (const [name, _] of unitsMap) {
|
|
279
|
+
if (s.endsWith(name)) {
|
|
280
|
+
s = s.substring(0, s.length - name.length);
|
|
281
|
+
base = unitsMap.get(name) || 1;
|
|
282
|
+
break;
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
return Number(s) * base;
|
|
222
286
|
}
|
package/src/paths.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { assert } from "console";
|
|
2
2
|
|
|
3
3
|
type DiscriminatedPath<Discriminator extends string> = string & {
|
|
4
|
-
|
|
4
|
+
_discriminator: Discriminator;
|
|
5
5
|
};
|
|
6
6
|
|
|
7
7
|
/**
|
|
@@ -18,9 +18,9 @@ export type UrlPath = DiscriminatedPath<"UrlPath">;
|
|
|
18
18
|
* Replaces all back-slashes with forward-slashes, and throws an error if the path contains a drive letter (e.g. `C:`).
|
|
19
19
|
*/
|
|
20
20
|
export function toUrlPath(path: string): UrlPath {
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
21
|
+
assert(
|
|
22
|
+
!/^[a-z]:/i.test(path),
|
|
23
|
+
"Tried to convert a Windows file path with a drive to a URL path."
|
|
24
|
+
);
|
|
25
|
+
return path.replace(/\\/g, "/") as UrlPath;
|
|
26
26
|
}
|
package/src/preview.ts
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import { DeprecationError } from "./errors";
|
|
2
|
+
import type { Argv } from "yargs";
|
|
3
|
+
|
|
4
|
+
export function previewOptions(yargs: Argv) {
|
|
5
|
+
return yargs
|
|
6
|
+
.positional("method", {
|
|
7
|
+
type: "string",
|
|
8
|
+
describe: "Type of request to preview your worker",
|
|
9
|
+
})
|
|
10
|
+
.positional("body", {
|
|
11
|
+
type: "string",
|
|
12
|
+
describe: "Body string to post to your preview worker request.",
|
|
13
|
+
})
|
|
14
|
+
.option("env", {
|
|
15
|
+
type: "string",
|
|
16
|
+
requiresArg: true,
|
|
17
|
+
describe: "Perform on a specific environment",
|
|
18
|
+
})
|
|
19
|
+
.option("watch", {
|
|
20
|
+
default: true,
|
|
21
|
+
describe: "Enable live preview",
|
|
22
|
+
type: "boolean",
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export function previewHandler() {
|
|
27
|
+
throw new DeprecationError(
|
|
28
|
+
"The `wrangler preview` command has been deprecated.\n" +
|
|
29
|
+
"Try using `wrangler dev` to to try out a worker during development.\n"
|
|
30
|
+
);
|
|
31
|
+
}
|