wrangler 3.107.1 → 3.107.3
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/config-schema.json +0 -42
- package/package.json +5 -6
- package/wrangler-dist/cli.d.ts +0 -17
- package/wrangler-dist/cli.js +437 -560
- package/wrangler-dist/cli.js.map +7 -0
package/wrangler-dist/cli.js
CHANGED
@@ -4603,7 +4603,7 @@ var require_file = __commonJS({
|
|
4603
4603
|
var { parseMIMEType, serializeAMimeType } = require_dataURL();
|
4604
4604
|
var { kEnumerableProperty } = require_util();
|
4605
4605
|
var encoder = new TextEncoder();
|
4606
|
-
var
|
4606
|
+
var File7 = class extends Blob6 {
|
4607
4607
|
constructor(fileBits, fileName, options30 = {}) {
|
4608
4608
|
webidl.argumentLengthCheck(arguments, 2, { header: "File constructor" });
|
4609
4609
|
fileBits = webidl.converters["sequence<BlobPart>"](fileBits);
|
@@ -4631,19 +4631,19 @@ var require_file = __commonJS({
|
|
4631
4631
|
};
|
4632
4632
|
}
|
4633
4633
|
get name() {
|
4634
|
-
webidl.brandCheck(this,
|
4634
|
+
webidl.brandCheck(this, File7);
|
4635
4635
|
return this[kState].name;
|
4636
4636
|
}
|
4637
4637
|
get lastModified() {
|
4638
|
-
webidl.brandCheck(this,
|
4638
|
+
webidl.brandCheck(this, File7);
|
4639
4639
|
return this[kState].lastModified;
|
4640
4640
|
}
|
4641
4641
|
get type() {
|
4642
|
-
webidl.brandCheck(this,
|
4642
|
+
webidl.brandCheck(this, File7);
|
4643
4643
|
return this[kState].type;
|
4644
4644
|
}
|
4645
4645
|
};
|
4646
|
-
__name(
|
4646
|
+
__name(File7, "File");
|
4647
4647
|
var FileLike = class {
|
4648
4648
|
constructor(blobLike, fileName, options30 = {}) {
|
4649
4649
|
const n6 = fileName;
|
@@ -4693,7 +4693,7 @@ var require_file = __commonJS({
|
|
4693
4693
|
}
|
4694
4694
|
};
|
4695
4695
|
__name(FileLike, "FileLike");
|
4696
|
-
Object.defineProperties(
|
4696
|
+
Object.defineProperties(File7.prototype, {
|
4697
4697
|
[Symbol.toStringTag]: {
|
4698
4698
|
value: "File",
|
4699
4699
|
configurable: true
|
@@ -4775,10 +4775,10 @@ var require_file = __commonJS({
|
|
4775
4775
|
}
|
4776
4776
|
__name(convertLineEndingsNative, "convertLineEndingsNative");
|
4777
4777
|
function isFileLike(object) {
|
4778
|
-
return NativeFile && object instanceof NativeFile || object instanceof
|
4778
|
+
return NativeFile && object instanceof NativeFile || object instanceof File7 || object && (typeof object.stream === "function" || typeof object.arrayBuffer === "function") && object[Symbol.toStringTag] === "File";
|
4779
4779
|
}
|
4780
4780
|
__name(isFileLike, "isFileLike");
|
4781
|
-
module3.exports = { File:
|
4781
|
+
module3.exports = { File: File7, FileLike, isFileLike };
|
4782
4782
|
}
|
4783
4783
|
});
|
4784
4784
|
|
@@ -4792,7 +4792,7 @@ var require_formdata = __commonJS({
|
|
4792
4792
|
var { File: UndiciFile, FileLike, isFileLike } = require_file();
|
4793
4793
|
var { webidl } = require_webidl();
|
4794
4794
|
var { Blob: Blob6, File: NativeFile } = require("buffer");
|
4795
|
-
var
|
4795
|
+
var File7 = NativeFile ?? UndiciFile;
|
4796
4796
|
var FormData11 = class {
|
4797
4797
|
constructor(form) {
|
4798
4798
|
if (form !== void 0) {
|
@@ -4924,14 +4924,14 @@ var require_formdata = __commonJS({
|
|
4924
4924
|
value = Buffer.from(value).toString("utf8");
|
4925
4925
|
} else {
|
4926
4926
|
if (!isFileLike(value)) {
|
4927
|
-
value = value instanceof Blob6 ? new
|
4927
|
+
value = value instanceof Blob6 ? new File7([value], "blob", { type: value.type }) : new FileLike(value, "blob", { type: value.type });
|
4928
4928
|
}
|
4929
4929
|
if (filename !== void 0) {
|
4930
4930
|
const options30 = {
|
4931
4931
|
type: value.type,
|
4932
4932
|
lastModified: value.lastModified
|
4933
4933
|
};
|
4934
|
-
value = NativeFile && value instanceof NativeFile || value instanceof UndiciFile ? new
|
4934
|
+
value = NativeFile && value instanceof NativeFile || value instanceof UndiciFile ? new File7([value], filename, options30) : new FileLike(value, filename, options30);
|
4935
4935
|
}
|
4936
4936
|
}
|
4937
4937
|
return { name: name2, value };
|
@@ -4968,7 +4968,7 @@ var require_body = __commonJS({
|
|
4968
4968
|
var { File: UndiciFile } = require_file();
|
4969
4969
|
var { parseMIMEType, serializeAMimeType } = require_dataURL();
|
4970
4970
|
var ReadableStream3 = globalThis.ReadableStream;
|
4971
|
-
var
|
4971
|
+
var File7 = NativeFile ?? UndiciFile;
|
4972
4972
|
var textEncoder = new TextEncoder();
|
4973
4973
|
var textDecoder = new TextDecoder();
|
4974
4974
|
function extractBody(object, keepalive = false) {
|
@@ -5209,14 +5209,14 @@ Content-Type: ${value.type || "application/octet-stream"}\r
|
|
5209
5209
|
});
|
5210
5210
|
value.on("end", () => {
|
5211
5211
|
chunks.push(Buffer.from(base64chunk, "base64"));
|
5212
|
-
responseFormData.append(name2, new
|
5212
|
+
responseFormData.append(name2, new File7(chunks, filename, { type: mimeType }));
|
5213
5213
|
});
|
5214
5214
|
} else {
|
5215
5215
|
value.on("data", (chunk) => {
|
5216
5216
|
chunks.push(chunk);
|
5217
5217
|
});
|
5218
5218
|
value.on("end", () => {
|
5219
|
-
responseFormData.append(name2, new
|
5219
|
+
responseFormData.append(name2, new File7(chunks, filename, { type: mimeType }));
|
5220
5220
|
});
|
5221
5221
|
}
|
5222
5222
|
});
|
@@ -11837,11 +11837,11 @@ var require_response = __commonJS({
|
|
11837
11837
|
var { types } = require("util");
|
11838
11838
|
var ReadableStream3 = globalThis.ReadableStream || require("stream/web").ReadableStream;
|
11839
11839
|
var textEncoder = new TextEncoder("utf-8");
|
11840
|
-
var
|
11840
|
+
var Response10 = class {
|
11841
11841
|
// Creates network error Response.
|
11842
11842
|
static error() {
|
11843
11843
|
const relevantRealm = { settingsObject: {} };
|
11844
|
-
const responseObject = new
|
11844
|
+
const responseObject = new Response10();
|
11845
11845
|
responseObject[kState] = makeNetworkError();
|
11846
11846
|
responseObject[kRealm] = relevantRealm;
|
11847
11847
|
responseObject[kHeaders][kHeadersList] = responseObject[kState].headersList;
|
@@ -11860,7 +11860,7 @@ var require_response = __commonJS({
|
|
11860
11860
|
);
|
11861
11861
|
const body = extractBody(bytes);
|
11862
11862
|
const relevantRealm = { settingsObject: {} };
|
11863
|
-
const responseObject = new
|
11863
|
+
const responseObject = new Response10();
|
11864
11864
|
responseObject[kRealm] = relevantRealm;
|
11865
11865
|
responseObject[kHeaders][kGuard] = "response";
|
11866
11866
|
responseObject[kHeaders][kRealm] = relevantRealm;
|
@@ -11884,7 +11884,7 @@ var require_response = __commonJS({
|
|
11884
11884
|
if (!redirectStatusSet.has(status2)) {
|
11885
11885
|
throw new RangeError("Invalid status code " + status2);
|
11886
11886
|
}
|
11887
|
-
const responseObject = new
|
11887
|
+
const responseObject = new Response10();
|
11888
11888
|
responseObject[kRealm] = relevantRealm;
|
11889
11889
|
responseObject[kHeaders][kGuard] = "immutable";
|
11890
11890
|
responseObject[kHeaders][kRealm] = relevantRealm;
|
@@ -11914,12 +11914,12 @@ var require_response = __commonJS({
|
|
11914
11914
|
}
|
11915
11915
|
// Returns response’s type, e.g., "cors".
|
11916
11916
|
get type() {
|
11917
|
-
webidl.brandCheck(this,
|
11917
|
+
webidl.brandCheck(this, Response10);
|
11918
11918
|
return this[kState].type;
|
11919
11919
|
}
|
11920
11920
|
// Returns response’s URL, if it has one; otherwise the empty string.
|
11921
11921
|
get url() {
|
11922
|
-
webidl.brandCheck(this,
|
11922
|
+
webidl.brandCheck(this, Response10);
|
11923
11923
|
const urlList = this[kState].urlList;
|
11924
11924
|
const url4 = urlList[urlList.length - 1] ?? null;
|
11925
11925
|
if (url4 === null) {
|
@@ -11929,40 +11929,40 @@ var require_response = __commonJS({
|
|
11929
11929
|
}
|
11930
11930
|
// Returns whether response was obtained through a redirect.
|
11931
11931
|
get redirected() {
|
11932
|
-
webidl.brandCheck(this,
|
11932
|
+
webidl.brandCheck(this, Response10);
|
11933
11933
|
return this[kState].urlList.length > 1;
|
11934
11934
|
}
|
11935
11935
|
// Returns response’s status.
|
11936
11936
|
get status() {
|
11937
|
-
webidl.brandCheck(this,
|
11937
|
+
webidl.brandCheck(this, Response10);
|
11938
11938
|
return this[kState].status;
|
11939
11939
|
}
|
11940
11940
|
// Returns whether response’s status is an ok status.
|
11941
11941
|
get ok() {
|
11942
|
-
webidl.brandCheck(this,
|
11942
|
+
webidl.brandCheck(this, Response10);
|
11943
11943
|
return this[kState].status >= 200 && this[kState].status <= 299;
|
11944
11944
|
}
|
11945
11945
|
// Returns response’s status message.
|
11946
11946
|
get statusText() {
|
11947
|
-
webidl.brandCheck(this,
|
11947
|
+
webidl.brandCheck(this, Response10);
|
11948
11948
|
return this[kState].statusText;
|
11949
11949
|
}
|
11950
11950
|
// Returns response’s headers as Headers.
|
11951
11951
|
get headers() {
|
11952
|
-
webidl.brandCheck(this,
|
11952
|
+
webidl.brandCheck(this, Response10);
|
11953
11953
|
return this[kHeaders];
|
11954
11954
|
}
|
11955
11955
|
get body() {
|
11956
|
-
webidl.brandCheck(this,
|
11956
|
+
webidl.brandCheck(this, Response10);
|
11957
11957
|
return this[kState].body ? this[kState].body.stream : null;
|
11958
11958
|
}
|
11959
11959
|
get bodyUsed() {
|
11960
|
-
webidl.brandCheck(this,
|
11960
|
+
webidl.brandCheck(this, Response10);
|
11961
11961
|
return !!this[kState].body && util5.isDisturbed(this[kState].body.stream);
|
11962
11962
|
}
|
11963
11963
|
// Returns a clone of response.
|
11964
11964
|
clone() {
|
11965
|
-
webidl.brandCheck(this,
|
11965
|
+
webidl.brandCheck(this, Response10);
|
11966
11966
|
if (this.bodyUsed || this.body && this.body.locked) {
|
11967
11967
|
throw webidl.errors.exception({
|
11968
11968
|
header: "Response.clone",
|
@@ -11970,7 +11970,7 @@ var require_response = __commonJS({
|
|
11970
11970
|
});
|
11971
11971
|
}
|
11972
11972
|
const clonedResponse = cloneResponse(this[kState]);
|
11973
|
-
const clonedResponseObject = new
|
11973
|
+
const clonedResponseObject = new Response10();
|
11974
11974
|
clonedResponseObject[kState] = clonedResponse;
|
11975
11975
|
clonedResponseObject[kRealm] = this[kRealm];
|
11976
11976
|
clonedResponseObject[kHeaders][kHeadersList] = clonedResponse.headersList;
|
@@ -11979,9 +11979,9 @@ var require_response = __commonJS({
|
|
11979
11979
|
return clonedResponseObject;
|
11980
11980
|
}
|
11981
11981
|
};
|
11982
|
-
__name(
|
11983
|
-
mixinBody(
|
11984
|
-
Object.defineProperties(
|
11982
|
+
__name(Response10, "Response");
|
11983
|
+
mixinBody(Response10);
|
11984
|
+
Object.defineProperties(Response10.prototype, {
|
11985
11985
|
type: kEnumerableProperty,
|
11986
11986
|
url: kEnumerableProperty,
|
11987
11987
|
status: kEnumerableProperty,
|
@@ -11997,7 +11997,7 @@ var require_response = __commonJS({
|
|
11997
11997
|
configurable: true
|
11998
11998
|
}
|
11999
11999
|
});
|
12000
|
-
Object.defineProperties(
|
12000
|
+
Object.defineProperties(Response10, {
|
12001
12001
|
json: kEnumerableProperty,
|
12002
12002
|
redirect: kEnumerableProperty,
|
12003
12003
|
error: kEnumerableProperty
|
@@ -12186,7 +12186,7 @@ var require_response = __commonJS({
|
|
12186
12186
|
makeResponse,
|
12187
12187
|
makeAppropriateNetworkError,
|
12188
12188
|
filterResponse,
|
12189
|
-
Response:
|
12189
|
+
Response: Response10,
|
12190
12190
|
cloneResponse
|
12191
12191
|
};
|
12192
12192
|
}
|
@@ -12841,7 +12841,7 @@ var require_fetch = __commonJS({
|
|
12841
12841
|
"use strict";
|
12842
12842
|
init_import_meta_url();
|
12843
12843
|
var {
|
12844
|
-
Response:
|
12844
|
+
Response: Response10,
|
12845
12845
|
makeNetworkError,
|
12846
12846
|
makeAppropriateNetworkError,
|
12847
12847
|
filterResponse,
|
@@ -12982,7 +12982,7 @@ var require_fetch = __commonJS({
|
|
12982
12982
|
);
|
12983
12983
|
return Promise.resolve();
|
12984
12984
|
}
|
12985
|
-
responseObject = new
|
12985
|
+
responseObject = new Response10();
|
12986
12986
|
responseObject[kState] = response;
|
12987
12987
|
responseObject[kRealm] = relevantRealm;
|
12988
12988
|
responseObject[kHeaders][kHeadersList] = response.headersList;
|
@@ -14773,7 +14773,7 @@ var require_cache = __commonJS({
|
|
14773
14773
|
var { kEnumerableProperty, isDisturbed } = require_util();
|
14774
14774
|
var { kHeadersList } = require_symbols();
|
14775
14775
|
var { webidl } = require_webidl();
|
14776
|
-
var { Response:
|
14776
|
+
var { Response: Response10, cloneResponse } = require_response();
|
14777
14777
|
var { Request: Request4 } = require_request2();
|
14778
14778
|
var { kState, kHeaders, kGuard, kRealm } = require_symbols2();
|
14779
14779
|
var { fetching } = require_fetch();
|
@@ -14832,7 +14832,7 @@ var require_cache = __commonJS({
|
|
14832
14832
|
}
|
14833
14833
|
const responseList = [];
|
14834
14834
|
for (const response of responses) {
|
14835
|
-
const responseObject = new
|
14835
|
+
const responseObject = new Response10(response.body?.source ?? null);
|
14836
14836
|
const body = responseObject[kState].body;
|
14837
14837
|
responseObject[kState] = response;
|
14838
14838
|
responseObject[kState].body = body;
|
@@ -15289,7 +15289,7 @@ var require_cache = __commonJS({
|
|
15289
15289
|
converter: webidl.converters.DOMString
|
15290
15290
|
}
|
15291
15291
|
]);
|
15292
|
-
webidl.converters.Response = webidl.interfaceConverter(
|
15292
|
+
webidl.converters.Response = webidl.interfaceConverter(Response10);
|
15293
15293
|
webidl.converters["sequence<RequestInfo>"] = webidl.sequenceConverter(
|
15294
15294
|
webidl.converters.RequestInfo
|
15295
15295
|
);
|
@@ -15468,8 +15468,8 @@ var require_util6 = __commonJS({
|
|
15468
15468
|
}
|
15469
15469
|
}
|
15470
15470
|
__name(validateCookiePath, "validateCookiePath");
|
15471
|
-
function validateCookieDomain(
|
15472
|
-
if (
|
15471
|
+
function validateCookieDomain(domain3) {
|
15472
|
+
if (domain3.startsWith("-") || domain3.endsWith(".") || domain3.endsWith("-")) {
|
15473
15473
|
throw new Error("Invalid cookie domain");
|
15474
15474
|
}
|
15475
15475
|
}
|
@@ -33614,13 +33614,13 @@ var require_extension = __commonJS({
|
|
33614
33614
|
"use strict";
|
33615
33615
|
init_import_meta_url();
|
33616
33616
|
var { tokenChars } = require_validation();
|
33617
|
-
function
|
33617
|
+
function push2(dest, name2, elem) {
|
33618
33618
|
if (dest[name2] === void 0)
|
33619
33619
|
dest[name2] = [elem];
|
33620
33620
|
else
|
33621
33621
|
dest[name2].push(elem);
|
33622
33622
|
}
|
33623
|
-
__name(
|
33623
|
+
__name(push2, "push");
|
33624
33624
|
function parse8(header) {
|
33625
33625
|
const offers = /* @__PURE__ */ Object.create(null);
|
33626
33626
|
let params = /* @__PURE__ */ Object.create(null);
|
@@ -33650,7 +33650,7 @@ var require_extension = __commonJS({
|
|
33650
33650
|
end = i5;
|
33651
33651
|
const name2 = header.slice(start, end);
|
33652
33652
|
if (code === 44) {
|
33653
|
-
|
33653
|
+
push2(offers, name2, params);
|
33654
33654
|
params = /* @__PURE__ */ Object.create(null);
|
33655
33655
|
} else {
|
33656
33656
|
extensionName = name2;
|
@@ -33672,9 +33672,9 @@ var require_extension = __commonJS({
|
|
33672
33672
|
}
|
33673
33673
|
if (end === -1)
|
33674
33674
|
end = i5;
|
33675
|
-
|
33675
|
+
push2(params, header.slice(start, end), true);
|
33676
33676
|
if (code === 44) {
|
33677
|
-
|
33677
|
+
push2(offers, extensionName, params);
|
33678
33678
|
params = /* @__PURE__ */ Object.create(null);
|
33679
33679
|
extensionName = void 0;
|
33680
33680
|
}
|
@@ -33726,9 +33726,9 @@ var require_extension = __commonJS({
|
|
33726
33726
|
value = value.replace(/\\/g, "");
|
33727
33727
|
mustUnescape = false;
|
33728
33728
|
}
|
33729
|
-
|
33729
|
+
push2(params, paramName, value);
|
33730
33730
|
if (code === 44) {
|
33731
|
-
|
33731
|
+
push2(offers, extensionName, params);
|
33732
33732
|
params = /* @__PURE__ */ Object.create(null);
|
33733
33733
|
extensionName = void 0;
|
33734
33734
|
}
|
@@ -33746,16 +33746,16 @@ var require_extension = __commonJS({
|
|
33746
33746
|
end = i5;
|
33747
33747
|
const token = header.slice(start, end);
|
33748
33748
|
if (extensionName === void 0) {
|
33749
|
-
|
33749
|
+
push2(offers, token, params);
|
33750
33750
|
} else {
|
33751
33751
|
if (paramName === void 0) {
|
33752
|
-
|
33752
|
+
push2(params, token, true);
|
33753
33753
|
} else if (mustUnescape) {
|
33754
|
-
|
33754
|
+
push2(params, paramName, token.replace(/\\/g, ""));
|
33755
33755
|
} else {
|
33756
|
-
|
33756
|
+
push2(params, paramName, token);
|
33757
33757
|
}
|
33758
|
-
|
33758
|
+
push2(offers, extensionName, params);
|
33759
33759
|
}
|
33760
33760
|
return offers;
|
33761
33761
|
}
|
@@ -54594,13 +54594,13 @@ var require_cross_spawn = __commonJS({
|
|
54594
54594
|
var cp3 = require("child_process");
|
54595
54595
|
var parse8 = require_parse3();
|
54596
54596
|
var enoent = require_enoent();
|
54597
|
-
function
|
54597
|
+
function spawn3(command2, args, options30) {
|
54598
54598
|
const parsed = parse8(command2, args, options30);
|
54599
54599
|
const spawned = cp3.spawn(parsed.command, parsed.args, parsed.options);
|
54600
54600
|
enoent.hookChildProcess(spawned, parsed);
|
54601
54601
|
return spawned;
|
54602
54602
|
}
|
54603
|
-
__name(
|
54603
|
+
__name(spawn3, "spawn");
|
54604
54604
|
function spawnSync3(command2, args, options30) {
|
54605
54605
|
const parsed = parse8(command2, args, options30);
|
54606
54606
|
const result = cp3.spawnSync(parsed.command, parsed.args, parsed.options);
|
@@ -54608,8 +54608,8 @@ var require_cross_spawn = __commonJS({
|
|
54608
54608
|
return result;
|
54609
54609
|
}
|
54610
54610
|
__name(spawnSync3, "spawnSync");
|
54611
|
-
module3.exports =
|
54612
|
-
module3.exports.spawn =
|
54611
|
+
module3.exports = spawn3;
|
54612
|
+
module3.exports.spawn = spawn3;
|
54613
54613
|
module3.exports.sync = spawnSync3;
|
54614
54614
|
module3.exports._parse = parse8;
|
54615
54615
|
module3.exports._enoent = enoent;
|
@@ -59664,7 +59664,7 @@ var require_parse4 = __commonJS({
|
|
59664
59664
|
state2[type]--;
|
59665
59665
|
stack.pop();
|
59666
59666
|
}, "decrement");
|
59667
|
-
const
|
59667
|
+
const push2 = /* @__PURE__ */ __name((tok) => {
|
59668
59668
|
if (prev.type === "globstar") {
|
59669
59669
|
const isBrace = state2.braces > 0 && (tok.type === "comma" || tok.type === "brace");
|
59670
59670
|
const isExtglob = tok.extglob === true || extglobs.length && (tok.type === "pipe" || tok.type === "paren");
|
@@ -59697,8 +59697,8 @@ var require_parse4 = __commonJS({
|
|
59697
59697
|
token.output = state2.output;
|
59698
59698
|
const output = (opts.capture ? "(" : "") + token.open;
|
59699
59699
|
increment2("parens");
|
59700
|
-
|
59701
|
-
|
59700
|
+
push2({ type, value: value2, output: state2.output ? "" : ONE_CHAR });
|
59701
|
+
push2({ type: "paren", extglob: true, value: advance(), output });
|
59702
59702
|
extglobs.push(token);
|
59703
59703
|
}, "extglobOpen");
|
59704
59704
|
const extglobClose = /* @__PURE__ */ __name((token) => {
|
@@ -59720,7 +59720,7 @@ var require_parse4 = __commonJS({
|
|
59720
59720
|
state2.negatedExtglob = true;
|
59721
59721
|
}
|
59722
59722
|
}
|
59723
|
-
|
59723
|
+
push2({ type: "paren", extglob: true, value, output });
|
59724
59724
|
decrement("parens");
|
59725
59725
|
}, "extglobClose");
|
59726
59726
|
if (opts.fastpaths !== false && !/(^[*!]|[/()[\]{}"])/.test(input)) {
|
@@ -59781,7 +59781,7 @@ var require_parse4 = __commonJS({
|
|
59781
59781
|
}
|
59782
59782
|
if (!next) {
|
59783
59783
|
value += "\\";
|
59784
|
-
|
59784
|
+
push2({ type: "text", value });
|
59785
59785
|
continue;
|
59786
59786
|
}
|
59787
59787
|
const match2 = /^\\+/.exec(remaining());
|
@@ -59799,7 +59799,7 @@ var require_parse4 = __commonJS({
|
|
59799
59799
|
value += advance();
|
59800
59800
|
}
|
59801
59801
|
if (state2.brackets === 0) {
|
59802
|
-
|
59802
|
+
push2({ type: "text", value });
|
59803
59803
|
continue;
|
59804
59804
|
}
|
59805
59805
|
}
|
@@ -59847,13 +59847,13 @@ var require_parse4 = __commonJS({
|
|
59847
59847
|
if (value === '"') {
|
59848
59848
|
state2.quotes = state2.quotes === 1 ? 0 : 1;
|
59849
59849
|
if (opts.keepQuotes === true) {
|
59850
|
-
|
59850
|
+
push2({ type: "text", value });
|
59851
59851
|
}
|
59852
59852
|
continue;
|
59853
59853
|
}
|
59854
59854
|
if (value === "(") {
|
59855
59855
|
increment2("parens");
|
59856
|
-
|
59856
|
+
push2({ type: "paren", value });
|
59857
59857
|
continue;
|
59858
59858
|
}
|
59859
59859
|
if (value === ")") {
|
@@ -59865,7 +59865,7 @@ var require_parse4 = __commonJS({
|
|
59865
59865
|
extglobClose(extglobs.pop());
|
59866
59866
|
continue;
|
59867
59867
|
}
|
59868
|
-
|
59868
|
+
push2({ type: "paren", value, output: state2.parens ? ")" : "\\)" });
|
59869
59869
|
decrement("parens");
|
59870
59870
|
continue;
|
59871
59871
|
}
|
@@ -59878,19 +59878,19 @@ var require_parse4 = __commonJS({
|
|
59878
59878
|
} else {
|
59879
59879
|
increment2("brackets");
|
59880
59880
|
}
|
59881
|
-
|
59881
|
+
push2({ type: "bracket", value });
|
59882
59882
|
continue;
|
59883
59883
|
}
|
59884
59884
|
if (value === "]") {
|
59885
59885
|
if (opts.nobracket === true || prev && prev.type === "bracket" && prev.value.length === 1) {
|
59886
|
-
|
59886
|
+
push2({ type: "text", value, output: `\\${value}` });
|
59887
59887
|
continue;
|
59888
59888
|
}
|
59889
59889
|
if (state2.brackets === 0) {
|
59890
59890
|
if (opts.strictBrackets === true) {
|
59891
59891
|
throw new SyntaxError(syntaxError("opening", "["));
|
59892
59892
|
}
|
59893
|
-
|
59893
|
+
push2({ type: "text", value, output: `\\${value}` });
|
59894
59894
|
continue;
|
59895
59895
|
}
|
59896
59896
|
decrement("brackets");
|
@@ -59924,13 +59924,13 @@ var require_parse4 = __commonJS({
|
|
59924
59924
|
tokensIndex: state2.tokens.length
|
59925
59925
|
};
|
59926
59926
|
braces.push(open4);
|
59927
|
-
|
59927
|
+
push2(open4);
|
59928
59928
|
continue;
|
59929
59929
|
}
|
59930
59930
|
if (value === "}") {
|
59931
59931
|
const brace = braces[braces.length - 1];
|
59932
59932
|
if (opts.nobrace === true || !brace) {
|
59933
|
-
|
59933
|
+
push2({ type: "text", value, output: value });
|
59934
59934
|
continue;
|
59935
59935
|
}
|
59936
59936
|
let output = ")";
|
@@ -59959,7 +59959,7 @@ var require_parse4 = __commonJS({
|
|
59959
59959
|
state2.output += t7.output || t7.value;
|
59960
59960
|
}
|
59961
59961
|
}
|
59962
|
-
|
59962
|
+
push2({ type: "brace", value, output });
|
59963
59963
|
decrement("braces");
|
59964
59964
|
braces.pop();
|
59965
59965
|
continue;
|
@@ -59968,7 +59968,7 @@ var require_parse4 = __commonJS({
|
|
59968
59968
|
if (extglobs.length > 0) {
|
59969
59969
|
extglobs[extglobs.length - 1].conditions++;
|
59970
59970
|
}
|
59971
|
-
|
59971
|
+
push2({ type: "text", value });
|
59972
59972
|
continue;
|
59973
59973
|
}
|
59974
59974
|
if (value === ",") {
|
@@ -59978,7 +59978,7 @@ var require_parse4 = __commonJS({
|
|
59978
59978
|
brace.comma = true;
|
59979
59979
|
output = "|";
|
59980
59980
|
}
|
59981
|
-
|
59981
|
+
push2({ type: "comma", value, output });
|
59982
59982
|
continue;
|
59983
59983
|
}
|
59984
59984
|
if (value === "/") {
|
@@ -59990,7 +59990,7 @@ var require_parse4 = __commonJS({
|
|
59990
59990
|
prev = bos;
|
59991
59991
|
continue;
|
59992
59992
|
}
|
59993
|
-
|
59993
|
+
push2({ type: "slash", value, output: SLASH_LITERAL });
|
59994
59994
|
continue;
|
59995
59995
|
}
|
59996
59996
|
if (value === ".") {
|
@@ -60005,10 +60005,10 @@ var require_parse4 = __commonJS({
|
|
60005
60005
|
continue;
|
60006
60006
|
}
|
60007
60007
|
if (state2.braces + state2.parens === 0 && prev.type !== "bos" && prev.type !== "slash") {
|
60008
|
-
|
60008
|
+
push2({ type: "text", value, output: DOT_LITERAL });
|
60009
60009
|
continue;
|
60010
60010
|
}
|
60011
|
-
|
60011
|
+
push2({ type: "dot", value, output: DOT_LITERAL });
|
60012
60012
|
continue;
|
60013
60013
|
}
|
60014
60014
|
if (value === "?") {
|
@@ -60026,14 +60026,14 @@ var require_parse4 = __commonJS({
|
|
60026
60026
|
if (prev.value === "(" && !/[!=<:]/.test(next) || next === "<" && !/<([!=]|\w+>)/.test(remaining())) {
|
60027
60027
|
output = `\\${value}`;
|
60028
60028
|
}
|
60029
|
-
|
60029
|
+
push2({ type: "text", value, output });
|
60030
60030
|
continue;
|
60031
60031
|
}
|
60032
60032
|
if (opts.dot !== true && (prev.type === "slash" || prev.type === "bos")) {
|
60033
|
-
|
60033
|
+
push2({ type: "qmark", value, output: QMARK_NO_DOT });
|
60034
60034
|
continue;
|
60035
60035
|
}
|
60036
|
-
|
60036
|
+
push2({ type: "qmark", value, output: QMARK });
|
60037
60037
|
continue;
|
60038
60038
|
}
|
60039
60039
|
if (value === "!") {
|
@@ -60054,22 +60054,22 @@ var require_parse4 = __commonJS({
|
|
60054
60054
|
continue;
|
60055
60055
|
}
|
60056
60056
|
if (prev && prev.value === "(" || opts.regex === false) {
|
60057
|
-
|
60057
|
+
push2({ type: "plus", value, output: PLUS_LITERAL });
|
60058
60058
|
continue;
|
60059
60059
|
}
|
60060
60060
|
if (prev && (prev.type === "bracket" || prev.type === "paren" || prev.type === "brace") || state2.parens > 0) {
|
60061
|
-
|
60061
|
+
push2({ type: "plus", value });
|
60062
60062
|
continue;
|
60063
60063
|
}
|
60064
|
-
|
60064
|
+
push2({ type: "plus", value: PLUS_LITERAL });
|
60065
60065
|
continue;
|
60066
60066
|
}
|
60067
60067
|
if (value === "@") {
|
60068
60068
|
if (opts.noextglob !== true && peek() === "(" && peek(2) !== "?") {
|
60069
|
-
|
60069
|
+
push2({ type: "at", extglob: true, value, output: "" });
|
60070
60070
|
continue;
|
60071
60071
|
}
|
60072
|
-
|
60072
|
+
push2({ type: "text", value });
|
60073
60073
|
continue;
|
60074
60074
|
}
|
60075
60075
|
if (value !== "*") {
|
@@ -60081,7 +60081,7 @@ var require_parse4 = __commonJS({
|
|
60081
60081
|
value += match2[0];
|
60082
60082
|
state2.index += match2[0].length;
|
60083
60083
|
}
|
60084
|
-
|
60084
|
+
push2({ type: "text", value });
|
60085
60085
|
continue;
|
60086
60086
|
}
|
60087
60087
|
if (prev && (prev.type === "globstar" || prev.star === true)) {
|
@@ -60109,13 +60109,13 @@ var require_parse4 = __commonJS({
|
|
60109
60109
|
const isStart = prior.type === "slash" || prior.type === "bos";
|
60110
60110
|
const afterStar = before && (before.type === "star" || before.type === "globstar");
|
60111
60111
|
if (opts.bash === true && (!isStart || rest[0] && rest[0] !== "/")) {
|
60112
|
-
|
60112
|
+
push2({ type: "star", value, output: "" });
|
60113
60113
|
continue;
|
60114
60114
|
}
|
60115
60115
|
const isBrace = state2.braces > 0 && (prior.type === "comma" || prior.type === "brace");
|
60116
60116
|
const isExtglob = extglobs.length && (prior.type === "pipe" || prior.type === "paren");
|
60117
60117
|
if (!isStart && prior.type !== "paren" && !isBrace && !isExtglob) {
|
60118
|
-
|
60118
|
+
push2({ type: "star", value, output: "" });
|
60119
60119
|
continue;
|
60120
60120
|
}
|
60121
60121
|
while (rest.slice(0, 3) === "/**") {
|
@@ -60156,7 +60156,7 @@ var require_parse4 = __commonJS({
|
|
60156
60156
|
state2.output += prior.output + prev.output;
|
60157
60157
|
state2.globstar = true;
|
60158
60158
|
consume(value + advance());
|
60159
|
-
|
60159
|
+
push2({ type: "slash", value: "/", output: "" });
|
60160
60160
|
continue;
|
60161
60161
|
}
|
60162
60162
|
if (prior.type === "bos" && rest[0] === "/") {
|
@@ -60166,7 +60166,7 @@ var require_parse4 = __commonJS({
|
|
60166
60166
|
state2.output = prev.output;
|
60167
60167
|
state2.globstar = true;
|
60168
60168
|
consume(value + advance());
|
60169
|
-
|
60169
|
+
push2({ type: "slash", value: "/", output: "" });
|
60170
60170
|
continue;
|
60171
60171
|
}
|
60172
60172
|
state2.output = state2.output.slice(0, -prev.output.length);
|
@@ -60184,12 +60184,12 @@ var require_parse4 = __commonJS({
|
|
60184
60184
|
if (prev.type === "bos" || prev.type === "slash") {
|
60185
60185
|
token.output = nodot + token.output;
|
60186
60186
|
}
|
60187
|
-
|
60187
|
+
push2(token);
|
60188
60188
|
continue;
|
60189
60189
|
}
|
60190
60190
|
if (prev && (prev.type === "bracket" || prev.type === "paren") && opts.regex === true) {
|
60191
60191
|
token.output = value;
|
60192
|
-
|
60192
|
+
push2(token);
|
60193
60193
|
continue;
|
60194
60194
|
}
|
60195
60195
|
if (state2.index === state2.start || prev.type === "slash" || prev.type === "dot") {
|
@@ -60208,7 +60208,7 @@ var require_parse4 = __commonJS({
|
|
60208
60208
|
prev.output += ONE_CHAR;
|
60209
60209
|
}
|
60210
60210
|
}
|
60211
|
-
|
60211
|
+
push2(token);
|
60212
60212
|
}
|
60213
60213
|
while (state2.brackets > 0) {
|
60214
60214
|
if (opts.strictBrackets === true)
|
@@ -60229,7 +60229,7 @@ var require_parse4 = __commonJS({
|
|
60229
60229
|
decrement("braces");
|
60230
60230
|
}
|
60231
60231
|
if (opts.strictSlashes !== true && (prev.type === "star" || prev.type === "bracket")) {
|
60232
|
-
|
60232
|
+
push2({ type: "maybe_slash", value: "", output: `${SLASH_LITERAL}?` });
|
60233
60233
|
}
|
60234
60234
|
if (state2.backtrack === true) {
|
60235
60235
|
state2.output = "";
|
@@ -71460,7 +71460,7 @@ var require_src5 = __commonJS({
|
|
71460
71460
|
QueueEvent: () => QueueEvent,
|
71461
71461
|
ReloadEvent: () => ReloadEvent,
|
71462
71462
|
Request: () => Request4,
|
71463
|
-
Response: () =>
|
71463
|
+
Response: () => Response10,
|
71464
71464
|
Router: () => Router,
|
71465
71465
|
RouterError: () => RouterError,
|
71466
71466
|
ScheduledController: () => ScheduledController,
|
@@ -72419,14 +72419,14 @@ var require_src5 = __commonJS({
|
|
72419
72419
|
"statusText",
|
72420
72420
|
"status"
|
72421
72421
|
];
|
72422
|
-
var
|
72422
|
+
var Response10 = /* @__PURE__ */ __name(class extends Body {
|
72423
72423
|
static redirect(url4, status2 = 302) {
|
72424
72424
|
const res = import_undici26.Response.redirect(url4, status2);
|
72425
|
-
return new
|
72425
|
+
return new Response10(res.body, res);
|
72426
72426
|
}
|
72427
72427
|
static json(data, init2) {
|
72428
72428
|
const res = import_undici26.Response.json(data, init2);
|
72429
|
-
return new
|
72429
|
+
return new Response10(res.body, res);
|
72430
72430
|
}
|
72431
72431
|
#encodeBody;
|
72432
72432
|
#status;
|
@@ -72446,7 +72446,7 @@ var require_src5 = __commonJS({
|
|
72446
72446
|
if (body instanceof import_web3.ReadableStream && _isByteStream(body)) {
|
72447
72447
|
body = convertToRegularStream(body);
|
72448
72448
|
}
|
72449
|
-
if (init2 instanceof
|
72449
|
+
if (init2 instanceof Response10) {
|
72450
72450
|
encodeBody = init2.#encodeBody;
|
72451
72451
|
status2 = init2.#status;
|
72452
72452
|
webSocket = init2.#webSocket;
|
@@ -72476,7 +72476,7 @@ var require_src5 = __commonJS({
|
|
72476
72476
|
if (contentLength !== void 0) {
|
72477
72477
|
this.headers.set("content-length", contentLength.toString());
|
72478
72478
|
}
|
72479
|
-
makeEnumerable(
|
72479
|
+
makeEnumerable(Response10.prototype, this, enumerableResponseKeys);
|
72480
72480
|
Object.defineProperty(this, kWaitUntil, nonEnumerable);
|
72481
72481
|
}
|
72482
72482
|
clone() {
|
@@ -72485,7 +72485,7 @@ var require_src5 = __commonJS({
|
|
72485
72485
|
}
|
72486
72486
|
const innerClone = this[_kInner].clone();
|
72487
72487
|
this[kBodyStream] = void 0;
|
72488
|
-
const clone = new
|
72488
|
+
const clone = new Response10(innerClone.body, innerClone);
|
72489
72489
|
clone[kInputGated] = this[kInputGated];
|
72490
72490
|
clone[kFormDataFiles] = this[kFormDataFiles];
|
72491
72491
|
clone.#encodeBody = this.#encodeBody;
|
@@ -72527,7 +72527,7 @@ var require_src5 = __commonJS({
|
|
72527
72527
|
}
|
72528
72528
|
}, "Response");
|
72529
72529
|
function withWaitUntil(res, waitUntil) {
|
72530
|
-
const resWaitUntil = res instanceof
|
72530
|
+
const resWaitUntil = res instanceof Response10 ? res : new Response10(res.body, res);
|
72531
72531
|
resWaitUntil[kWaitUntil] = waitUntil;
|
72532
72532
|
return resWaitUntil;
|
72533
72533
|
}
|
@@ -72537,7 +72537,7 @@ var require_src5 = __commonJS({
|
|
72537
72537
|
}
|
72538
72538
|
__name(_getURLList, "_getURLList");
|
72539
72539
|
function _getBodyLength(res) {
|
72540
|
-
if (res instanceof
|
72540
|
+
if (res instanceof Response10)
|
72541
72541
|
res = res[_kInner];
|
72542
72542
|
return res[fetchSymbols.kState]?.body?.length ?? void 0;
|
72543
72543
|
}
|
@@ -72609,7 +72609,7 @@ var require_src5 = __commonJS({
|
|
72609
72609
|
if (urlList)
|
72610
72610
|
ctx.incrementExternalSubrequests(urlList.length - 1);
|
72611
72611
|
}
|
72612
|
-
const res = new
|
72612
|
+
const res = new Response10(nullBodyStatus.includes(baseRes.status) ? null : baseRes.body, baseRes);
|
72613
72613
|
res.headers[fetchSymbols.kGuard] = "immutable";
|
72614
72614
|
await (0, import_shared5.waitForOpenInputGate)();
|
72615
72615
|
ctx?.advanceCurrentTime();
|
@@ -72974,7 +72974,7 @@ ${SUGGEST_GLOBAL_BINDING_MODULES}`);
|
|
72974
72974
|
event[kSent] = true;
|
72975
72975
|
}
|
72976
72976
|
if (res !== void 0) {
|
72977
|
-
const validRes = res instanceof
|
72977
|
+
const validRes = res instanceof Response10 || res instanceof import_undici32.Response;
|
72978
72978
|
if (!validRes) {
|
72979
72979
|
const suggestion = this.#modules ? SUGGEST_RES_MODULES : SUGGEST_RES;
|
72980
72980
|
throw new FetchError("ERR_RESPONSE_TYPE", `Fetch handler didn't respond with a Response object.
|
@@ -73112,12 +73112,12 @@ Make sure you're ${suggestion}.`);
|
|
73112
73112
|
function getRangeResponse(requestRangeHeader, responseStatus, responseHeaders, responseBody) {
|
73113
73113
|
const ranges = parseRanges(requestRangeHeader, responseBody.byteLength);
|
73114
73114
|
if (ranges === void 0) {
|
73115
|
-
return new
|
73115
|
+
return new Response10(null, {
|
73116
73116
|
status: 416,
|
73117
73117
|
headers: { "Content-Range": `bytes */${responseBody.byteLength}` }
|
73118
73118
|
});
|
73119
73119
|
} else if (ranges.length === 0) {
|
73120
|
-
return new
|
73120
|
+
return new Response10(responseBody, {
|
73121
73121
|
status: responseStatus,
|
73122
73122
|
headers: responseHeaders
|
73123
73123
|
});
|
@@ -73125,7 +73125,7 @@ Make sure you're ${suggestion}.`);
|
|
73125
73125
|
const [start, end] = ranges[0];
|
73126
73126
|
responseHeaders.set("Content-Range", `bytes ${start}-${end}/${responseBody.byteLength}`);
|
73127
73127
|
responseHeaders.set("Content-Length", `${end - start + 1}`);
|
73128
|
-
return new
|
73128
|
+
return new Response10(responseBody.slice(start, end + 1), {
|
73129
73129
|
status: 206,
|
73130
73130
|
headers: responseHeaders
|
73131
73131
|
});
|
@@ -73152,7 +73152,7 @@ Content-Range: bytes ${start}-${end}/${responseBody.byteLength}\r
|
|
73152
73152
|
}
|
73153
73153
|
});
|
73154
73154
|
responseHeaders.set("Content-Type", `multipart/byteranges; boundary=${boundary}`);
|
73155
|
-
return new
|
73155
|
+
return new Response10(stream2, {
|
73156
73156
|
status: 206,
|
73157
73157
|
headers: responseHeaders
|
73158
73158
|
});
|
@@ -73467,7 +73467,7 @@ Make sure "${service}" is mounted so Miniflare knows where to find it.`);
|
|
73467
73467
|
})
|
73468
73468
|
], BindingsPlugin.prototype, "serviceBindings", 2);
|
73469
73469
|
var import_assert32 = __toModule(require("assert"));
|
73470
|
-
var
|
73470
|
+
var import_child_process5 = __toModule(require("child_process"));
|
73471
73471
|
var import_path32 = __toModule(require("path"));
|
73472
73472
|
var import_shared9 = __toModule(require_src3());
|
73473
73473
|
var BuildError = /* @__PURE__ */ __name(class extends import_shared9.MiniflareError {
|
@@ -73481,11 +73481,11 @@ Make sure "${service}" is mounted so Miniflare knows where to find it.`);
|
|
73481
73481
|
this.assignOptions(options30);
|
73482
73482
|
}
|
73483
73483
|
beforeSetup() {
|
73484
|
-
const
|
73485
|
-
if (!
|
73484
|
+
const buildCommand2 = this.buildCommand;
|
73485
|
+
if (!buildCommand2)
|
73486
73486
|
return {};
|
73487
73487
|
return new Promise((resolve24, reject) => {
|
73488
|
-
const build5 =
|
73488
|
+
const build5 = import_child_process5.default.spawn(buildCommand2, {
|
73489
73489
|
cwd: this.buildBasePath ? import_path32.default.resolve(this.ctx.rootPath, this.buildBasePath) : this.ctx.rootPath,
|
73490
73490
|
shell: true,
|
73491
73491
|
stdio: "inherit",
|
@@ -73559,7 +73559,7 @@ Make sure "${service}" is mounted so Miniflare knows where to find it.`);
|
|
73559
73559
|
}
|
73560
73560
|
}
|
73561
73561
|
__name(_populateBuildConfig, "_populateBuildConfig");
|
73562
|
-
var
|
73562
|
+
var import_buffer5 = __toModule(require("buffer"));
|
73563
73563
|
var import_promises210 = __toModule(require("fs/promises"));
|
73564
73564
|
var import_path42 = __toModule(require("path"));
|
73565
73565
|
var import_web5 = __toModule(require("stream/web"));
|
@@ -73784,10 +73784,10 @@ Make sure "${service}" is mounted so Miniflare knows where to find it.`);
|
|
73784
73784
|
}
|
73785
73785
|
const extraGlobals = {};
|
73786
73786
|
let CompatRequest = Request4;
|
73787
|
-
let CompatResponse =
|
73787
|
+
let CompatResponse = Response10;
|
73788
73788
|
if (!ctx.compat.isEnabled("formdata_parser_supports_files")) {
|
73789
73789
|
CompatRequest = proxyStringFormDataFiles(Request4);
|
73790
|
-
CompatResponse = proxyStringFormDataFiles(
|
73790
|
+
CompatResponse = proxyStringFormDataFiles(Response10);
|
73791
73791
|
}
|
73792
73792
|
if (ctx.compat.isEnabled("global_navigator")) {
|
73793
73793
|
extraGlobals.navigator = new Navigator();
|
@@ -73856,7 +73856,7 @@ Make sure "${service}" is mounted so Miniflare knows where to find it.`);
|
|
73856
73856
|
Request: CompatRequest,
|
73857
73857
|
Response: CompatResponse,
|
73858
73858
|
FormData: import_undici42.FormData,
|
73859
|
-
Blob:
|
73859
|
+
Blob: import_buffer5.Blob,
|
73860
73860
|
File: import_undici42.File,
|
73861
73861
|
URL: import_url22.URL,
|
73862
73862
|
URLSearchParams: import_url22.URLSearchParams,
|
@@ -76846,17 +76846,17 @@ async function generateASSETSBinding(options30) {
|
|
76846
76846
|
try {
|
76847
76847
|
const url4 = new URL(miniflareRequest.url);
|
76848
76848
|
url4.host = `localhost:${options30.proxyPort}`;
|
76849
|
-
const proxyRequest = new
|
76849
|
+
const proxyRequest = new import_miniflare17.Request(url4, miniflareRequest);
|
76850
76850
|
if (proxyRequest.headers.get("Upgrade") === "websocket") {
|
76851
76851
|
proxyRequest.headers.delete("Sec-WebSocket-Accept");
|
76852
76852
|
proxyRequest.headers.delete("Sec-WebSocket-Key");
|
76853
76853
|
}
|
76854
|
-
return await (0,
|
76854
|
+
return await (0, import_miniflare17.fetch)(proxyRequest, {
|
76855
76855
|
dispatcher: new ProxyDispatcher(miniflareRequest.headers.get("Host"))
|
76856
76856
|
});
|
76857
76857
|
} catch (thrown) {
|
76858
76858
|
options30.log.error(new Error(`Could not proxy request: ${thrown}`));
|
76859
|
-
return new
|
76859
|
+
return new import_miniflare17.Response(`[wrangler] Could not proxy request: ${thrown}`, {
|
76860
76860
|
status: 502
|
76861
76861
|
});
|
76862
76862
|
}
|
@@ -76865,7 +76865,7 @@ async function generateASSETSBinding(options30) {
|
|
76865
76865
|
return await assetsFetch(miniflareRequest);
|
76866
76866
|
} catch (thrown) {
|
76867
76867
|
options30.log.error(new Error(`Could not serve static asset: ${thrown}`));
|
76868
|
-
return new
|
76868
|
+
return new import_miniflare17.Response(
|
76869
76869
|
`[wrangler] Could not serve static asset: ${thrown}`,
|
76870
76870
|
{ status: 502 }
|
76871
76871
|
);
|
@@ -76977,11 +76977,11 @@ async function generateAssetsFetch(directory, log2) {
|
|
76977
76977
|
});
|
76978
76978
|
}, "generateResponse");
|
76979
76979
|
return async (input, init2) => {
|
76980
|
-
const request4 = new
|
76980
|
+
const request4 = new import_miniflare17.Request(input, init2);
|
76981
76981
|
return await generateResponse(request4);
|
76982
76982
|
};
|
76983
76983
|
}
|
76984
|
-
var import_node_assert18, import_node_fs20, import_node_path37, import_mime3,
|
76984
|
+
var import_node_assert18, import_node_fs20, import_node_path37, import_mime3, import_miniflare17, import_undici8, ProxyDispatcher, invalidAssetsFetch;
|
76985
76985
|
var init_assets = __esm({
|
76986
76986
|
"src/miniflare-cli/assets.ts"() {
|
76987
76987
|
init_import_meta_url();
|
@@ -76993,7 +76993,7 @@ var init_assets = __esm({
|
|
76993
76993
|
init_parseRedirects();
|
76994
76994
|
init_esm2();
|
76995
76995
|
import_mime3 = __toESM(require_mime());
|
76996
|
-
|
76996
|
+
import_miniflare17 = require("miniflare");
|
76997
76997
|
import_undici8 = __toESM(require_undici());
|
76998
76998
|
init_hash();
|
76999
76999
|
__name(generateASSETSBinding, "generateASSETSBinding");
|
@@ -79765,23 +79765,23 @@ var init_dist_es5 = __esm({
|
|
79765
79765
|
});
|
79766
79766
|
|
79767
79767
|
// ../../node_modules/.pnpm/@smithy+util-buffer-from@3.0.0/node_modules/@smithy/util-buffer-from/dist-es/index.js
|
79768
|
-
var
|
79768
|
+
var import_buffer, fromArrayBuffer, fromString;
|
79769
79769
|
var init_dist_es6 = __esm({
|
79770
79770
|
"../../node_modules/.pnpm/@smithy+util-buffer-from@3.0.0/node_modules/@smithy/util-buffer-from/dist-es/index.js"() {
|
79771
79771
|
init_import_meta_url();
|
79772
79772
|
init_dist_es5();
|
79773
|
-
|
79773
|
+
import_buffer = require("buffer");
|
79774
79774
|
fromArrayBuffer = /* @__PURE__ */ __name((input, offset = 0, length = input.byteLength - offset) => {
|
79775
79775
|
if (!isArrayBuffer(input)) {
|
79776
79776
|
throw new TypeError(`The "input" argument must be ArrayBuffer. Received type ${typeof input} (${input})`);
|
79777
79777
|
}
|
79778
|
-
return
|
79778
|
+
return import_buffer.Buffer.from(input, offset, length);
|
79779
79779
|
}, "fromArrayBuffer");
|
79780
79780
|
fromString = /* @__PURE__ */ __name((input, encoding) => {
|
79781
79781
|
if (typeof input !== "string") {
|
79782
79782
|
throw new TypeError(`The "input" argument must be of type string. Received type ${typeof input} (${input})`);
|
79783
79783
|
}
|
79784
|
-
return encoding ?
|
79784
|
+
return encoding ? import_buffer.Buffer.from(input, encoding) : import_buffer.Buffer.from(input);
|
79785
79785
|
}, "fromString");
|
79786
79786
|
}
|
79787
79787
|
});
|
@@ -88965,19 +88965,19 @@ function httpRequest(options30) {
|
|
88965
88965
|
chunks.push(chunk);
|
88966
88966
|
});
|
88967
88967
|
res.on("end", () => {
|
88968
|
-
resolve24(
|
88968
|
+
resolve24(import_buffer3.Buffer.concat(chunks));
|
88969
88969
|
req.destroy();
|
88970
88970
|
});
|
88971
88971
|
});
|
88972
88972
|
req.end();
|
88973
88973
|
});
|
88974
88974
|
}
|
88975
|
-
var
|
88975
|
+
var import_buffer3, import_http2;
|
88976
88976
|
var init_httpRequest2 = __esm({
|
88977
88977
|
"../../node_modules/.pnpm/@smithy+credential-provider-imds@3.2.8/node_modules/@smithy/credential-provider-imds/dist-es/remoteProvider/httpRequest.js"() {
|
88978
88978
|
init_import_meta_url();
|
88979
88979
|
init_dist_es16();
|
88980
|
-
|
88980
|
+
import_buffer3 = require("buffer");
|
88981
88981
|
import_http2 = require("http");
|
88982
88982
|
__name(httpRequest, "httpRequest");
|
88983
88983
|
}
|
@@ -89958,7 +89958,7 @@ var init_dist_es41 = __esm({
|
|
89958
89958
|
|
89959
89959
|
// ../../node_modules/.pnpm/@smithy+hash-node@3.0.11/node_modules/@smithy/hash-node/dist-es/index.js
|
89960
89960
|
function castSourceData(toCast, encoding) {
|
89961
|
-
if (
|
89961
|
+
if (import_buffer4.Buffer.isBuffer(toCast)) {
|
89962
89962
|
return toCast;
|
89963
89963
|
}
|
89964
89964
|
if (typeof toCast === "string") {
|
@@ -89969,13 +89969,13 @@ function castSourceData(toCast, encoding) {
|
|
89969
89969
|
}
|
89970
89970
|
return fromArrayBuffer(toCast);
|
89971
89971
|
}
|
89972
|
-
var
|
89972
|
+
var import_buffer4, import_crypto5, Hash;
|
89973
89973
|
var init_dist_es42 = __esm({
|
89974
89974
|
"../../node_modules/.pnpm/@smithy+hash-node@3.0.11/node_modules/@smithy/hash-node/dist-es/index.js"() {
|
89975
89975
|
init_import_meta_url();
|
89976
89976
|
init_dist_es6();
|
89977
89977
|
init_dist_es7();
|
89978
|
-
|
89978
|
+
import_buffer4 = require("buffer");
|
89979
89979
|
import_crypto5 = require("crypto");
|
89980
89980
|
Hash = class {
|
89981
89981
|
constructor(algorithmIdentifier, secret3) {
|
@@ -94969,12 +94969,12 @@ var init_getValidatedProcessCredentials = __esm({
|
|
94969
94969
|
});
|
94970
94970
|
|
94971
94971
|
// ../../node_modules/.pnpm/@aws-sdk+credential-provider-process@3.716.0/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js
|
94972
|
-
var
|
94972
|
+
var import_child_process3, import_util14, resolveProcessCredentials;
|
94973
94973
|
var init_resolveProcessCredentials = __esm({
|
94974
94974
|
"../../node_modules/.pnpm/@aws-sdk+credential-provider-process@3.716.0/node_modules/@aws-sdk/credential-provider-process/dist-es/resolveProcessCredentials.js"() {
|
94975
94975
|
init_import_meta_url();
|
94976
94976
|
init_dist_es16();
|
94977
|
-
|
94977
|
+
import_child_process3 = require("child_process");
|
94978
94978
|
import_util14 = require("util");
|
94979
94979
|
init_getValidatedProcessCredentials();
|
94980
94980
|
resolveProcessCredentials = /* @__PURE__ */ __name(async (profileName, profiles, logger4) => {
|
@@ -94982,7 +94982,7 @@ var init_resolveProcessCredentials = __esm({
|
|
94982
94982
|
if (profiles[profileName]) {
|
94983
94983
|
const credentialProcess = profile["credential_process"];
|
94984
94984
|
if (credentialProcess !== void 0) {
|
94985
|
-
const execPromise = (0, import_util14.promisify)(
|
94985
|
+
const execPromise = (0, import_util14.promisify)(import_child_process3.exec);
|
94986
94986
|
try {
|
94987
94987
|
const { stdout: stdout2 } = await execPromise(credentialProcess);
|
94988
94988
|
let data;
|
@@ -98088,14 +98088,14 @@ var chalkStderr = createChalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
98088
98088
|
var source_default = chalk;
|
98089
98089
|
|
98090
98090
|
// src/api/startDevWorker/MultiworkerRuntimeController.ts
|
98091
|
-
var
|
98091
|
+
var import_miniflare7 = require("miniflare");
|
98092
98092
|
|
98093
98093
|
// src/dev/miniflare.ts
|
98094
98094
|
init_import_meta_url();
|
98095
98095
|
var import_node_assert5 = __toESM(require("node:assert"));
|
98096
98096
|
var import_node_crypto4 = require("node:crypto");
|
98097
98097
|
var import_node_path14 = __toESM(require("node:path"));
|
98098
|
-
var
|
98098
|
+
var import_miniflare5 = require("miniflare");
|
98099
98099
|
|
98100
98100
|
// src/ai/fetcher.ts
|
98101
98101
|
init_import_meta_url();
|
@@ -98108,7 +98108,7 @@ var import_undici3 = __toESM(require_undici());
|
|
98108
98108
|
|
98109
98109
|
// package.json
|
98110
98110
|
var name = "wrangler";
|
98111
|
-
var version = "3.107.
|
98111
|
+
var version = "3.107.3";
|
98112
98112
|
|
98113
98113
|
// src/environment-variables/misc-variables.ts
|
98114
98114
|
init_import_meta_url();
|
@@ -100873,7 +100873,6 @@ var friendlyBindingNames = {
|
|
100873
100873
|
text_blobs: "Text Blobs",
|
100874
100874
|
browser: "Browser",
|
100875
100875
|
ai: "AI",
|
100876
|
-
images: "Images",
|
100877
100876
|
version_metadata: "Worker Version Metadata",
|
100878
100877
|
unsafe: "Unsafe Metadata",
|
100879
100878
|
vars: "Vars",
|
@@ -100912,7 +100911,6 @@ function printBindings(bindings, context2 = {}) {
|
|
100912
100911
|
text_blobs,
|
100913
100912
|
browser,
|
100914
100913
|
ai: ai3,
|
100915
|
-
images,
|
100916
100914
|
version_metadata,
|
100917
100915
|
unsafe,
|
100918
100916
|
vars,
|
@@ -101125,17 +101123,6 @@ function printBindings(bindings, context2 = {}) {
|
|
101125
101123
|
entries: [{ key: "Name", value: browser.binding }]
|
101126
101124
|
});
|
101127
101125
|
}
|
101128
|
-
if (images !== void 0) {
|
101129
|
-
output.push({
|
101130
|
-
name: friendlyBindingNames.images,
|
101131
|
-
entries: [
|
101132
|
-
{
|
101133
|
-
key: "Name",
|
101134
|
-
value: addLocalSuffix(images.binding, !!context2.imagesLocalMode)
|
101135
|
-
}
|
101136
|
-
]
|
101137
|
-
});
|
101138
|
-
}
|
101139
101126
|
if (ai3 !== void 0) {
|
101140
101127
|
const entries = [
|
101141
101128
|
{ key: "Name", value: ai3.binding }
|
@@ -102823,7 +102810,7 @@ function normalizeAndValidateEnvironment(diagnostics, configPath, rawEnv, isDisp
|
|
102823
102810
|
rawEnv,
|
102824
102811
|
envName,
|
102825
102812
|
"browser",
|
102826
|
-
|
102813
|
+
validateBrowserBinding(envName),
|
102827
102814
|
void 0
|
102828
102815
|
),
|
102829
102816
|
ai: notInheritable(
|
@@ -102836,16 +102823,6 @@ function normalizeAndValidateEnvironment(diagnostics, configPath, rawEnv, isDisp
|
|
102836
102823
|
validateAIBinding(envName),
|
102837
102824
|
void 0
|
102838
102825
|
),
|
102839
|
-
images: notInheritable(
|
102840
|
-
diagnostics,
|
102841
|
-
topLevelEnv,
|
102842
|
-
rawConfig,
|
102843
|
-
rawEnv,
|
102844
|
-
envName,
|
102845
|
-
"images",
|
102846
|
-
validateNamedSimpleBinding(envName),
|
102847
|
-
void 0
|
102848
|
-
),
|
102849
102826
|
pipelines: notInheritable(
|
102850
102827
|
diagnostics,
|
102851
102828
|
topLevelEnv,
|
@@ -103401,7 +103378,7 @@ var validateAssetsConfig = /* @__PURE__ */ __name((diagnostics, field, value) =>
|
|
103401
103378
|
]) && isValid2;
|
103402
103379
|
return isValid2;
|
103403
103380
|
}, "validateAssetsConfig");
|
103404
|
-
var
|
103381
|
+
var validateBrowserBinding = /* @__PURE__ */ __name((envName) => (diagnostics, field, value, config) => {
|
103405
103382
|
const fieldPath = config === void 0 ? `${field}` : `env.${envName}.${field}`;
|
103406
103383
|
if (typeof value !== "object" || value === null || Array.isArray(value)) {
|
103407
103384
|
diagnostics.errors.push(
|
@@ -103420,7 +103397,7 @@ var validateNamedSimpleBinding = /* @__PURE__ */ __name((envName) => (diagnostic
|
|
103420
103397
|
"binding"
|
103421
103398
|
]);
|
103422
103399
|
return isValid2;
|
103423
|
-
}, "
|
103400
|
+
}, "validateBrowserBinding");
|
103424
103401
|
var validateAIBinding = /* @__PURE__ */ __name((envName) => (diagnostics, field, value, config) => {
|
103425
103402
|
const fieldPath = config === void 0 ? `${field}` : `env.${envName}.${field}`;
|
103426
103403
|
if (typeof value !== "object" || value === null || Array.isArray(value)) {
|
@@ -104566,7 +104543,6 @@ var defaultWranglerConfig = {
|
|
104566
104543
|
services: [],
|
104567
104544
|
analytics_engine_datasets: [],
|
104568
104545
|
ai: void 0,
|
104569
|
-
images: void 0,
|
104570
104546
|
version_metadata: void 0,
|
104571
104547
|
/*====================================================*/
|
104572
104548
|
/* Fields supported by Workers only */
|
@@ -107044,45 +107020,45 @@ var import_child_process = require("child_process");
|
|
107044
107020
|
var import_undici = __toESM(require_undici());
|
107045
107021
|
var cache = {};
|
107046
107022
|
var usesAccessCache = /* @__PURE__ */ new Map();
|
107047
|
-
async function domainUsesAccess(
|
107048
|
-
logger.debug("Checking if domain has Access enabled:",
|
107049
|
-
if (usesAccessCache.has(
|
107023
|
+
async function domainUsesAccess(domain3) {
|
107024
|
+
logger.debug("Checking if domain has Access enabled:", domain3);
|
107025
|
+
if (usesAccessCache.has(domain3)) {
|
107050
107026
|
logger.debug(
|
107051
107027
|
"Using cached Access switch for:",
|
107052
|
-
|
107053
|
-
usesAccessCache.get(
|
107028
|
+
domain3,
|
107029
|
+
usesAccessCache.get(domain3)
|
107054
107030
|
);
|
107055
|
-
return usesAccessCache.get(
|
107031
|
+
return usesAccessCache.get(domain3);
|
107056
107032
|
}
|
107057
|
-
logger.debug("Access switch not cached for:",
|
107033
|
+
logger.debug("Access switch not cached for:", domain3);
|
107058
107034
|
try {
|
107059
107035
|
const controller = new AbortController();
|
107060
107036
|
const cancel3 = setTimeout(() => {
|
107061
107037
|
controller.abort();
|
107062
107038
|
}, 1e3);
|
107063
|
-
const output = await (0, import_undici.fetch)(`https://${
|
107039
|
+
const output = await (0, import_undici.fetch)(`https://${domain3}`, {
|
107064
107040
|
redirect: "manual",
|
107065
107041
|
signal: controller.signal
|
107066
107042
|
});
|
107067
107043
|
clearTimeout(cancel3);
|
107068
107044
|
const usesAccess = !!(output.status === 302 && output.headers.get("location")?.includes("cloudflareaccess.com"));
|
107069
|
-
logger.debug("Caching access switch for:",
|
107070
|
-
usesAccessCache.set(
|
107045
|
+
logger.debug("Caching access switch for:", domain3);
|
107046
|
+
usesAccessCache.set(domain3, usesAccess);
|
107071
107047
|
return usesAccess;
|
107072
107048
|
} catch (e7) {
|
107073
|
-
usesAccessCache.set(
|
107049
|
+
usesAccessCache.set(domain3, false);
|
107074
107050
|
return false;
|
107075
107051
|
}
|
107076
107052
|
}
|
107077
107053
|
__name(domainUsesAccess, "domainUsesAccess");
|
107078
|
-
async function getAccessToken(
|
107079
|
-
if (!await domainUsesAccess(
|
107054
|
+
async function getAccessToken(domain3) {
|
107055
|
+
if (!await domainUsesAccess(domain3)) {
|
107080
107056
|
return void 0;
|
107081
107057
|
}
|
107082
|
-
if (cache[
|
107083
|
-
return cache[
|
107058
|
+
if (cache[domain3]) {
|
107059
|
+
return cache[domain3];
|
107084
107060
|
}
|
107085
|
-
const output = (0, import_child_process.spawnSync)("cloudflared", ["access", "login",
|
107061
|
+
const output = (0, import_child_process.spawnSync)("cloudflared", ["access", "login", domain3]);
|
107086
107062
|
if (output.error) {
|
107087
107063
|
throw new UserError(
|
107088
107064
|
"To use Wrangler with Cloudflare Access, please install `cloudflared` from https://developers.cloudflare.com/cloudflare-one/connections/connect-apps/install-and-setup/installation"
|
@@ -107091,7 +107067,7 @@ async function getAccessToken(domain2) {
|
|
107091
107067
|
const stringOutput = output.stdout.toString();
|
107092
107068
|
const matches = stringOutput.match(/fetched your token:\n\n(.*)/m);
|
107093
107069
|
if (matches && matches.length >= 2) {
|
107094
|
-
cache[
|
107070
|
+
cache[domain3] = matches[1];
|
107095
107071
|
return matches[1];
|
107096
107072
|
}
|
107097
107073
|
throw new Error("Failed to authenticate with Cloudflare Access");
|
@@ -108968,218 +108944,12 @@ function withSourceURLs(entrypointPath, entrypointSource, modules) {
|
|
108968
108944
|
}
|
108969
108945
|
__name(withSourceURLs, "withSourceURLs");
|
108970
108946
|
|
108971
|
-
// src/images/fetcher.ts
|
108972
|
-
init_import_meta_url();
|
108973
|
-
var import_miniflare3 = require("miniflare");
|
108974
|
-
|
108975
|
-
// src/images/local.ts
|
108976
|
-
init_import_meta_url();
|
108977
|
-
var import_buffer = require("buffer");
|
108978
|
-
var import_sharp = __toESM(require("sharp"));
|
108979
|
-
function validateTransforms(inputTransforms) {
|
108980
|
-
if (!Array.isArray(inputTransforms)) {
|
108981
|
-
return null;
|
108982
|
-
}
|
108983
|
-
for (const transform of inputTransforms) {
|
108984
|
-
for (const key of ["imageIndex", "rotate", "width", "height"]) {
|
108985
|
-
if (transform[key] !== void 0 && typeof transform[key] != "number") {
|
108986
|
-
return null;
|
108987
|
-
}
|
108988
|
-
}
|
108989
|
-
}
|
108990
|
-
return inputTransforms;
|
108991
|
-
}
|
108992
|
-
__name(validateTransforms, "validateTransforms");
|
108993
|
-
async function imagesLocalFetcher(request4) {
|
108994
|
-
const data = await request4.formData();
|
108995
|
-
const body = data.get("image");
|
108996
|
-
if (!body || !(body instanceof import_buffer.File)) {
|
108997
|
-
return errorResponse(
|
108998
|
-
400,
|
108999
|
-
9523,
|
109000
|
-
`ERROR: Internal Images binding error: expected image in request, got ${body}`
|
109001
|
-
);
|
109002
|
-
}
|
109003
|
-
const transformer = (0, import_sharp.default)(await body.arrayBuffer(), {});
|
109004
|
-
const url4 = new URL(request4.url);
|
109005
|
-
if (url4.pathname == "/info") {
|
109006
|
-
return runInfo(transformer);
|
109007
|
-
} else {
|
109008
|
-
const badTransformsResponse = errorResponse(
|
109009
|
-
400,
|
109010
|
-
9523,
|
109011
|
-
"ERROR: Internal Images binding error: Expected JSON array of valid transforms in transforms field"
|
109012
|
-
);
|
109013
|
-
try {
|
109014
|
-
const transformsJson = data.get("transforms");
|
109015
|
-
if (typeof transformsJson !== "string") {
|
109016
|
-
return badTransformsResponse;
|
109017
|
-
}
|
109018
|
-
const transforms = validateTransforms(JSON.parse(transformsJson));
|
109019
|
-
if (transforms === null) {
|
109020
|
-
return badTransformsResponse;
|
109021
|
-
}
|
109022
|
-
const outputFormat = data.get("output_format");
|
109023
|
-
if (outputFormat != null && typeof outputFormat !== "string") {
|
109024
|
-
return errorResponse(
|
109025
|
-
400,
|
109026
|
-
9523,
|
109027
|
-
"ERROR: Internal Images binding error: Expected output format to be a string if provided"
|
109028
|
-
);
|
109029
|
-
}
|
109030
|
-
return runTransform(transformer, transforms, outputFormat);
|
109031
|
-
} catch (e7) {
|
109032
|
-
return badTransformsResponse;
|
109033
|
-
}
|
109034
|
-
}
|
109035
|
-
}
|
109036
|
-
__name(imagesLocalFetcher, "imagesLocalFetcher");
|
109037
|
-
async function runInfo(transformer) {
|
109038
|
-
const metadata = await transformer.metadata();
|
109039
|
-
let mime = null;
|
109040
|
-
switch (metadata.format) {
|
109041
|
-
case "jpeg":
|
109042
|
-
mime = "image/jpeg";
|
109043
|
-
break;
|
109044
|
-
case "svg":
|
109045
|
-
mime = "image/svg+xml";
|
109046
|
-
break;
|
109047
|
-
case "png":
|
109048
|
-
mime = "image/png";
|
109049
|
-
break;
|
109050
|
-
case "webp":
|
109051
|
-
mime = "image/webp";
|
109052
|
-
break;
|
109053
|
-
case "gif":
|
109054
|
-
mime = "image/gif";
|
109055
|
-
break;
|
109056
|
-
case "avif":
|
109057
|
-
mime = "image/avif";
|
109058
|
-
break;
|
109059
|
-
default:
|
109060
|
-
return errorResponse(
|
109061
|
-
415,
|
109062
|
-
9520,
|
109063
|
-
`ERROR: Unsupported image type ${metadata.format}, expected one of: JPEG, SVG, PNG, WebP, GIF or AVIF`
|
109064
|
-
);
|
109065
|
-
}
|
109066
|
-
let resp;
|
109067
|
-
if (mime == "image/svg+xml") {
|
109068
|
-
resp = {
|
109069
|
-
format: mime
|
109070
|
-
};
|
109071
|
-
} else {
|
109072
|
-
if (!metadata.size || !metadata.width || !metadata.height) {
|
109073
|
-
return errorResponse(
|
109074
|
-
500,
|
109075
|
-
9523,
|
109076
|
-
"ERROR: Internal Images binding error: Expected size, width and height for bitmap input"
|
109077
|
-
);
|
109078
|
-
}
|
109079
|
-
resp = {
|
109080
|
-
format: mime,
|
109081
|
-
fileSize: metadata.size,
|
109082
|
-
width: metadata.width,
|
109083
|
-
height: metadata.height
|
109084
|
-
};
|
109085
|
-
}
|
109086
|
-
return Response.json(resp);
|
109087
|
-
}
|
109088
|
-
__name(runInfo, "runInfo");
|
109089
|
-
async function runTransform(transformer, transforms, outputFormat) {
|
109090
|
-
for (const transform of transforms) {
|
109091
|
-
if (transform.imageIndex !== void 0 && transform.imageIndex !== 0) {
|
109092
|
-
continue;
|
109093
|
-
}
|
109094
|
-
if (transform.rotate !== void 0) {
|
109095
|
-
transformer.rotate(transform.rotate);
|
109096
|
-
}
|
109097
|
-
if (transform.width !== void 0 || transform.height !== void 0) {
|
109098
|
-
transformer.resize(transform.width || null, transform.height || null, {
|
109099
|
-
fit: "contain"
|
109100
|
-
});
|
109101
|
-
}
|
109102
|
-
}
|
109103
|
-
switch (outputFormat) {
|
109104
|
-
case "image/avif":
|
109105
|
-
transformer.avif();
|
109106
|
-
break;
|
109107
|
-
case "image/gif":
|
109108
|
-
return errorResponse(
|
109109
|
-
415,
|
109110
|
-
9520,
|
109111
|
-
"ERROR: GIF output is not supported in local mode"
|
109112
|
-
);
|
109113
|
-
case "image/jpeg":
|
109114
|
-
transformer.jpeg();
|
109115
|
-
break;
|
109116
|
-
case "image/png":
|
109117
|
-
transformer.png();
|
109118
|
-
break;
|
109119
|
-
case "image/webp":
|
109120
|
-
transformer.webp();
|
109121
|
-
break;
|
109122
|
-
case "rgb":
|
109123
|
-
case "rgba":
|
109124
|
-
return errorResponse(
|
109125
|
-
415,
|
109126
|
-
9520,
|
109127
|
-
"ERROR: RGB/RGBA output is not supported in local mode"
|
109128
|
-
);
|
109129
|
-
default:
|
109130
|
-
outputFormat = "image/jpeg";
|
109131
|
-
break;
|
109132
|
-
}
|
109133
|
-
return new Response(transformer, {
|
109134
|
-
headers: {
|
109135
|
-
"content-type": outputFormat
|
109136
|
-
}
|
109137
|
-
});
|
109138
|
-
}
|
109139
|
-
__name(runTransform, "runTransform");
|
109140
|
-
function errorResponse(status2, code, message) {
|
109141
|
-
return new Response(`ERROR ${code}: ${message}`, {
|
109142
|
-
status: status2,
|
109143
|
-
headers: {
|
109144
|
-
"content-type": "text/plain",
|
109145
|
-
"cf-images-binding": `err=${code}`
|
109146
|
-
}
|
109147
|
-
});
|
109148
|
-
}
|
109149
|
-
__name(errorResponse, "errorResponse");
|
109150
|
-
|
109151
|
-
// src/images/fetcher.ts
|
109152
|
-
var EXTERNAL_IMAGES_WORKER_NAME = "__WRANGLER_EXTERNAL_IMAGES_WORKER";
|
109153
|
-
var EXTERNAL_IMAGES_WORKER_SCRIPT = `
|
109154
|
-
import makeBinding from 'cloudflare-internal:images-api'
|
109155
|
-
|
109156
|
-
export default function (env) {
|
109157
|
-
return makeBinding({
|
109158
|
-
fetcher: env.FETCHER,
|
109159
|
-
});
|
109160
|
-
}
|
109161
|
-
`;
|
109162
|
-
async function imagesRemoteFetcher(request4) {
|
109163
|
-
const accountId = await getAccountId();
|
109164
|
-
const url4 = `/accounts/${accountId}/images_edge/v2/binding/preview${new URL(request4.url).pathname}`;
|
109165
|
-
const res = await performApiFetch(url4, {
|
109166
|
-
method: request4.method,
|
109167
|
-
body: request4.body,
|
109168
|
-
duplex: "half",
|
109169
|
-
headers: {
|
109170
|
-
"content-type": request4.headers.get("content-type") || ""
|
109171
|
-
}
|
109172
|
-
});
|
109173
|
-
return new import_miniflare3.Response(res.body, { headers: res.headers });
|
109174
|
-
}
|
109175
|
-
__name(imagesRemoteFetcher, "imagesRemoteFetcher");
|
109176
|
-
|
109177
108947
|
// src/sourcemap.ts
|
109178
108948
|
init_import_meta_url();
|
109179
108949
|
var import_node_assert4 = __toESM(require("node:assert"));
|
109180
108950
|
var import_node_fs8 = __toESM(require("node:fs"));
|
109181
108951
|
var import_node_url5 = __toESM(require("node:url"));
|
109182
|
-
var
|
108952
|
+
var import_miniflare3 = require("miniflare");
|
109183
108953
|
function maybeGetFile(filePath) {
|
109184
108954
|
try {
|
109185
108955
|
return import_node_fs8.default.readFileSync(filePath, "utf8");
|
@@ -109227,7 +108997,7 @@ function getSourceMappingPrepareStackTrace(retrieveSourceMap) {
|
|
109227
108997
|
if (sourceMappingPrepareStackTrace !== void 0) {
|
109228
108998
|
return sourceMappingPrepareStackTrace;
|
109229
108999
|
}
|
109230
|
-
const support = (0,
|
109000
|
+
const support = (0, import_miniflare3.getFreshSourceMapSupport)();
|
109231
109001
|
const originalPrepareStackTrace = Error.prepareStackTrace;
|
109232
109002
|
support.install({
|
109233
109003
|
environment: "node",
|
@@ -109434,7 +109204,7 @@ __name(updateCheck, "updateCheck");
|
|
109434
109204
|
|
109435
109205
|
// src/vectorize/fetcher.ts
|
109436
109206
|
init_import_meta_url();
|
109437
|
-
var
|
109207
|
+
var import_miniflare4 = require("miniflare");
|
109438
109208
|
var EXTERNAL_VECTORIZE_WORKER_NAME = "__WRANGLER_EXTERNAL_VECTORIZE_WORKER";
|
109439
109209
|
var EXTERNAL_VECTORIZE_WORKER_SCRIPT = `
|
109440
109210
|
import makeBinding from 'cloudflare-internal:vectorize-api'
|
@@ -109467,7 +109237,7 @@ function MakeVectorizeFetcher(indexId) {
|
|
109467
109237
|
body: request4.body,
|
109468
109238
|
duplex: "half"
|
109469
109239
|
});
|
109470
|
-
const respHeaders = new
|
109240
|
+
const respHeaders = new import_miniflare4.Headers(res.headers);
|
109471
109241
|
respHeaders.delete("Host");
|
109472
109242
|
respHeaders.delete("Content-Length");
|
109473
109243
|
const apiResponse = await res.json();
|
@@ -109475,7 +109245,7 @@ function MakeVectorizeFetcher(indexId) {
|
|
109475
109245
|
error: apiResponse.errors[0].message,
|
109476
109246
|
code: apiResponse.errors[0].code
|
109477
109247
|
};
|
109478
|
-
return new
|
109248
|
+
return new import_miniflare4.Response(JSON.stringify(newResponse), {
|
109479
109249
|
status: res.status,
|
109480
109250
|
headers: respHeaders
|
109481
109251
|
});
|
@@ -109633,7 +109403,7 @@ export default {
|
|
109633
109403
|
}
|
109634
109404
|
}
|
109635
109405
|
`;
|
109636
|
-
var WranglerLog = class extends
|
109406
|
+
var WranglerLog = class extends import_miniflare5.Log {
|
109637
109407
|
#warnedCompatibilityDateFallback = false;
|
109638
109408
|
log(message) {
|
109639
109409
|
if (message.includes(EXTERNAL_SERVICE_WORKER_NAME)) {
|
@@ -109678,13 +109448,13 @@ function castLogLevel(level) {
|
|
109678
109448
|
if (key === "LOG") {
|
109679
109449
|
key = "INFO";
|
109680
109450
|
}
|
109681
|
-
return
|
109451
|
+
return import_miniflare5.LogLevel[key];
|
109682
109452
|
}
|
109683
109453
|
__name(castLogLevel, "castLogLevel");
|
109684
109454
|
function buildLog() {
|
109685
109455
|
let level = castLogLevel(logger.loggerLevel);
|
109686
|
-
if (level <=
|
109687
|
-
level = Math.min(level,
|
109456
|
+
if (level <= import_miniflare5.LogLevel.DEBUG) {
|
109457
|
+
level = Math.min(level, import_miniflare5.LogLevel.WARN);
|
109688
109458
|
}
|
109689
109459
|
return new WranglerLog(level, { prefix: "wrangler-UserWorker" });
|
109690
109460
|
}
|
@@ -109824,7 +109594,7 @@ function buildMiniflareBindingOptions(config) {
|
|
109824
109594
|
};
|
109825
109595
|
} else {
|
109826
109596
|
let address;
|
109827
|
-
let style =
|
109597
|
+
let style = import_miniflare5.HttpOptions_Style.PROXY;
|
109828
109598
|
if (service.entrypoint !== void 0) {
|
109829
109599
|
if (target.entrypointAddresses === void 0) {
|
109830
109600
|
throw new UserError(
|
@@ -109847,7 +109617,7 @@ function buildMiniflareBindingOptions(config) {
|
|
109847
109617
|
);
|
109848
109618
|
}
|
109849
109619
|
address = `${target.host}:${target.port}`;
|
109850
|
-
style =
|
109620
|
+
style = import_miniflare5.HttpOptions_Style.HOST;
|
109851
109621
|
} else {
|
109852
109622
|
address = `${defaultEntrypointAddress.host}:${defaultEntrypointAddress.port}`;
|
109853
109623
|
}
|
@@ -109857,7 +109627,7 @@ function buildMiniflareBindingOptions(config) {
|
|
109857
109627
|
address,
|
109858
109628
|
http: {
|
109859
109629
|
style,
|
109860
|
-
cfBlobHeader:
|
109630
|
+
cfBlobHeader: import_miniflare5.CoreHeaders.CF_BLOB
|
109861
109631
|
}
|
109862
109632
|
}
|
109863
109633
|
};
|
@@ -109940,24 +109710,6 @@ function buildMiniflareBindingOptions(config) {
|
|
109940
109710
|
scriptName: EXTERNAL_AI_WORKER_NAME
|
109941
109711
|
};
|
109942
109712
|
}
|
109943
|
-
if (bindings.images?.binding) {
|
109944
|
-
externalWorkers.push({
|
109945
|
-
name: EXTERNAL_IMAGES_WORKER_NAME,
|
109946
|
-
modules: [
|
109947
|
-
{
|
109948
|
-
type: "ESModule",
|
109949
|
-
path: "index.mjs",
|
109950
|
-
contents: EXTERNAL_IMAGES_WORKER_SCRIPT
|
109951
|
-
}
|
109952
|
-
],
|
109953
|
-
serviceBindings: {
|
109954
|
-
FETCHER: config.imagesLocalMode ? imagesLocalFetcher : imagesRemoteFetcher
|
109955
|
-
}
|
109956
|
-
});
|
109957
|
-
wrappedBindings[bindings.images?.binding] = {
|
109958
|
-
scriptName: EXTERNAL_IMAGES_WORKER_NAME
|
109959
|
-
};
|
109960
|
-
}
|
109961
109713
|
if (bindings.vectorize) {
|
109962
109714
|
for (const vectorizeBinding of bindings.vectorize) {
|
109963
109715
|
const bindingName = vectorizeBinding.binding;
|
@@ -110172,7 +109924,6 @@ __name(handleRuntimeStdio, "handleRuntimeStdio");
|
|
110172
109924
|
var didWarnMiniflareCronSupport = false;
|
110173
109925
|
var didWarnMiniflareVectorizeSupport = false;
|
110174
109926
|
var didWarnAiAccountUsage = false;
|
110175
|
-
var didWarnImagesLocalModeUsage = false;
|
110176
109927
|
async function buildMiniflareOptions(log2, config, proxyToUserWorkerAuthenticationSecret) {
|
110177
109928
|
if (config.crons.length > 0 && !config.testScheduled) {
|
110178
109929
|
if (!didWarnMiniflareCronSupport) {
|
@@ -110204,14 +109955,6 @@ async function buildMiniflareOptions(log2, config, proxyToUserWorkerAuthenticati
|
|
110204
109955
|
);
|
110205
109956
|
}
|
110206
109957
|
}
|
110207
|
-
if (config.bindings.images && config.imagesLocalMode) {
|
110208
|
-
if (!didWarnImagesLocalModeUsage) {
|
110209
|
-
didWarnImagesLocalModeUsage = true;
|
110210
|
-
logger.info(
|
110211
|
-
"You are using Images local mode. This only supports resizing, rotating and transcoding."
|
110212
|
-
);
|
110213
|
-
}
|
110214
|
-
}
|
110215
109958
|
const upstream = typeof config.localUpstream === "string" ? `${config.upstreamProtocol}://${config.localUpstream}` : void 0;
|
110216
109959
|
const { sourceOptions, entrypointNames } = await buildSourceOptions(config);
|
110217
109960
|
const { bindingOptions, internalObjects, externalWorkers } = buildMiniflareBindingOptions(config);
|
@@ -110274,7 +110017,7 @@ __name(castErrorCause, "castErrorCause");
|
|
110274
110017
|
init_import_meta_url();
|
110275
110018
|
var import_node_crypto5 = require("node:crypto");
|
110276
110019
|
var import_promises6 = require("node:fs/promises");
|
110277
|
-
var
|
110020
|
+
var import_miniflare6 = require("miniflare");
|
110278
110021
|
|
110279
110022
|
// src/api/startDevWorker/BaseController.ts
|
110280
110023
|
init_import_meta_url();
|
@@ -110453,11 +110196,6 @@ function convertCfWorkerInitBindingstoBindings(inputBindings) {
|
|
110453
110196
|
output[binding] = { type: "ai", ...x6 };
|
110454
110197
|
break;
|
110455
110198
|
}
|
110456
|
-
case "images": {
|
110457
|
-
const { binding, ...x6 } = info;
|
110458
|
-
output[binding] = { type: "images", ...x6 };
|
110459
|
-
break;
|
110460
|
-
}
|
110461
110199
|
case "version_metadata": {
|
110462
110200
|
const { binding, ...x6 } = info;
|
110463
110201
|
output[binding] = { type: "version_metadata", ...x6 };
|
@@ -110508,7 +110246,6 @@ async function convertBindingsToCfWorkerInitBindings(inputBindings) {
|
|
110508
110246
|
text_blobs: void 0,
|
110509
110247
|
browser: void 0,
|
110510
110248
|
ai: void 0,
|
110511
|
-
images: void 0,
|
110512
110249
|
version_metadata: void 0,
|
110513
110250
|
data_blobs: void 0,
|
110514
110251
|
durable_objects: void 0,
|
@@ -110560,8 +110297,6 @@ async function convertBindingsToCfWorkerInitBindings(inputBindings) {
|
|
110560
110297
|
bindings.browser = { binding: name2 };
|
110561
110298
|
} else if (binding.type === "ai") {
|
110562
110299
|
bindings.ai = { binding: name2 };
|
110563
|
-
} else if (binding.type === "images") {
|
110564
|
-
bindings.images = { binding: name2 };
|
110565
110300
|
} else if (binding.type === "version_metadata") {
|
110566
110301
|
bindings.version_metadata = { binding: name2 };
|
110567
110302
|
} else if (binding.type === "durable_object_namespace") {
|
@@ -110733,7 +110468,6 @@ async function convertToConfigBundle(event) {
|
|
110733
110468
|
services: bindings.services,
|
110734
110469
|
serviceBindings: fetchers,
|
110735
110470
|
bindVectorizeToProd: event.config.dev?.bindVectorizeToProd ?? false,
|
110736
|
-
imagesLocalMode: event.config.dev?.imagesLocalMode ?? false,
|
110737
110471
|
testScheduled: !!event.config.dev.testScheduled
|
110738
110472
|
};
|
110739
110473
|
}
|
@@ -110751,7 +110485,7 @@ var LocalRuntimeController = class extends RuntimeController {
|
|
110751
110485
|
// `buildMiniflareOptions()` is asynchronous, meaning if multiple bundle
|
110752
110486
|
// updates were submitted, the second may apply before the first. Therefore,
|
110753
110487
|
// wrap updates in a mutex, so they're always applied in invocation order.
|
110754
|
-
#mutex = new
|
110488
|
+
#mutex = new import_miniflare6.Mutex();
|
110755
110489
|
#mf;
|
110756
110490
|
onBundleStart(_4) {
|
110757
110491
|
}
|
@@ -110765,7 +110499,7 @@ var LocalRuntimeController = class extends RuntimeController {
|
|
110765
110499
|
options30.liveReload = false;
|
110766
110500
|
if (this.#mf === void 0) {
|
110767
110501
|
logger.log(source_default.dim("\u2394 Starting local server..."));
|
110768
|
-
this.#mf = new
|
110502
|
+
this.#mf = new import_miniflare6.Miniflare(options30);
|
110769
110503
|
} else {
|
110770
110504
|
logger.log(source_default.dim("\u2394 Reloading local server..."));
|
110771
110505
|
await this.#mf.setOptions(options30);
|
@@ -110902,7 +110636,7 @@ var MultiworkerRuntimeController = class extends LocalRuntimeController {
|
|
110902
110636
|
// `buildMiniflareOptions()` is asynchronous, meaning if multiple bundle
|
110903
110637
|
// updates were submitted, the second may apply before the first. Therefore,
|
110904
110638
|
// wrap updates in a mutex, so they're always applied in invocation order.
|
110905
|
-
#mutex = new
|
110639
|
+
#mutex = new import_miniflare7.Mutex();
|
110906
110640
|
#mf;
|
110907
110641
|
#options = /* @__PURE__ */ new Map();
|
110908
110642
|
#canStartMiniflare() {
|
@@ -110940,7 +110674,7 @@ var MultiworkerRuntimeController = class extends LocalRuntimeController {
|
|
110940
110674
|
const mergedMfOptions = ensureMatchingSql(this.#mergedMfOptions());
|
110941
110675
|
if (this.#mf === void 0) {
|
110942
110676
|
logger.log(source_default.dim("\u2394 Starting local server..."));
|
110943
|
-
this.#mf = new
|
110677
|
+
this.#mf = new import_miniflare7.Miniflare(mergedMfOptions);
|
110944
110678
|
} else {
|
110945
110679
|
logger.log(source_default.dim("\u2394 Reloading local server..."));
|
110946
110680
|
await this.#mf.setOptions(mergedMfOptions);
|
@@ -111038,7 +110772,7 @@ var import_node_assert9 = __toESM(require("node:assert"));
|
|
111038
110772
|
var import_node_crypto7 = require("node:crypto");
|
111039
110773
|
var import_node_events2 = __toESM(require("node:events"));
|
111040
110774
|
var import_node_path18 = __toESM(require("node:path"));
|
111041
|
-
var
|
110775
|
+
var import_miniflare9 = require("miniflare");
|
111042
110776
|
|
111043
110777
|
// embed-worker:/home/runner/work/workers-sdk/workers-sdk/packages/wrangler/templates/startDevWorker/InspectorProxyWorker.ts
|
111044
110778
|
init_import_meta_url();
|
@@ -111349,7 +111083,7 @@ var openInspector = /* @__PURE__ */ __name(async (inspectorPort, worker) => {
|
|
111349
111083
|
init_import_meta_url();
|
111350
111084
|
var fs9 = __toESM(require("node:fs"));
|
111351
111085
|
var path20 = __toESM(require("node:path"));
|
111352
|
-
var
|
111086
|
+
var import_miniflare8 = require("miniflare");
|
111353
111087
|
var CERT_EXPIRY_DAYS = 30;
|
111354
111088
|
var ONE_DAY_IN_MS = 864e5;
|
111355
111089
|
var getHttpsKeyPathFromEnv = getEnvironmentVariableFactory({
|
@@ -111449,7 +111183,7 @@ function generateCertificate() {
|
|
111449
111183
|
name: "subjectAltName",
|
111450
111184
|
altNames: [
|
111451
111185
|
{ type: 2, value: "localhost" },
|
111452
|
-
...(0,
|
111186
|
+
...(0, import_miniflare8.getAccessibleHosts)(false).map((ip) => ({ type: 7, ip }))
|
111453
111187
|
]
|
111454
111188
|
}
|
111455
111189
|
]
|
@@ -111500,7 +111234,7 @@ var ProxyController = class extends Controller {
|
|
111500
111234
|
PROXY_CONTROLLER: async (req) => {
|
111501
111235
|
const message = await req.json();
|
111502
111236
|
this.onProxyWorkerMessage(message);
|
111503
|
-
return new
|
111237
|
+
return new import_miniflare9.Response(null, { status: 204 });
|
111504
111238
|
}
|
111505
111239
|
},
|
111506
111240
|
bindings: {
|
@@ -111561,7 +111295,7 @@ var ProxyController = class extends Controller {
|
|
111561
111295
|
proxyWorkerOptions
|
111562
111296
|
);
|
111563
111297
|
const willInstantiateMiniflareInstance = !this.proxyWorker || proxyWorkerOptionsChanged;
|
111564
|
-
this.proxyWorker ??= new
|
111298
|
+
this.proxyWorker ??= new import_miniflare9.Miniflare(proxyWorkerOptions);
|
111565
111299
|
this.proxyWorkerOptions = proxyWorkerOptions;
|
111566
111300
|
if (proxyWorkerOptionsChanged) {
|
111567
111301
|
logger.debug("ProxyWorker miniflare options changed, reinstantiating...");
|
@@ -111643,7 +111377,7 @@ var ProxyController = class extends Controller {
|
|
111643
111377
|
this.inspectorProxyWorkerWebSocket?.resolve(webSocket);
|
111644
111378
|
return webSocket;
|
111645
111379
|
}
|
111646
|
-
runtimeMessageMutex = new
|
111380
|
+
runtimeMessageMutex = new import_miniflare9.Mutex();
|
111647
111381
|
async sendMessageToProxyWorker(message, retries = 3) {
|
111648
111382
|
if (this._torndown) {
|
111649
111383
|
return;
|
@@ -111796,15 +111530,15 @@ var ProxyController = class extends Controller {
|
|
111796
111530
|
);
|
111797
111531
|
}
|
111798
111532
|
if (maybeContents === void 0) {
|
111799
|
-
return new
|
111533
|
+
return new import_miniflare9.Response(null, { status: 404 });
|
111800
111534
|
}
|
111801
|
-
return new
|
111535
|
+
return new import_miniflare9.Response(maybeContents);
|
111802
111536
|
}
|
111803
111537
|
default:
|
111804
111538
|
assertNever(message);
|
111805
|
-
return new
|
111539
|
+
return new import_miniflare9.Response(null, { status: 404 });
|
111806
111540
|
}
|
111807
|
-
return new
|
111541
|
+
return new import_miniflare9.Response(null, { status: 204 });
|
111808
111542
|
}
|
111809
111543
|
_torndown = false;
|
111810
111544
|
async teardown() {
|
@@ -111857,7 +111591,7 @@ var ProxyController = class extends Controller {
|
|
111857
111591
|
__name(ProxyController, "ProxyController");
|
111858
111592
|
var ProxyControllerLogger = class extends WranglerLog {
|
111859
111593
|
log(message) {
|
111860
|
-
if (message.includes("/cdn-cgi/") && this.level <
|
111594
|
+
if (message.includes("/cdn-cgi/") && this.level < import_miniflare9.LogLevel.DEBUG) {
|
111861
111595
|
return;
|
111862
111596
|
}
|
111863
111597
|
super.log(message);
|
@@ -116527,7 +116261,7 @@ var getDatabaseInfoFromIdOrName = /* @__PURE__ */ __name(async (accountId, datab
|
|
116527
116261
|
init_import_meta_url();
|
116528
116262
|
var import_node_buffer = require("node:buffer");
|
116529
116263
|
var import_node_url8 = require("node:url");
|
116530
|
-
var
|
116264
|
+
var import_miniflare11 = require("miniflare");
|
116531
116265
|
var import_undici4 = __toESM(require_undici());
|
116532
116266
|
|
116533
116267
|
// src/dev/get-local-persistence-path.ts
|
@@ -116798,7 +116532,7 @@ __name(getKVNamespaceId, "getKVNamespaceId");
|
|
116798
116532
|
async function usingLocalNamespace(persistTo, config, namespaceId, closure) {
|
116799
116533
|
const persist = getLocalPersistencePath(persistTo, config);
|
116800
116534
|
const persistOptions = buildPersistOptions(persist);
|
116801
|
-
const mf = new
|
116535
|
+
const mf = new import_miniflare11.Miniflare({
|
116802
116536
|
script: 'addEventListener("fetch", (e) => e.respondWith(new Response(null, { status: 404 })))',
|
116803
116537
|
...persistOptions,
|
116804
116538
|
kvNamespaces: { NAMESPACE: namespaceId }
|
@@ -116816,7 +116550,7 @@ __name(usingLocalNamespace, "usingLocalNamespace");
|
|
116816
116550
|
init_import_meta_url();
|
116817
116551
|
var fs10 = __toESM(require("node:fs"));
|
116818
116552
|
var import_web = require("node:stream/web");
|
116819
|
-
var
|
116553
|
+
var import_miniflare13 = require("miniflare");
|
116820
116554
|
|
116821
116555
|
// src/queues/client.ts
|
116822
116556
|
init_import_meta_url();
|
@@ -117256,7 +116990,7 @@ __name(deleteR2Object, "deleteR2Object");
|
|
117256
116990
|
async function usingLocalBucket(persistTo, config, bucketName, closure) {
|
117257
116991
|
const persist = getLocalPersistencePath(persistTo, config);
|
117258
116992
|
const persistOptions = buildPersistOptions(persist);
|
117259
|
-
const mf = new
|
116993
|
+
const mf = new import_miniflare13.Miniflare({
|
117260
116994
|
modules: true,
|
117261
116995
|
// TODO(soon): import `reduceError()` from `miniflare:shared`
|
117262
116996
|
script: `
|
@@ -117795,7 +117529,6 @@ function getBindings(config, options30) {
|
|
117795
117529
|
wasm_modules: options30?.pages ? void 0 : config?.wasm_modules,
|
117796
117530
|
browser: config?.browser,
|
117797
117531
|
ai: config?.ai,
|
117798
|
-
images: config?.images,
|
117799
117532
|
version_metadata: config?.version_metadata,
|
117800
117533
|
text_blobs: options30?.pages ? void 0 : config?.text_blobs,
|
117801
117534
|
data_blobs: options30?.pages ? void 0 : config?.data_blobs,
|
@@ -119529,12 +119262,6 @@ function createWorkerUploadForm(worker) {
|
|
119529
119262
|
type: "ai"
|
119530
119263
|
});
|
119531
119264
|
}
|
119532
|
-
if (bindings.images !== void 0) {
|
119533
|
-
metadataBindings.push({
|
119534
|
-
name: bindings.images.binding,
|
119535
|
-
type: "images"
|
119536
|
-
});
|
119537
|
-
}
|
119538
119265
|
if (bindings.version_metadata !== void 0) {
|
119539
119266
|
metadataBindings.push({
|
119540
119267
|
name: bindings.version_metadata.binding,
|
@@ -119746,7 +119473,7 @@ __name(logBuildOutput, "logBuildOutput");
|
|
119746
119473
|
|
119747
119474
|
// src/deployment-bundle/node-compat.ts
|
119748
119475
|
init_import_meta_url();
|
119749
|
-
var
|
119476
|
+
var import_miniflare15 = require("miniflare");
|
119750
119477
|
function validateNodeCompatMode(compatibilityDateStr = "2000-01-01", compatibilityFlags, {
|
119751
119478
|
nodeCompat: legacy = false,
|
119752
119479
|
noBundle = void 0
|
@@ -119757,7 +119484,7 @@ function validateNodeCompatMode(compatibilityDateStr = "2000-01-01", compatibili
|
|
119757
119484
|
hasNodejsCompatFlag,
|
119758
119485
|
hasNodejsCompatV2Flag,
|
119759
119486
|
hasExperimentalNodejsCompatV2Flag
|
119760
|
-
} = (0,
|
119487
|
+
} = (0, import_miniflare15.getNodeCompat)(compatibilityDateStr, compatibilityFlags, {
|
119761
119488
|
nodeCompat: legacy
|
119762
119489
|
});
|
119763
119490
|
if (hasExperimentalNodejsCompatV2Flag) {
|
@@ -122121,18 +121848,18 @@ async function publishCustomDomains(workerUrl, accountId, domains) {
|
|
122121
121848
|
}
|
122122
121849
|
);
|
122123
121850
|
const updatesRequired = changeset.updated.filter(
|
122124
|
-
(
|
121851
|
+
(domain3) => domain3.modified
|
122125
121852
|
);
|
122126
121853
|
if (updatesRequired.length > 0) {
|
122127
121854
|
const existing = await Promise.all(
|
122128
121855
|
updatesRequired.map(
|
122129
|
-
(
|
122130
|
-
`/accounts/${accountId}/workers/domains/records/${
|
121856
|
+
(domain3) => fetchResult(
|
121857
|
+
`/accounts/${accountId}/workers/domains/records/${domain3.id}`
|
122131
121858
|
)
|
122132
121859
|
)
|
122133
121860
|
);
|
122134
121861
|
const existingRendered = existing.map(
|
122135
|
-
(
|
121862
|
+
(domain3) => ` \u2022 ${domain3.hostname} (used as a domain for "${domain3.service}")`
|
122136
121863
|
).join("\n");
|
122137
121864
|
const message = `Custom Domains already exist for these domains:
|
122138
121865
|
${existingRendered}
|
@@ -122143,7 +121870,7 @@ Update them to point to this script instead?`;
|
|
122143
121870
|
config.override_existing_origin = true;
|
122144
121871
|
}
|
122145
121872
|
if (changeset.conflicting.length > 0) {
|
122146
|
-
const conflicitingRendered = changeset.conflicting.map((
|
121873
|
+
const conflicitingRendered = changeset.conflicting.map((domain3) => ` \u2022 ${domain3.hostname}`).join("\n");
|
122147
121874
|
const message = `You already have DNS records that conflict for these Custom Domains:
|
122148
121875
|
${conflicitingRendered}
|
122149
121876
|
Update them to point to this script instead?`;
|
@@ -122160,7 +121887,7 @@ Update them to point to this script instead?`;
|
|
122160
121887
|
"Content-Type": "application/json"
|
122161
121888
|
}
|
122162
121889
|
});
|
122163
|
-
return domains.map((
|
121890
|
+
return domains.map((domain3) => renderRoute(domain3));
|
122164
121891
|
}
|
122165
121892
|
__name(publishCustomDomains, "publishCustomDomains");
|
122166
121893
|
async function deploy(props) {
|
@@ -123790,7 +123517,7 @@ init_import_meta_url();
|
|
123790
123517
|
// src/cli-hotkeys.ts
|
123791
123518
|
init_import_meta_url();
|
123792
123519
|
var import_readline = __toESM(require("readline"));
|
123793
|
-
var
|
123520
|
+
var import_miniflare16 = require("miniflare");
|
123794
123521
|
|
123795
123522
|
// src/utils/onKeyPress.ts
|
123796
123523
|
init_import_meta_url();
|
@@ -123884,16 +123611,16 @@ function cli_hotkeys_default(options30) {
|
|
123884
123611
|
__name(printInstructions, "printInstructions");
|
123885
123612
|
Logger.registerBeforeLogHook(clearPreviousInstructions);
|
123886
123613
|
Logger.registerAfterLogHook(printInstructions);
|
123887
|
-
|
123888
|
-
|
123614
|
+
import_miniflare16.Log.unstable_registerBeforeLogHook(clearPreviousInstructions);
|
123615
|
+
import_miniflare16.Log.unstable_registerAfterLogHook(printInstructions);
|
123889
123616
|
printInstructions();
|
123890
123617
|
return () => {
|
123891
123618
|
unregisterKeyPress();
|
123892
123619
|
clearPreviousInstructions();
|
123893
123620
|
Logger.registerBeforeLogHook(void 0);
|
123894
123621
|
Logger.registerAfterLogHook(void 0);
|
123895
|
-
|
123896
|
-
|
123622
|
+
import_miniflare16.Log.unstable_registerBeforeLogHook(void 0);
|
123623
|
+
import_miniflare16.Log.unstable_registerAfterLogHook(void 0);
|
123897
123624
|
};
|
123898
123625
|
}
|
123899
123626
|
__name(cli_hotkeys_default, "default");
|
@@ -124274,11 +124001,6 @@ var dev = createCommand({
|
|
124274
124001
|
type: "boolean",
|
124275
124002
|
describe: "Bind to production Vectorize indexes in local development mode",
|
124276
124003
|
default: false
|
124277
|
-
},
|
124278
|
-
"experimental-images-local-mode": {
|
124279
|
-
type: "boolean",
|
124280
|
-
describe: "Use a local lower-fidelity implementation of the Images binding",
|
124281
|
-
default: false
|
124282
124004
|
}
|
124283
124005
|
},
|
124284
124006
|
async validateArgs(args) {
|
@@ -124418,7 +124140,6 @@ async function setupDevEnv(devEnv, configPath, auth, args) {
|
|
124418
124140
|
text_blobs: void 0,
|
124419
124141
|
browser: void 0,
|
124420
124142
|
ai: args.ai,
|
124421
|
-
images: void 0,
|
124422
124143
|
version_metadata: args.version_metadata,
|
124423
124144
|
data_blobs: void 0,
|
124424
124145
|
durable_objects: { bindings: args.durableObjects ?? [] },
|
@@ -124461,7 +124182,6 @@ async function setupDevEnv(devEnv, configPath, auth, args) {
|
|
124461
124182
|
logLevel: args.logLevel,
|
124462
124183
|
registry: args.disableDevRegistry ? null : devEnv.config.latestConfig?.dev.registry,
|
124463
124184
|
bindVectorizeToProd: args.experimentalVectorizeBindToProd,
|
124464
|
-
imagesLocalMode: args.experimentalImagesLocalMode,
|
124465
124185
|
multiworkerPrimary: args.multiworkerPrimary
|
124466
124186
|
},
|
124467
124187
|
legacy: {
|
@@ -124823,7 +124543,6 @@ function getBindings2(configParam, env7, local, args) {
|
|
124823
124543
|
analytics_engine_datasets: configParam.analytics_engine_datasets,
|
124824
124544
|
browser: configParam.browser,
|
124825
124545
|
ai: args.ai || configParam.ai,
|
124826
|
-
images: configParam.images,
|
124827
124546
|
version_metadata: args.version_metadata || configParam.version_metadata,
|
124828
124547
|
unsafe: {
|
124829
124548
|
bindings: configParam.unsafe.bindings,
|
@@ -124882,7 +124601,6 @@ async function unstable_dev(script, options30, apiOptions) {
|
|
124882
124601
|
testMode,
|
124883
124602
|
testScheduled,
|
124884
124603
|
vectorizeBindToProd,
|
124885
|
-
imagesLocalMode,
|
124886
124604
|
// 2. options for alpha/beta products/libs
|
124887
124605
|
d1Databases,
|
124888
124606
|
enablePagesAssetsServiceBinding
|
@@ -124973,7 +124691,6 @@ unstable_dev()'s behaviour will likely change in future releases`
|
|
124973
124691
|
port: options30?.port ?? 0,
|
124974
124692
|
experimentalProvision: void 0,
|
124975
124693
|
experimentalVectorizeBindToProd: vectorizeBindToProd ?? false,
|
124976
|
-
experimentalImagesLocalMode: imagesLocalMode ?? false,
|
124977
124694
|
enableIpc: options30?.experimental?.enableIpc
|
124978
124695
|
};
|
124979
124696
|
const devServer = await run(
|
@@ -127535,8 +127252,7 @@ async function resolveDevConfig(config, input) {
|
|
127535
127252
|
persist: localPersistencePath,
|
127536
127253
|
registry: input.dev?.registry,
|
127537
127254
|
bindVectorizeToProd: input.dev?.bindVectorizeToProd ?? false,
|
127538
|
-
multiworkerPrimary: input.dev?.multiworkerPrimary
|
127539
|
-
imagesLocalMode: input.dev?.imagesLocalMode ?? false
|
127255
|
+
multiworkerPrimary: input.dev?.multiworkerPrimary
|
127540
127256
|
};
|
127541
127257
|
}
|
127542
127258
|
__name(resolveDevConfig, "resolveDevConfig");
|
@@ -127571,7 +127287,6 @@ async function resolveBindings(config, input) {
|
|
127571
127287
|
{
|
127572
127288
|
registry: input.dev?.registry,
|
127573
127289
|
local: !input.dev?.remote,
|
127574
|
-
imagesLocalMode: input.dev?.imagesLocalMode,
|
127575
127290
|
name: config.name
|
127576
127291
|
}
|
127577
127292
|
);
|
@@ -127825,7 +127540,7 @@ __name(ConfigController, "ConfigController");
|
|
127825
127540
|
|
127826
127541
|
// src/api/startDevWorker/RemoteRuntimeController.ts
|
127827
127542
|
init_import_meta_url();
|
127828
|
-
var
|
127543
|
+
var import_miniflare18 = require("miniflare");
|
127829
127544
|
|
127830
127545
|
// src/dev/create-worker-preview.ts
|
127831
127546
|
init_import_meta_url();
|
@@ -128179,7 +127894,7 @@ __name(notImplemented, "notImplemented");
|
|
128179
127894
|
var RemoteRuntimeController = class extends RuntimeController {
|
128180
127895
|
#abortController = new AbortController();
|
128181
127896
|
#currentBundleId = 0;
|
128182
|
-
#mutex = new
|
127897
|
+
#mutex = new import_miniflare18.Mutex();
|
128183
127898
|
#session;
|
128184
127899
|
async #previewSession(props) {
|
128185
127900
|
try {
|
@@ -128572,7 +128287,7 @@ init_import_meta_url();
|
|
128572
128287
|
|
128573
128288
|
// src/api/integrations/platform/index.ts
|
128574
128289
|
init_import_meta_url();
|
128575
|
-
var
|
128290
|
+
var import_miniflare20 = require("miniflare");
|
128576
128291
|
|
128577
128292
|
// src/api/integrations/platform/caches.ts
|
128578
128293
|
init_import_meta_url();
|
@@ -128633,7 +128348,7 @@ __name(ExecutionContext, "ExecutionContext");
|
|
128633
128348
|
|
128634
128349
|
// src/api/integrations/platform/services.ts
|
128635
128350
|
init_import_meta_url();
|
128636
|
-
var
|
128351
|
+
var import_miniflare19 = require("miniflare");
|
128637
128352
|
var import_undici13 = __toESM(require_undici());
|
128638
128353
|
async function getServiceBindings(services = []) {
|
128639
128354
|
if (services.length === 0) {
|
@@ -128685,9 +128400,9 @@ function getServiceBindingProxyFetch({
|
|
128685
128400
|
try {
|
128686
128401
|
const resp = await (0, import_undici13.fetch)(newUrl, request4);
|
128687
128402
|
const respBody = await resp.arrayBuffer();
|
128688
|
-
return new
|
128403
|
+
return new import_miniflare19.Response(respBody, resp);
|
128689
128404
|
} catch {
|
128690
|
-
return new
|
128405
|
+
return new import_miniflare19.Response(
|
128691
128406
|
`Error: Unable to fetch from external service (${serviceName} bound with ${bindingName} binding), please make sure that the service is still running with \`wrangler dev\``,
|
128692
128407
|
{ status: 500 }
|
128693
128408
|
);
|
@@ -128718,7 +128433,7 @@ async function getPlatformProxy(options30 = {}) {
|
|
128718
128433
|
},
|
128719
128434
|
() => getMiniflareOptionsFromConfig(rawConfig, env7, options30)
|
128720
128435
|
);
|
128721
|
-
const mf = new
|
128436
|
+
const mf = new import_miniflare20.Miniflare({
|
128722
128437
|
script: "",
|
128723
128438
|
modules: true,
|
128724
128439
|
...miniflareOptions
|
@@ -128749,8 +128464,7 @@ async function getMiniflareOptionsFromConfig(rawConfig, env7, options30) {
|
|
128749
128464
|
queueConsumers: void 0,
|
128750
128465
|
services: rawConfig.services,
|
128751
128466
|
serviceBindings: {},
|
128752
|
-
migrations: rawConfig.migrations
|
128753
|
-
imagesLocalMode: false
|
128467
|
+
migrations: rawConfig.migrations
|
128754
128468
|
});
|
128755
128469
|
const persistOptions = getMiniflarePersistOptions(options30.persist);
|
128756
128470
|
const serviceBindings = await getServiceBindings(bindings.services);
|
@@ -128817,13 +128531,12 @@ function unstable_getMiniflareWorkerOptions(configOrConfigPath, env7) {
|
|
128817
128531
|
queueConsumers: config.queues.consumers,
|
128818
128532
|
services: [],
|
128819
128533
|
serviceBindings: {},
|
128820
|
-
migrations: config.migrations
|
128821
|
-
imagesLocalMode: false
|
128534
|
+
migrations: config.migrations
|
128822
128535
|
});
|
128823
128536
|
if (bindings.services !== void 0) {
|
128824
128537
|
bindingOptions.serviceBindings = Object.fromEntries(
|
128825
128538
|
bindings.services.map((binding) => {
|
128826
|
-
const name2 = binding.service === config.name ?
|
128539
|
+
const name2 = binding.service === config.name ? import_miniflare20.kCurrentWorker : binding.service;
|
128827
128540
|
return [binding.binding, { name: name2, entrypoint: binding.entrypoint }];
|
128828
128541
|
})
|
128829
128542
|
);
|
@@ -133740,12 +133453,12 @@ var ImageRegistriesService = class {
|
|
133740
133453
|
* @returns AccountRegistryToken Credentials with 'pull' or 'push' permissions to access the registry
|
133741
133454
|
* @throws ApiError
|
133742
133455
|
*/
|
133743
|
-
static generateImageRegistryCredentials(
|
133456
|
+
static generateImageRegistryCredentials(domain3, requestBody) {
|
133744
133457
|
return request(OpenAPI, {
|
133745
133458
|
method: "POST",
|
133746
133459
|
url: "/registries/{domain}/credentials",
|
133747
133460
|
path: {
|
133748
|
-
domain:
|
133461
|
+
domain: domain3
|
133749
133462
|
},
|
133750
133463
|
body: requestBody,
|
133751
133464
|
mediaType: "application/json",
|
@@ -133764,12 +133477,12 @@ var ImageRegistriesService = class {
|
|
133764
133477
|
* @returns EmptyResponse The image registry is deleted
|
133765
133478
|
* @throws ApiError
|
133766
133479
|
*/
|
133767
|
-
static deleteImageRegistry(
|
133480
|
+
static deleteImageRegistry(domain3) {
|
133768
133481
|
return request(OpenAPI, {
|
133769
133482
|
method: "DELETE",
|
133770
133483
|
url: "/registries/{domain}",
|
133771
133484
|
path: {
|
133772
|
-
domain:
|
133485
|
+
domain: domain3
|
133773
133486
|
},
|
133774
133487
|
errors: {
|
133775
133488
|
404: `The image registry does not exist`,
|
@@ -134009,8 +133722,8 @@ var imageRe = (() => {
|
|
134009
133722
|
const alphaNumeric = "[a-z0-9]+";
|
134010
133723
|
const separator = "(?:\\.|_|__|-+)";
|
134011
133724
|
const port = ":[0-9]+";
|
134012
|
-
const
|
134013
|
-
const name2 = `(?:${
|
133725
|
+
const domain3 = `${alphaNumeric}(?:${separator}${alphaNumeric})*`;
|
133726
|
+
const name2 = `(?:${domain3}(?:${port})?/)?(?:${domain3}/)*(?:${domain3})`;
|
134014
133727
|
const tag = ":([a-zA-Z0-9_][a-zA-Z0-9._-]{0,127})";
|
134015
133728
|
const digest = "@(sha256:[A-Fa-f0-9]+)";
|
134016
133729
|
const reference = `(?:${tag}(?:${digest})?|${digest})`;
|
@@ -135040,6 +134753,173 @@ ${formatError(err)}`
|
|
135040
134753
|
}
|
135041
134754
|
__name(applyCommand, "applyCommand");
|
135042
134755
|
|
134756
|
+
// src/cloudchamber/build.ts
|
134757
|
+
init_import_meta_url();
|
134758
|
+
var import_child_process2 = require("child_process");
|
134759
|
+
var domain = "registry.cloudchamber.cfdata.org";
|
134760
|
+
async function dockerLoginManagedRegistry(options30) {
|
134761
|
+
const dockerPath = options30.pathToDocker ?? "docker";
|
134762
|
+
const expirationMinutes = 15;
|
134763
|
+
await ImageRegistriesService.generateImageRegistryCredentials(domain, {
|
134764
|
+
expiration_minutes: expirationMinutes,
|
134765
|
+
permissions: ["push"]
|
134766
|
+
}).then(async (credentials) => {
|
134767
|
+
const child = (0, import_child_process2.spawn)(
|
134768
|
+
dockerPath,
|
134769
|
+
["login", "--password-stdin", "--username", "v1", domain],
|
134770
|
+
{ stdio: ["pipe", "inherit", "inherit"] }
|
134771
|
+
).on("error", (err) => {
|
134772
|
+
throw err;
|
134773
|
+
});
|
134774
|
+
child.stdin.write(credentials.password);
|
134775
|
+
child.stdin.end();
|
134776
|
+
await new Promise((resolve24) => {
|
134777
|
+
child.on("close", resolve24);
|
134778
|
+
});
|
134779
|
+
});
|
134780
|
+
}
|
134781
|
+
__name(dockerLoginManagedRegistry, "dockerLoginManagedRegistry");
|
134782
|
+
async function constructBuildCommand(options30) {
|
134783
|
+
if (typeof options30.pathToDockerfile !== "undefined" && options30.pathToDockerfile !== "" && (typeof options30.imageTag === "undefined" || options30.imageTag === "")) {
|
134784
|
+
throw new Error("must provide an image tag if providing a docker file");
|
134785
|
+
}
|
134786
|
+
const dockerFilePath = options30.pathToDockerfile;
|
134787
|
+
const dockerPath = options30.pathToDocker ?? "docker";
|
134788
|
+
const imageTag = domain + "/" + options30.imageTag;
|
134789
|
+
const platform3 = options30.platform ? options30.platform : "linux/amd64";
|
134790
|
+
const defaultBuildCommand = [
|
134791
|
+
dockerPath,
|
134792
|
+
"build",
|
134793
|
+
"-t",
|
134794
|
+
imageTag,
|
134795
|
+
"--platform",
|
134796
|
+
platform3,
|
134797
|
+
dockerFilePath
|
134798
|
+
].join(" ");
|
134799
|
+
return defaultBuildCommand;
|
134800
|
+
}
|
134801
|
+
__name(constructBuildCommand, "constructBuildCommand");
|
134802
|
+
async function dockerBuild(options30) {
|
134803
|
+
const buildCmd = options30.buildCmd.split(" ").slice(1);
|
134804
|
+
const buildExec = options30.buildCmd.split(" ").shift();
|
134805
|
+
const child = (0, import_child_process2.spawn)(String(buildExec), buildCmd, { stdio: "inherit" }).on(
|
134806
|
+
"error",
|
134807
|
+
(err) => {
|
134808
|
+
throw err;
|
134809
|
+
}
|
134810
|
+
);
|
134811
|
+
await new Promise((resolve24) => {
|
134812
|
+
child.on("close", resolve24);
|
134813
|
+
});
|
134814
|
+
}
|
134815
|
+
__name(dockerBuild, "dockerBuild");
|
134816
|
+
async function tagImage(original, newTag, dockerPath) {
|
134817
|
+
const child = (0, import_child_process2.spawn)(dockerPath, ["tag", original, newTag]).on(
|
134818
|
+
"error",
|
134819
|
+
(err) => {
|
134820
|
+
throw err;
|
134821
|
+
}
|
134822
|
+
);
|
134823
|
+
await new Promise((resolve24) => {
|
134824
|
+
child.on("close", resolve24);
|
134825
|
+
});
|
134826
|
+
}
|
134827
|
+
__name(tagImage, "tagImage");
|
134828
|
+
async function push(options30) {
|
134829
|
+
if (typeof options30.imageTag === "undefined") {
|
134830
|
+
throw new Error("Must provide an image tag when pushing");
|
134831
|
+
}
|
134832
|
+
const imageTag = domain + "/" + options30.imageTag;
|
134833
|
+
const dockerPath = options30.pathToDocker ?? "docker";
|
134834
|
+
await tagImage(options30.imageTag, imageTag, dockerPath);
|
134835
|
+
const child = (0, import_child_process2.spawn)(dockerPath, ["image", "push", imageTag], {
|
134836
|
+
stdio: "inherit"
|
134837
|
+
}).on("error", (err) => {
|
134838
|
+
throw err;
|
134839
|
+
});
|
134840
|
+
await new Promise((resolve24) => {
|
134841
|
+
child.on("close", resolve24);
|
134842
|
+
});
|
134843
|
+
}
|
134844
|
+
__name(push, "push");
|
134845
|
+
function buildYargs(yargs) {
|
134846
|
+
return yargs.positional("PATH", {
|
134847
|
+
type: "string",
|
134848
|
+
describe: "Path for the directory containing the Dockerfile to build",
|
134849
|
+
demandOption: true
|
134850
|
+
}).option("tag", {
|
134851
|
+
alias: "t",
|
134852
|
+
type: "string",
|
134853
|
+
demandOption: true,
|
134854
|
+
describe: 'Name and optionally a tag (format: "name:tag")'
|
134855
|
+
}).option("path-to-docker", {
|
134856
|
+
type: "string",
|
134857
|
+
default: "docker",
|
134858
|
+
describe: "Path to your docker binary if it's not on $PATH",
|
134859
|
+
demandOption: false
|
134860
|
+
}).option("push", {
|
134861
|
+
alias: "p",
|
134862
|
+
type: "boolean",
|
134863
|
+
describe: "Push the built image to Cloudflare's managed registry",
|
134864
|
+
default: false
|
134865
|
+
}).option("platform", {
|
134866
|
+
type: "string",
|
134867
|
+
default: "linux/amd64",
|
134868
|
+
describe: "Platform to build for. Defaults to the architecture support by Workers (linux/amd64)",
|
134869
|
+
demandOption: false
|
134870
|
+
});
|
134871
|
+
}
|
134872
|
+
__name(buildYargs, "buildYargs");
|
134873
|
+
function pushYargs(yargs) {
|
134874
|
+
return yargs.option("path-to-docker", {
|
134875
|
+
type: "string",
|
134876
|
+
default: "docker",
|
134877
|
+
describe: "Path to your docker binary if it's not on $PATH",
|
134878
|
+
demandOption: false
|
134879
|
+
}).positional("TAG", { type: "string", demandOption: true });
|
134880
|
+
}
|
134881
|
+
__name(pushYargs, "pushYargs");
|
134882
|
+
async function buildCommand(args, _4) {
|
134883
|
+
try {
|
134884
|
+
await constructBuildCommand({
|
134885
|
+
imageTag: args.tag,
|
134886
|
+
pathToDockerfile: args.PATH,
|
134887
|
+
pathToDocker: args.pathToDocker
|
134888
|
+
}).then(async (bc2) => dockerBuild({ buildCmd: bc2 })).then(async () => {
|
134889
|
+
if (args.push) {
|
134890
|
+
await dockerLoginManagedRegistry({
|
134891
|
+
pathToDocker: args.pathToDocker
|
134892
|
+
}).then(async () => {
|
134893
|
+
await push({ imageTag: args.tag });
|
134894
|
+
});
|
134895
|
+
}
|
134896
|
+
});
|
134897
|
+
} catch (error2) {
|
134898
|
+
if (error2 instanceof Error) {
|
134899
|
+
logRaw(error2.message);
|
134900
|
+
} else {
|
134901
|
+
logRaw("An unknown error occurred");
|
134902
|
+
}
|
134903
|
+
}
|
134904
|
+
}
|
134905
|
+
__name(buildCommand, "buildCommand");
|
134906
|
+
async function pushCommand(args, _4) {
|
134907
|
+
try {
|
134908
|
+
await dockerLoginManagedRegistry({
|
134909
|
+
pathToDocker: args.pathToDocker
|
134910
|
+
}).then(async () => {
|
134911
|
+
await push({ imageTag: args.TAG });
|
134912
|
+
});
|
134913
|
+
} catch (error2) {
|
134914
|
+
if (error2 instanceof Error) {
|
134915
|
+
logRaw(error2.message);
|
134916
|
+
} else {
|
134917
|
+
logRaw("An unknown error occurred");
|
134918
|
+
}
|
134919
|
+
}
|
134920
|
+
}
|
134921
|
+
__name(pushCommand, "pushCommand");
|
134922
|
+
|
135043
134923
|
// src/cloudchamber/create.ts
|
135044
134924
|
init_import_meta_url();
|
135045
134925
|
|
@@ -136491,7 +136371,7 @@ public_key: ${dim(
|
|
136491
136371
|
__name(handleListImageRegistriesCommand, "handleListImageRegistriesCommand");
|
136492
136372
|
async function handleConfigureImageRegistryCommand(args, _config) {
|
136493
136373
|
startSection("Configure a Docker registry in Cloudflare");
|
136494
|
-
const
|
136374
|
+
const domain3 = await processArgument({ domain: args.domain }, "domain", {
|
136495
136375
|
type: "text",
|
136496
136376
|
question: "What is the domain of your registry?",
|
136497
136377
|
validate: (text) => {
|
@@ -136513,7 +136393,7 @@ async function handleConfigureImageRegistryCommand(args, _config) {
|
|
136513
136393
|
const [registry, err] = await wrap2(
|
136514
136394
|
promiseSpinner(
|
136515
136395
|
ImageRegistriesService.createImageRegistry({
|
136516
|
-
domain:
|
136396
|
+
domain: domain3,
|
136517
136397
|
is_public: isPublic
|
136518
136398
|
})
|
136519
136399
|
)
|
@@ -136943,6 +136823,16 @@ var cloudchamber = /* @__PURE__ */ __name((yargs, subHelp) => {
|
|
136943
136823
|
"apply the changes in the container applications to deploy",
|
136944
136824
|
(args) => applyCommandOptionalYargs(args),
|
136945
136825
|
(args) => handleFailure(applyCommand)(args)
|
136826
|
+
).command(
|
136827
|
+
"build [PATH]",
|
136828
|
+
"build a dockerfile",
|
136829
|
+
(args) => buildYargs(args),
|
136830
|
+
(args) => handleFailure(buildCommand)(args)
|
136831
|
+
).command(
|
136832
|
+
"push [TAG]",
|
136833
|
+
"push a tagged image to a Cloudflare managed registry, which is automatically integrated with your account",
|
136834
|
+
(args) => pushYargs(args),
|
136835
|
+
(args) => handleFailure(pushCommand)(args)
|
136946
136836
|
);
|
136947
136837
|
}, "cloudchamber");
|
136948
136838
|
|
@@ -140476,7 +140366,7 @@ var import_fs13 = require("fs");
|
|
140476
140366
|
var import_node_assert25 = __toESM(require("node:assert"));
|
140477
140367
|
var import_node_path54 = __toESM(require("node:path"));
|
140478
140368
|
var import_md5_file = __toESM(require_md5_file());
|
140479
|
-
var
|
140369
|
+
var import_miniflare22 = require("miniflare");
|
140480
140370
|
var import_undici16 = __toESM(require_undici());
|
140481
140371
|
|
140482
140372
|
// src/d1/splitter.ts
|
@@ -140812,7 +140702,7 @@ async function executeLocally({
|
|
140812
140702
|
logger.log(
|
140813
140703
|
"\u{1F300} To execute on your remote database, add a --remote flag to your wrangler command."
|
140814
140704
|
);
|
140815
|
-
const mf = new
|
140705
|
+
const mf = new import_miniflare22.Miniflare({
|
140816
140706
|
modules: true,
|
140817
140707
|
script: "",
|
140818
140708
|
d1Persist,
|
@@ -141075,7 +140965,7 @@ __name(checkForSQLiteBinary, "checkForSQLiteBinary");
|
|
141075
140965
|
init_import_meta_url();
|
141076
140966
|
var import_promises24 = __toESM(require("node:fs/promises"));
|
141077
140967
|
var import_node_path55 = __toESM(require("node:path"));
|
141078
|
-
var
|
140968
|
+
var import_miniflare23 = require("miniflare");
|
141079
140969
|
var import_undici17 = __toESM(require_undici());
|
141080
140970
|
function Options7(yargs) {
|
141081
140971
|
return Name(yargs).option("local", {
|
@@ -141144,7 +141034,7 @@ async function exportLocal(config, name2, output, tables, noSchema, noData) {
|
|
141144
141034
|
logger.log(
|
141145
141035
|
"\u{1F300} To export your remote database, add a --remote flag to your wrangler command."
|
141146
141036
|
);
|
141147
|
-
const mf = new
|
141037
|
+
const mf = new import_miniflare23.Miniflare({
|
141148
141038
|
modules: true,
|
141149
141039
|
script: "export default {}",
|
141150
141040
|
d1Persist,
|
@@ -144073,13 +143963,6 @@ async function mapBindings(accountId, bindings) {
|
|
144073
143963
|
};
|
144074
143964
|
}
|
144075
143965
|
break;
|
144076
|
-
case "images":
|
144077
|
-
{
|
144078
|
-
configObj.images = {
|
144079
|
-
binding: binding.name
|
144080
|
-
};
|
144081
|
-
}
|
144082
|
-
break;
|
144083
143966
|
case "r2_bucket":
|
144084
143967
|
{
|
144085
143968
|
configObj.r2_buckets = [
|
@@ -147708,11 +147591,6 @@ function Options14(yargs) {
|
|
147708
147591
|
type: "boolean",
|
147709
147592
|
describe: "Bind to production Vectorize indexes in local development mode",
|
147710
147593
|
default: false
|
147711
|
-
},
|
147712
|
-
"experimental-images-local-mode": {
|
147713
|
-
type: "boolean",
|
147714
|
-
describe: "Use a local lower-fidelity implementation of the Images binding",
|
147715
|
-
default: false
|
147716
147594
|
}
|
147717
147595
|
});
|
147718
147596
|
}
|
@@ -148153,7 +148031,6 @@ ${JSON.stringify(defaultRoutesJSONSpec, null, 2)}`
|
|
148153
148031
|
logLevel: args.logLevel ?? "log",
|
148154
148032
|
experimentalProvision: void 0,
|
148155
148033
|
experimentalVectorizeBindToProd: false,
|
148156
|
-
experimentalImagesLocalMode: false,
|
148157
148034
|
enableIpc: true,
|
148158
148035
|
config: Array.isArray(args.config) ? args.config : void 0,
|
148159
148036
|
legacyAssets: void 0,
|
@@ -148439,12 +148316,12 @@ init_import_meta_url();
|
|
148439
148316
|
var import_fs14 = require("fs");
|
148440
148317
|
var import_promises28 = require("node:fs/promises");
|
148441
148318
|
var import_toml8 = __toESM(require_toml());
|
148442
|
-
var
|
148319
|
+
var import_miniflare24 = require("miniflare");
|
148443
148320
|
async function toEnvironment(deploymentConfig, accountId) {
|
148444
148321
|
const configObj = {};
|
148445
148322
|
configObj.compatibility_date = deploymentConfig.compatibility_date ?? (/* @__PURE__ */ new Date()).toISOString().substring(0, 10);
|
148446
148323
|
if (deploymentConfig.always_use_latest_compatibility_date) {
|
148447
|
-
configObj.compatibility_date =
|
148324
|
+
configObj.compatibility_date = import_miniflare24.supportedCompatibilityDate;
|
148448
148325
|
}
|
148449
148326
|
if (deploymentConfig.compatibility_flags?.length) {
|
148450
148327
|
configObj.compatibility_flags = deploymentConfig.compatibility_flags;
|
@@ -148802,7 +148679,6 @@ async function createDraftWorker({
|
|
148802
148679
|
wasm_modules: {},
|
148803
148680
|
browser: void 0,
|
148804
148681
|
ai: void 0,
|
148805
|
-
images: void 0,
|
148806
148682
|
version_metadata: void 0,
|
148807
148683
|
text_blobs: {},
|
148808
148684
|
data_blobs: {},
|
@@ -149826,12 +149702,12 @@ init_import_meta_url();
|
|
149826
149702
|
init_import_meta_url();
|
149827
149703
|
|
149828
149704
|
// ../../node_modules/.pnpm/@smithy+util-buffer-from@2.2.0/node_modules/@smithy/util-buffer-from/dist-es/index.js
|
149829
|
-
var
|
149705
|
+
var import_buffer2 = require("buffer");
|
149830
149706
|
var fromString2 = /* @__PURE__ */ __name((input, encoding) => {
|
149831
149707
|
if (typeof input !== "string") {
|
149832
149708
|
throw new TypeError(`The "input" argument must be of type string. Received type ${typeof input} (${input})`);
|
149833
149709
|
}
|
149834
|
-
return encoding ?
|
149710
|
+
return encoding ? import_buffer2.Buffer.from(input, encoding) : import_buffer2.Buffer.from(input);
|
149835
149711
|
}, "fromString");
|
149836
149712
|
|
149837
149713
|
// ../../node_modules/.pnpm/@smithy+util-utf8@2.3.0/node_modules/@smithy/util-utf8/dist-es/fromUtf8.js
|
@@ -155276,15 +155152,15 @@ var r2BucketDomainGetCommand = createCommand({
|
|
155276
155152
|
type: "string"
|
155277
155153
|
}
|
155278
155154
|
},
|
155279
|
-
async handler({ bucket, domain:
|
155155
|
+
async handler({ bucket, domain: domain3, jurisdiction }, { config }) {
|
155280
155156
|
const accountId = await requireAuth(config);
|
155281
155157
|
logger.log(
|
155282
|
-
`Retrieving custom domain '${
|
155158
|
+
`Retrieving custom domain '${domain3}' connected to bucket '${bucket}'...`
|
155283
155159
|
);
|
155284
155160
|
const domainResponse = await getCustomDomain(
|
155285
155161
|
accountId,
|
155286
155162
|
bucket,
|
155287
|
-
|
155163
|
+
domain3,
|
155288
155164
|
jurisdiction
|
155289
155165
|
);
|
155290
155166
|
const tableOutput = tableFromCustomDomainListResponse([domainResponse]);
|
@@ -155373,7 +155249,7 @@ var r2BucketDomainAddCommand = createCommand({
|
|
155373
155249
|
const accountId = await requireAuth(config);
|
155374
155250
|
const {
|
155375
155251
|
bucket,
|
155376
|
-
domain:
|
155252
|
+
domain: domain3,
|
155377
155253
|
zoneId,
|
155378
155254
|
minTls = "1.0",
|
155379
155255
|
jurisdiction,
|
@@ -155381,25 +155257,25 @@ var r2BucketDomainAddCommand = createCommand({
|
|
155381
155257
|
} = args;
|
155382
155258
|
if (!force) {
|
155383
155259
|
const confirmedAdd = await confirm(
|
155384
|
-
`Are you sure you want to add the custom domain '${
|
155260
|
+
`Are you sure you want to add the custom domain '${domain3}' to bucket '${bucket}'? The contents of your bucket will be made publicly available at 'https://${domain3}'`
|
155385
155261
|
);
|
155386
155262
|
if (!confirmedAdd) {
|
155387
155263
|
logger.log("Add cancelled.");
|
155388
155264
|
return;
|
155389
155265
|
}
|
155390
155266
|
}
|
155391
|
-
logger.log(`Connecting custom domain '${
|
155267
|
+
logger.log(`Connecting custom domain '${domain3}' to bucket '${bucket}'...`);
|
155392
155268
|
await attachCustomDomainToBucket(
|
155393
155269
|
accountId,
|
155394
155270
|
bucket,
|
155395
155271
|
{
|
155396
|
-
domain:
|
155272
|
+
domain: domain3,
|
155397
155273
|
zoneId,
|
155398
155274
|
minTLS: minTls
|
155399
155275
|
},
|
155400
155276
|
jurisdiction
|
155401
155277
|
);
|
155402
|
-
logger.log(`\u2728 Custom domain '${
|
155278
|
+
logger.log(`\u2728 Custom domain '${domain3}' connected successfully.`);
|
155403
155279
|
}
|
155404
155280
|
});
|
155405
155281
|
var r2BucketDomainRemoveCommand = createCommand({
|
@@ -155435,19 +155311,19 @@ var r2BucketDomainRemoveCommand = createCommand({
|
|
155435
155311
|
},
|
155436
155312
|
async handler(args, { config }) {
|
155437
155313
|
const accountId = await requireAuth(config);
|
155438
|
-
const { bucket, domain:
|
155314
|
+
const { bucket, domain: domain3, jurisdiction, force } = args;
|
155439
155315
|
if (!force) {
|
155440
155316
|
const confirmedRemoval = await confirm(
|
155441
|
-
`Are you sure you want to remove the custom domain '${
|
155317
|
+
`Are you sure you want to remove the custom domain '${domain3}' from bucket '${bucket}'? Your bucket will no longer be available from 'https://${domain3}'`
|
155442
155318
|
);
|
155443
155319
|
if (!confirmedRemoval) {
|
155444
155320
|
logger.log("Removal cancelled.");
|
155445
155321
|
return;
|
155446
155322
|
}
|
155447
155323
|
}
|
155448
|
-
logger.log(`Removing custom domain '${
|
155449
|
-
await removeCustomDomainFromBucket(accountId, bucket,
|
155450
|
-
logger.log(`Custom domain '${
|
155324
|
+
logger.log(`Removing custom domain '${domain3}' from bucket '${bucket}'...`);
|
155325
|
+
await removeCustomDomainFromBucket(accountId, bucket, domain3, jurisdiction);
|
155326
|
+
logger.log(`Custom domain '${domain3}' removed successfully.`);
|
155451
155327
|
}
|
155452
155328
|
});
|
155453
155329
|
var r2BucketDomainUpdateCommand = createCommand({
|
@@ -155482,19 +155358,19 @@ var r2BucketDomainUpdateCommand = createCommand({
|
|
155482
155358
|
},
|
155483
155359
|
async handler(args, { config }) {
|
155484
155360
|
const accountId = await requireAuth(config);
|
155485
|
-
const { bucket, domain:
|
155486
|
-
logger.log(`Updating custom domain '${
|
155361
|
+
const { bucket, domain: domain3, minTls, jurisdiction } = args;
|
155362
|
+
logger.log(`Updating custom domain '${domain3}' for bucket '${bucket}'...`);
|
155487
155363
|
await configureCustomDomainSettings(
|
155488
155364
|
accountId,
|
155489
155365
|
bucket,
|
155490
|
-
|
155366
|
+
domain3,
|
155491
155367
|
{
|
155492
|
-
domain:
|
155368
|
+
domain: domain3,
|
155493
155369
|
minTLS: minTls
|
155494
155370
|
},
|
155495
155371
|
jurisdiction
|
155496
155372
|
);
|
155497
|
-
logger.log(`\u2728 Custom domain '${
|
155373
|
+
logger.log(`\u2728 Custom domain '${domain3}' updated successfully.`);
|
155498
155374
|
}
|
155499
155375
|
});
|
155500
155376
|
|
@@ -163852,9 +163728,9 @@ var NODE_VERSION = parseSemver(process.versions.node);
|
|
163852
163728
|
|
163853
163729
|
// ../../node_modules/.pnpm/@sentry+node@7.87.0_supports-color@9.2.2/node_modules/@sentry/node/esm/async/domain.js
|
163854
163730
|
init_import_meta_url();
|
163855
|
-
var
|
163731
|
+
var domain2 = __toESM(require("domain"));
|
163856
163732
|
function getActiveDomain() {
|
163857
|
-
return
|
163733
|
+
return domain2.active;
|
163858
163734
|
}
|
163859
163735
|
__name(getActiveDomain, "getActiveDomain");
|
163860
163736
|
function getCurrentHub2() {
|
@@ -163877,7 +163753,7 @@ function runWithAsyncContext2(callback, options30) {
|
|
163877
163753
|
if (activeDomain && _optionalChain([options30, "optionalAccess", (_4) => _4.reuseExisting])) {
|
163878
163754
|
return callback();
|
163879
163755
|
}
|
163880
|
-
const local =
|
163756
|
+
const local = domain2.create();
|
163881
163757
|
const parentHub = activeDomain ? getHubFromCarrier(activeDomain) : void 0;
|
163882
163758
|
const newHub = createNewHub(parentHub);
|
163883
163759
|
setHubOnCarrier(local, newHub);
|
@@ -164728,7 +164604,7 @@ __name(_readSourceFile, "_readSourceFile");
|
|
164728
164604
|
|
164729
164605
|
// ../../node_modules/.pnpm/@sentry+node@7.87.0_supports-color@9.2.2/node_modules/@sentry/node/esm/integrations/context.js
|
164730
164606
|
init_import_meta_url();
|
164731
|
-
var
|
164607
|
+
var import_child_process4 = require("child_process");
|
164732
164608
|
var import_fs22 = require("fs");
|
164733
164609
|
var os11 = __toESM(require("os"));
|
164734
164610
|
var import_path23 = require("path");
|
@@ -164934,7 +164810,7 @@ async function getDarwinInfo() {
|
|
164934
164810
|
};
|
164935
164811
|
try {
|
164936
164812
|
const output = await new Promise((resolve24, reject) => {
|
164937
|
-
(0,
|
164813
|
+
(0, import_child_process4.execFile)("/usr/bin/sw_vers", (error2, stdout2) => {
|
164938
164814
|
if (error2) {
|
164939
164815
|
reject(error2);
|
164940
164816
|
return;
|
@@ -166220,13 +166096,13 @@ __name(triggersDeployHandler, "triggersDeployHandler");
|
|
166220
166096
|
init_import_meta_url();
|
166221
166097
|
var fs28 = __toESM(require("node:fs"));
|
166222
166098
|
var import_node_path66 = require("node:path");
|
166223
|
-
var
|
166099
|
+
var import_miniflare26 = require("miniflare");
|
166224
166100
|
|
166225
166101
|
// src/type-generation/runtime/index.ts
|
166226
166102
|
init_import_meta_url();
|
166227
166103
|
var import_fs23 = require("fs");
|
166228
166104
|
var import_promises32 = require("fs/promises");
|
166229
|
-
var
|
166105
|
+
var import_miniflare25 = require("miniflare");
|
166230
166106
|
var import_workerd = require("workerd");
|
166231
166107
|
var DEFAULT_OUTFILE_RELATIVE_PATH = "./.wrangler/types/runtime.d.ts";
|
166232
166108
|
async function generateRuntimeTypes({
|
@@ -166268,7 +166144,7 @@ async function generate({
|
|
166268
166144
|
compatibilityFlags = []
|
166269
166145
|
}) {
|
166270
166146
|
const worker = (0, import_fs23.readFileSync)(require.resolve("workerd/worker.mjs")).toString();
|
166271
|
-
const mf = new
|
166147
|
+
const mf = new import_miniflare25.Miniflare({
|
166272
166148
|
compatibilityDate: "2024-01-01",
|
166273
166149
|
compatibilityFlags: ["nodejs_compat", "rtti_api"],
|
166274
166150
|
modules: true,
|
@@ -166410,7 +166286,7 @@ var typesCommand = createCommand({
|
|
166410
166286
|
});
|
166411
166287
|
const tsconfigPath = config.tsconfig ?? (0, import_node_path66.join)((0, import_node_path66.dirname)(config.configPath), "tsconfig.json");
|
166412
166288
|
const tsconfigTypes = readTsconfigTypes(tsconfigPath);
|
166413
|
-
const { mode } = (0,
|
166289
|
+
const { mode } = (0, import_miniflare26.getNodeCompat)(
|
166414
166290
|
config.compatibility_date,
|
166415
166291
|
config.compatibility_flags,
|
166416
166292
|
{
|
@@ -172389,3 +172265,4 @@ yargs-parser/build/lib/index.js:
|
|
172389
172265
|
* SPDX-License-Identifier: ISC
|
172390
172266
|
*)
|
172391
172267
|
*/
|
172268
|
+
//# sourceMappingURL=cli.js.map
|