wrangler 4.33.0 → 4.33.1
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/package.json +5 -5
- package/wrangler-dist/cli.js +1629 -416
- package/wrangler-dist/metafile-cjs.json +1 -1
package/wrangler-dist/cli.js
CHANGED
@@ -5646,7 +5646,7 @@ var require_webidl = __commonJS({
|
|
5646
5646
|
"../../node_modules/.pnpm/undici@7.11.0/node_modules/undici/lib/web/webidl/index.js"(exports2, module3) {
|
5647
5647
|
"use strict";
|
5648
5648
|
init_import_meta_url();
|
5649
|
-
var { types, inspect: inspect2 } = require("util");
|
5649
|
+
var { types: types3, inspect: inspect2 } = require("util");
|
5650
5650
|
var { markAsUncloneable } = require("worker_threads");
|
5651
5651
|
var UNDEFINED = 1;
|
5652
5652
|
var BOOLEAN = 2;
|
@@ -5883,7 +5883,7 @@ var require_webidl = __commonJS({
|
|
5883
5883
|
});
|
5884
5884
|
}
|
5885
5885
|
const result = {};
|
5886
|
-
if (!
|
5886
|
+
if (!types3.isProxy(O3)) {
|
5887
5887
|
const keys2 = [...Object.getOwnPropertyNames(O3), ...Object.getOwnPropertySymbols(O3)];
|
5888
5888
|
for (const key of keys2) {
|
5889
5889
|
const keyName = webidl.util.Stringify(key);
|
@@ -6031,14 +6031,14 @@ var require_webidl = __commonJS({
|
|
6031
6031
|
return x6;
|
6032
6032
|
};
|
6033
6033
|
webidl.converters.ArrayBuffer = function(V3, prefix, argument, opts) {
|
6034
|
-
if (webidl.util.Type(V3) !== OBJECT || !
|
6034
|
+
if (webidl.util.Type(V3) !== OBJECT || !types3.isAnyArrayBuffer(V3)) {
|
6035
6035
|
throw webidl.errors.conversionFailed({
|
6036
6036
|
prefix,
|
6037
6037
|
argument: `${argument} ("${webidl.util.Stringify(V3)}")`,
|
6038
6038
|
types: ["ArrayBuffer"]
|
6039
6039
|
});
|
6040
6040
|
}
|
6041
|
-
if (opts?.allowShared === false &&
|
6041
|
+
if (opts?.allowShared === false && types3.isSharedArrayBuffer(V3)) {
|
6042
6042
|
throw webidl.errors.exception({
|
6043
6043
|
header: "ArrayBuffer",
|
6044
6044
|
message: "SharedArrayBuffer is not allowed."
|
@@ -6053,14 +6053,14 @@ var require_webidl = __commonJS({
|
|
6053
6053
|
return V3;
|
6054
6054
|
};
|
6055
6055
|
webidl.converters.TypedArray = function(V3, T3, prefix, name2, opts) {
|
6056
|
-
if (webidl.util.Type(V3) !== OBJECT || !
|
6056
|
+
if (webidl.util.Type(V3) !== OBJECT || !types3.isTypedArray(V3) || V3.constructor.name !== T3.name) {
|
6057
6057
|
throw webidl.errors.conversionFailed({
|
6058
6058
|
prefix,
|
6059
6059
|
argument: `${name2} ("${webidl.util.Stringify(V3)}")`,
|
6060
6060
|
types: [T3.name]
|
6061
6061
|
});
|
6062
6062
|
}
|
6063
|
-
if (opts?.allowShared === false &&
|
6063
|
+
if (opts?.allowShared === false && types3.isSharedArrayBuffer(V3.buffer)) {
|
6064
6064
|
throw webidl.errors.exception({
|
6065
6065
|
header: "ArrayBuffer",
|
6066
6066
|
message: "SharedArrayBuffer is not allowed."
|
@@ -6075,13 +6075,13 @@ var require_webidl = __commonJS({
|
|
6075
6075
|
return V3;
|
6076
6076
|
};
|
6077
6077
|
webidl.converters.DataView = function(V3, prefix, name2, opts) {
|
6078
|
-
if (webidl.util.Type(V3) !== OBJECT || !
|
6078
|
+
if (webidl.util.Type(V3) !== OBJECT || !types3.isDataView(V3)) {
|
6079
6079
|
throw webidl.errors.exception({
|
6080
6080
|
header: prefix,
|
6081
6081
|
message: `${name2} is not a DataView.`
|
6082
6082
|
});
|
6083
6083
|
}
|
6084
|
-
if (opts?.allowShared === false &&
|
6084
|
+
if (opts?.allowShared === false && types3.isSharedArrayBuffer(V3.buffer)) {
|
6085
6085
|
throw webidl.errors.exception({
|
6086
6086
|
header: "ArrayBuffer",
|
6087
6087
|
message: "SharedArrayBuffer is not allowed."
|
@@ -16968,7 +16968,7 @@ var require_response = __commonJS({
|
|
16968
16968
|
var { URLSerializer } = require_data_url();
|
16969
16969
|
var { kConstruct } = require_symbols();
|
16970
16970
|
var assert44 = require("assert");
|
16971
|
-
var { types } = require("util");
|
16971
|
+
var { types: types3 } = require("util");
|
16972
16972
|
var textEncoder = new TextEncoder("utf-8");
|
16973
16973
|
var Response12 = class _Response {
|
16974
16974
|
static {
|
@@ -17324,7 +17324,7 @@ var require_response = __commonJS({
|
|
17324
17324
|
if (webidl.is.Blob(V3)) {
|
17325
17325
|
return V3;
|
17326
17326
|
}
|
17327
|
-
if (ArrayBuffer.isView(V3) ||
|
17327
|
+
if (ArrayBuffer.isView(V3) || types3.isArrayBuffer(V3)) {
|
17328
17328
|
return V3;
|
17329
17329
|
}
|
17330
17330
|
if (webidl.is.FormData(V3)) {
|
@@ -21710,7 +21710,7 @@ var require_websocket = __commonJS({
|
|
21710
21710
|
var { ByteParser } = require_receiver();
|
21711
21711
|
var { kEnumerableProperty } = require_util();
|
21712
21712
|
var { getGlobalDispatcher: getGlobalDispatcher2 } = require_global2();
|
21713
|
-
var { types } = require("util");
|
21713
|
+
var { types: types3 } = require("util");
|
21714
21714
|
var { ErrorEvent, CloseEvent, createFastMessageEvent } = require_events();
|
21715
21715
|
var { SendQueue } = require_sender();
|
21716
21716
|
var { channels } = require_diagnostics();
|
@@ -21833,7 +21833,7 @@ var require_websocket = __commonJS({
|
|
21833
21833
|
this.#sendQueue.add(buffer, () => {
|
21834
21834
|
this.#bufferedAmount -= buffer.byteLength;
|
21835
21835
|
}, sendHints.text);
|
21836
|
-
} else if (
|
21836
|
+
} else if (types3.isArrayBuffer(data)) {
|
21837
21837
|
this.#bufferedAmount += data.byteLength;
|
21838
21838
|
this.#sendQueue.add(data, () => {
|
21839
21839
|
this.#bufferedAmount -= data.byteLength;
|
@@ -22110,7 +22110,7 @@ var require_websocket = __commonJS({
|
|
22110
22110
|
if (webidl.is.Blob(V3)) {
|
22111
22111
|
return V3;
|
22112
22112
|
}
|
22113
|
-
if (ArrayBuffer.isView(V3) ||
|
22113
|
+
if (ArrayBuffer.isView(V3) || types3.isArrayBuffer(V3)) {
|
22114
22114
|
return V3;
|
22115
22115
|
}
|
22116
22116
|
}
|
@@ -22199,7 +22199,7 @@ var require_websocketstream = __commonJS({
|
|
22199
22199
|
var { webidl } = require_webidl();
|
22200
22200
|
var { getURLRecord, isValidSubprotocol, isEstablished, utf8Decode } = require_util5();
|
22201
22201
|
var { establishWebSocketConnection, failWebsocketConnection, closeWebSocketConnection } = require_connection();
|
22202
|
-
var { types } = require("util");
|
22202
|
+
var { types: types3 } = require("util");
|
22203
22203
|
var { channels } = require_diagnostics();
|
22204
22204
|
var { WebsocketFrameSend } = require_frame();
|
22205
22205
|
var { ByteParser } = require_receiver();
|
@@ -22335,7 +22335,7 @@ var require_websocketstream = __commonJS({
|
|
22335
22335
|
const promise = createDeferredPromise();
|
22336
22336
|
let data = null;
|
22337
22337
|
let opcode = null;
|
22338
|
-
if (ArrayBuffer.isView(chunk) ||
|
22338
|
+
if (ArrayBuffer.isView(chunk) || types3.isArrayBuffer(chunk)) {
|
22339
22339
|
data = new Uint8Array(ArrayBuffer.isView(chunk) ? new Uint8Array(chunk.buffer, chunk.byteOffset, chunk.byteLength) : chunk);
|
22340
22340
|
opcode = opcodes.BINARY;
|
22341
22341
|
} else {
|
@@ -33841,7 +33841,7 @@ var name, version;
|
|
33841
33841
|
var init_package = __esm({
|
33842
33842
|
"package.json"() {
|
33843
33843
|
name = "wrangler";
|
33844
|
-
version = "4.33.
|
33844
|
+
version = "4.33.1";
|
33845
33845
|
}
|
33846
33846
|
});
|
33847
33847
|
|
@@ -56014,9 +56014,9 @@ var init_lib4 = __esm({
|
|
56014
56014
|
return this._def.options;
|
56015
56015
|
}
|
56016
56016
|
};
|
56017
|
-
ZodUnion.create = (
|
56017
|
+
ZodUnion.create = (types3, params) => {
|
56018
56018
|
return new ZodUnion({
|
56019
|
-
options:
|
56019
|
+
options: types3,
|
56020
56020
|
typeName: ZodFirstPartyTypeKind.ZodUnion,
|
56021
56021
|
...processCreateParams(params)
|
56022
56022
|
});
|
@@ -57814,85 +57814,1210 @@ var require_ignore = __commonJS({
|
|
57814
57814
|
}
|
57815
57815
|
});
|
57816
57816
|
|
57817
|
-
// ../../node_modules/.pnpm/mime@
|
57818
|
-
var
|
57819
|
-
|
57820
|
-
|
57817
|
+
// ../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/types/other.js
|
57818
|
+
var types, other_default;
|
57819
|
+
var init_other = __esm({
|
57820
|
+
"../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/types/other.js"() {
|
57821
|
+
init_import_meta_url();
|
57822
|
+
types = {
|
57823
|
+
"application/prs.cww": ["cww"],
|
57824
|
+
"application/prs.xsf+xml": ["xsf"],
|
57825
|
+
"application/vnd.1000minds.decision-model+xml": ["1km"],
|
57826
|
+
"application/vnd.3gpp.pic-bw-large": ["plb"],
|
57827
|
+
"application/vnd.3gpp.pic-bw-small": ["psb"],
|
57828
|
+
"application/vnd.3gpp.pic-bw-var": ["pvb"],
|
57829
|
+
"application/vnd.3gpp2.tcap": ["tcap"],
|
57830
|
+
"application/vnd.3m.post-it-notes": ["pwn"],
|
57831
|
+
"application/vnd.accpac.simply.aso": ["aso"],
|
57832
|
+
"application/vnd.accpac.simply.imp": ["imp"],
|
57833
|
+
"application/vnd.acucobol": ["acu"],
|
57834
|
+
"application/vnd.acucorp": ["atc", "acutc"],
|
57835
|
+
"application/vnd.adobe.air-application-installer-package+zip": ["air"],
|
57836
|
+
"application/vnd.adobe.formscentral.fcdt": ["fcdt"],
|
57837
|
+
"application/vnd.adobe.fxp": ["fxp", "fxpl"],
|
57838
|
+
"application/vnd.adobe.xdp+xml": ["xdp"],
|
57839
|
+
"application/vnd.adobe.xfdf": ["*xfdf"],
|
57840
|
+
"application/vnd.age": ["age"],
|
57841
|
+
"application/vnd.ahead.space": ["ahead"],
|
57842
|
+
"application/vnd.airzip.filesecure.azf": ["azf"],
|
57843
|
+
"application/vnd.airzip.filesecure.azs": ["azs"],
|
57844
|
+
"application/vnd.amazon.ebook": ["azw"],
|
57845
|
+
"application/vnd.americandynamics.acc": ["acc"],
|
57846
|
+
"application/vnd.amiga.ami": ["ami"],
|
57847
|
+
"application/vnd.android.package-archive": ["apk"],
|
57848
|
+
"application/vnd.anser-web-certificate-issue-initiation": ["cii"],
|
57849
|
+
"application/vnd.anser-web-funds-transfer-initiation": ["fti"],
|
57850
|
+
"application/vnd.antix.game-component": ["atx"],
|
57851
|
+
"application/vnd.apple.installer+xml": ["mpkg"],
|
57852
|
+
"application/vnd.apple.keynote": ["key"],
|
57853
|
+
"application/vnd.apple.mpegurl": ["m3u8"],
|
57854
|
+
"application/vnd.apple.numbers": ["numbers"],
|
57855
|
+
"application/vnd.apple.pages": ["pages"],
|
57856
|
+
"application/vnd.apple.pkpass": ["pkpass"],
|
57857
|
+
"application/vnd.aristanetworks.swi": ["swi"],
|
57858
|
+
"application/vnd.astraea-software.iota": ["iota"],
|
57859
|
+
"application/vnd.audiograph": ["aep"],
|
57860
|
+
"application/vnd.autodesk.fbx": ["fbx"],
|
57861
|
+
"application/vnd.balsamiq.bmml+xml": ["bmml"],
|
57862
|
+
"application/vnd.blueice.multipass": ["mpm"],
|
57863
|
+
"application/vnd.bmi": ["bmi"],
|
57864
|
+
"application/vnd.businessobjects": ["rep"],
|
57865
|
+
"application/vnd.chemdraw+xml": ["cdxml"],
|
57866
|
+
"application/vnd.chipnuts.karaoke-mmd": ["mmd"],
|
57867
|
+
"application/vnd.cinderella": ["cdy"],
|
57868
|
+
"application/vnd.citationstyles.style+xml": ["csl"],
|
57869
|
+
"application/vnd.claymore": ["cla"],
|
57870
|
+
"application/vnd.cloanto.rp9": ["rp9"],
|
57871
|
+
"application/vnd.clonk.c4group": ["c4g", "c4d", "c4f", "c4p", "c4u"],
|
57872
|
+
"application/vnd.cluetrust.cartomobile-config": ["c11amc"],
|
57873
|
+
"application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"],
|
57874
|
+
"application/vnd.commonspace": ["csp"],
|
57875
|
+
"application/vnd.contact.cmsg": ["cdbcmsg"],
|
57876
|
+
"application/vnd.cosmocaller": ["cmc"],
|
57877
|
+
"application/vnd.crick.clicker": ["clkx"],
|
57878
|
+
"application/vnd.crick.clicker.keyboard": ["clkk"],
|
57879
|
+
"application/vnd.crick.clicker.palette": ["clkp"],
|
57880
|
+
"application/vnd.crick.clicker.template": ["clkt"],
|
57881
|
+
"application/vnd.crick.clicker.wordbank": ["clkw"],
|
57882
|
+
"application/vnd.criticaltools.wbs+xml": ["wbs"],
|
57883
|
+
"application/vnd.ctc-posml": ["pml"],
|
57884
|
+
"application/vnd.cups-ppd": ["ppd"],
|
57885
|
+
"application/vnd.curl.car": ["car"],
|
57886
|
+
"application/vnd.curl.pcurl": ["pcurl"],
|
57887
|
+
"application/vnd.dart": ["dart"],
|
57888
|
+
"application/vnd.data-vision.rdz": ["rdz"],
|
57889
|
+
"application/vnd.dbf": ["dbf"],
|
57890
|
+
"application/vnd.dcmp+xml": ["dcmp"],
|
57891
|
+
"application/vnd.dece.data": ["uvf", "uvvf", "uvd", "uvvd"],
|
57892
|
+
"application/vnd.dece.ttml+xml": ["uvt", "uvvt"],
|
57893
|
+
"application/vnd.dece.unspecified": ["uvx", "uvvx"],
|
57894
|
+
"application/vnd.dece.zip": ["uvz", "uvvz"],
|
57895
|
+
"application/vnd.denovo.fcselayout-link": ["fe_launch"],
|
57896
|
+
"application/vnd.dna": ["dna"],
|
57897
|
+
"application/vnd.dolby.mlp": ["mlp"],
|
57898
|
+
"application/vnd.dpgraph": ["dpg"],
|
57899
|
+
"application/vnd.dreamfactory": ["dfac"],
|
57900
|
+
"application/vnd.ds-keypoint": ["kpxx"],
|
57901
|
+
"application/vnd.dvb.ait": ["ait"],
|
57902
|
+
"application/vnd.dvb.service": ["svc"],
|
57903
|
+
"application/vnd.dynageo": ["geo"],
|
57904
|
+
"application/vnd.ecowin.chart": ["mag"],
|
57905
|
+
"application/vnd.enliven": ["nml"],
|
57906
|
+
"application/vnd.epson.esf": ["esf"],
|
57907
|
+
"application/vnd.epson.msf": ["msf"],
|
57908
|
+
"application/vnd.epson.quickanime": ["qam"],
|
57909
|
+
"application/vnd.epson.salt": ["slt"],
|
57910
|
+
"application/vnd.epson.ssf": ["ssf"],
|
57911
|
+
"application/vnd.eszigno3+xml": ["es3", "et3"],
|
57912
|
+
"application/vnd.ezpix-album": ["ez2"],
|
57913
|
+
"application/vnd.ezpix-package": ["ez3"],
|
57914
|
+
"application/vnd.fdf": ["*fdf"],
|
57915
|
+
"application/vnd.fdsn.mseed": ["mseed"],
|
57916
|
+
"application/vnd.fdsn.seed": ["seed", "dataless"],
|
57917
|
+
"application/vnd.flographit": ["gph"],
|
57918
|
+
"application/vnd.fluxtime.clip": ["ftc"],
|
57919
|
+
"application/vnd.framemaker": ["fm", "frame", "maker", "book"],
|
57920
|
+
"application/vnd.frogans.fnc": ["fnc"],
|
57921
|
+
"application/vnd.frogans.ltf": ["ltf"],
|
57922
|
+
"application/vnd.fsc.weblaunch": ["fsc"],
|
57923
|
+
"application/vnd.fujitsu.oasys": ["oas"],
|
57924
|
+
"application/vnd.fujitsu.oasys2": ["oa2"],
|
57925
|
+
"application/vnd.fujitsu.oasys3": ["oa3"],
|
57926
|
+
"application/vnd.fujitsu.oasysgp": ["fg5"],
|
57927
|
+
"application/vnd.fujitsu.oasysprs": ["bh2"],
|
57928
|
+
"application/vnd.fujixerox.ddd": ["ddd"],
|
57929
|
+
"application/vnd.fujixerox.docuworks": ["xdw"],
|
57930
|
+
"application/vnd.fujixerox.docuworks.binder": ["xbd"],
|
57931
|
+
"application/vnd.fuzzysheet": ["fzs"],
|
57932
|
+
"application/vnd.genomatix.tuxedo": ["txd"],
|
57933
|
+
"application/vnd.geogebra.file": ["ggb"],
|
57934
|
+
"application/vnd.geogebra.slides": ["ggs"],
|
57935
|
+
"application/vnd.geogebra.tool": ["ggt"],
|
57936
|
+
"application/vnd.geometry-explorer": ["gex", "gre"],
|
57937
|
+
"application/vnd.geonext": ["gxt"],
|
57938
|
+
"application/vnd.geoplan": ["g2w"],
|
57939
|
+
"application/vnd.geospace": ["g3w"],
|
57940
|
+
"application/vnd.gmx": ["gmx"],
|
57941
|
+
"application/vnd.google-apps.document": ["gdoc"],
|
57942
|
+
"application/vnd.google-apps.drawing": ["gdraw"],
|
57943
|
+
"application/vnd.google-apps.form": ["gform"],
|
57944
|
+
"application/vnd.google-apps.jam": ["gjam"],
|
57945
|
+
"application/vnd.google-apps.map": ["gmap"],
|
57946
|
+
"application/vnd.google-apps.presentation": ["gslides"],
|
57947
|
+
"application/vnd.google-apps.script": ["gscript"],
|
57948
|
+
"application/vnd.google-apps.site": ["gsite"],
|
57949
|
+
"application/vnd.google-apps.spreadsheet": ["gsheet"],
|
57950
|
+
"application/vnd.google-earth.kml+xml": ["kml"],
|
57951
|
+
"application/vnd.google-earth.kmz": ["kmz"],
|
57952
|
+
"application/vnd.gov.sk.xmldatacontainer+xml": ["xdcf"],
|
57953
|
+
"application/vnd.grafeq": ["gqf", "gqs"],
|
57954
|
+
"application/vnd.groove-account": ["gac"],
|
57955
|
+
"application/vnd.groove-help": ["ghf"],
|
57956
|
+
"application/vnd.groove-identity-message": ["gim"],
|
57957
|
+
"application/vnd.groove-injector": ["grv"],
|
57958
|
+
"application/vnd.groove-tool-message": ["gtm"],
|
57959
|
+
"application/vnd.groove-tool-template": ["tpl"],
|
57960
|
+
"application/vnd.groove-vcard": ["vcg"],
|
57961
|
+
"application/vnd.hal+xml": ["hal"],
|
57962
|
+
"application/vnd.handheld-entertainment+xml": ["zmm"],
|
57963
|
+
"application/vnd.hbci": ["hbci"],
|
57964
|
+
"application/vnd.hhe.lesson-player": ["les"],
|
57965
|
+
"application/vnd.hp-hpgl": ["hpgl"],
|
57966
|
+
"application/vnd.hp-hpid": ["hpid"],
|
57967
|
+
"application/vnd.hp-hps": ["hps"],
|
57968
|
+
"application/vnd.hp-jlyt": ["jlt"],
|
57969
|
+
"application/vnd.hp-pcl": ["pcl"],
|
57970
|
+
"application/vnd.hp-pclxl": ["pclxl"],
|
57971
|
+
"application/vnd.hydrostatix.sof-data": ["sfd-hdstx"],
|
57972
|
+
"application/vnd.ibm.minipay": ["mpy"],
|
57973
|
+
"application/vnd.ibm.modcap": ["afp", "listafp", "list3820"],
|
57974
|
+
"application/vnd.ibm.rights-management": ["irm"],
|
57975
|
+
"application/vnd.ibm.secure-container": ["sc"],
|
57976
|
+
"application/vnd.iccprofile": ["icc", "icm"],
|
57977
|
+
"application/vnd.igloader": ["igl"],
|
57978
|
+
"application/vnd.immervision-ivp": ["ivp"],
|
57979
|
+
"application/vnd.immervision-ivu": ["ivu"],
|
57980
|
+
"application/vnd.insors.igm": ["igm"],
|
57981
|
+
"application/vnd.intercon.formnet": ["xpw", "xpx"],
|
57982
|
+
"application/vnd.intergeo": ["i2g"],
|
57983
|
+
"application/vnd.intu.qbo": ["qbo"],
|
57984
|
+
"application/vnd.intu.qfx": ["qfx"],
|
57985
|
+
"application/vnd.ipunplugged.rcprofile": ["rcprofile"],
|
57986
|
+
"application/vnd.irepository.package+xml": ["irp"],
|
57987
|
+
"application/vnd.is-xpr": ["xpr"],
|
57988
|
+
"application/vnd.isac.fcs": ["fcs"],
|
57989
|
+
"application/vnd.jam": ["jam"],
|
57990
|
+
"application/vnd.jcp.javame.midlet-rms": ["rms"],
|
57991
|
+
"application/vnd.jisp": ["jisp"],
|
57992
|
+
"application/vnd.joost.joda-archive": ["joda"],
|
57993
|
+
"application/vnd.kahootz": ["ktz", "ktr"],
|
57994
|
+
"application/vnd.kde.karbon": ["karbon"],
|
57995
|
+
"application/vnd.kde.kchart": ["chrt"],
|
57996
|
+
"application/vnd.kde.kformula": ["kfo"],
|
57997
|
+
"application/vnd.kde.kivio": ["flw"],
|
57998
|
+
"application/vnd.kde.kontour": ["kon"],
|
57999
|
+
"application/vnd.kde.kpresenter": ["kpr", "kpt"],
|
58000
|
+
"application/vnd.kde.kspread": ["ksp"],
|
58001
|
+
"application/vnd.kde.kword": ["kwd", "kwt"],
|
58002
|
+
"application/vnd.kenameaapp": ["htke"],
|
58003
|
+
"application/vnd.kidspiration": ["kia"],
|
58004
|
+
"application/vnd.kinar": ["kne", "knp"],
|
58005
|
+
"application/vnd.koan": ["skp", "skd", "skt", "skm"],
|
58006
|
+
"application/vnd.kodak-descriptor": ["sse"],
|
58007
|
+
"application/vnd.las.las+xml": ["lasxml"],
|
58008
|
+
"application/vnd.llamagraphics.life-balance.desktop": ["lbd"],
|
58009
|
+
"application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"],
|
58010
|
+
"application/vnd.lotus-1-2-3": ["123"],
|
58011
|
+
"application/vnd.lotus-approach": ["apr"],
|
58012
|
+
"application/vnd.lotus-freelance": ["pre"],
|
58013
|
+
"application/vnd.lotus-notes": ["nsf"],
|
58014
|
+
"application/vnd.lotus-organizer": ["org"],
|
58015
|
+
"application/vnd.lotus-screencam": ["scm"],
|
58016
|
+
"application/vnd.lotus-wordpro": ["lwp"],
|
58017
|
+
"application/vnd.macports.portpkg": ["portpkg"],
|
58018
|
+
"application/vnd.mapbox-vector-tile": ["mvt"],
|
58019
|
+
"application/vnd.mcd": ["mcd"],
|
58020
|
+
"application/vnd.medcalcdata": ["mc1"],
|
58021
|
+
"application/vnd.mediastation.cdkey": ["cdkey"],
|
58022
|
+
"application/vnd.mfer": ["mwf"],
|
58023
|
+
"application/vnd.mfmp": ["mfm"],
|
58024
|
+
"application/vnd.micrografx.flo": ["flo"],
|
58025
|
+
"application/vnd.micrografx.igx": ["igx"],
|
58026
|
+
"application/vnd.mif": ["mif"],
|
58027
|
+
"application/vnd.mobius.daf": ["daf"],
|
58028
|
+
"application/vnd.mobius.dis": ["dis"],
|
58029
|
+
"application/vnd.mobius.mbk": ["mbk"],
|
58030
|
+
"application/vnd.mobius.mqy": ["mqy"],
|
58031
|
+
"application/vnd.mobius.msl": ["msl"],
|
58032
|
+
"application/vnd.mobius.plc": ["plc"],
|
58033
|
+
"application/vnd.mobius.txf": ["txf"],
|
58034
|
+
"application/vnd.mophun.application": ["mpn"],
|
58035
|
+
"application/vnd.mophun.certificate": ["mpc"],
|
58036
|
+
"application/vnd.mozilla.xul+xml": ["xul"],
|
58037
|
+
"application/vnd.ms-artgalry": ["cil"],
|
58038
|
+
"application/vnd.ms-cab-compressed": ["cab"],
|
58039
|
+
"application/vnd.ms-excel": ["xls", "xlm", "xla", "xlc", "xlt", "xlw"],
|
58040
|
+
"application/vnd.ms-excel.addin.macroenabled.12": ["xlam"],
|
58041
|
+
"application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"],
|
58042
|
+
"application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"],
|
58043
|
+
"application/vnd.ms-excel.template.macroenabled.12": ["xltm"],
|
58044
|
+
"application/vnd.ms-fontobject": ["eot"],
|
58045
|
+
"application/vnd.ms-htmlhelp": ["chm"],
|
58046
|
+
"application/vnd.ms-ims": ["ims"],
|
58047
|
+
"application/vnd.ms-lrm": ["lrm"],
|
58048
|
+
"application/vnd.ms-officetheme": ["thmx"],
|
58049
|
+
"application/vnd.ms-outlook": ["msg"],
|
58050
|
+
"application/vnd.ms-pki.seccat": ["cat"],
|
58051
|
+
"application/vnd.ms-pki.stl": ["*stl"],
|
58052
|
+
"application/vnd.ms-powerpoint": ["ppt", "pps", "pot"],
|
58053
|
+
"application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"],
|
58054
|
+
"application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"],
|
58055
|
+
"application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"],
|
58056
|
+
"application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"],
|
58057
|
+
"application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"],
|
58058
|
+
"application/vnd.ms-project": ["*mpp", "mpt"],
|
58059
|
+
"application/vnd.ms-visio.viewer": ["vdx"],
|
58060
|
+
"application/vnd.ms-word.document.macroenabled.12": ["docm"],
|
58061
|
+
"application/vnd.ms-word.template.macroenabled.12": ["dotm"],
|
58062
|
+
"application/vnd.ms-works": ["wps", "wks", "wcm", "wdb"],
|
58063
|
+
"application/vnd.ms-wpl": ["wpl"],
|
58064
|
+
"application/vnd.ms-xpsdocument": ["xps"],
|
58065
|
+
"application/vnd.mseq": ["mseq"],
|
58066
|
+
"application/vnd.musician": ["mus"],
|
58067
|
+
"application/vnd.muvee.style": ["msty"],
|
58068
|
+
"application/vnd.mynfc": ["taglet"],
|
58069
|
+
"application/vnd.nato.bindingdataobject+xml": ["bdo"],
|
58070
|
+
"application/vnd.neurolanguage.nlu": ["nlu"],
|
58071
|
+
"application/vnd.nitf": ["ntf", "nitf"],
|
58072
|
+
"application/vnd.noblenet-directory": ["nnd"],
|
58073
|
+
"application/vnd.noblenet-sealer": ["nns"],
|
58074
|
+
"application/vnd.noblenet-web": ["nnw"],
|
58075
|
+
"application/vnd.nokia.n-gage.ac+xml": ["*ac"],
|
58076
|
+
"application/vnd.nokia.n-gage.data": ["ngdat"],
|
58077
|
+
"application/vnd.nokia.n-gage.symbian.install": ["n-gage"],
|
58078
|
+
"application/vnd.nokia.radio-preset": ["rpst"],
|
58079
|
+
"application/vnd.nokia.radio-presets": ["rpss"],
|
58080
|
+
"application/vnd.novadigm.edm": ["edm"],
|
58081
|
+
"application/vnd.novadigm.edx": ["edx"],
|
58082
|
+
"application/vnd.novadigm.ext": ["ext"],
|
58083
|
+
"application/vnd.oasis.opendocument.chart": ["odc"],
|
58084
|
+
"application/vnd.oasis.opendocument.chart-template": ["otc"],
|
58085
|
+
"application/vnd.oasis.opendocument.database": ["odb"],
|
58086
|
+
"application/vnd.oasis.opendocument.formula": ["odf"],
|
58087
|
+
"application/vnd.oasis.opendocument.formula-template": ["odft"],
|
58088
|
+
"application/vnd.oasis.opendocument.graphics": ["odg"],
|
58089
|
+
"application/vnd.oasis.opendocument.graphics-template": ["otg"],
|
58090
|
+
"application/vnd.oasis.opendocument.image": ["odi"],
|
58091
|
+
"application/vnd.oasis.opendocument.image-template": ["oti"],
|
58092
|
+
"application/vnd.oasis.opendocument.presentation": ["odp"],
|
58093
|
+
"application/vnd.oasis.opendocument.presentation-template": ["otp"],
|
58094
|
+
"application/vnd.oasis.opendocument.spreadsheet": ["ods"],
|
58095
|
+
"application/vnd.oasis.opendocument.spreadsheet-template": ["ots"],
|
58096
|
+
"application/vnd.oasis.opendocument.text": ["odt"],
|
58097
|
+
"application/vnd.oasis.opendocument.text-master": ["odm"],
|
58098
|
+
"application/vnd.oasis.opendocument.text-template": ["ott"],
|
58099
|
+
"application/vnd.oasis.opendocument.text-web": ["oth"],
|
58100
|
+
"application/vnd.olpc-sugar": ["xo"],
|
58101
|
+
"application/vnd.oma.dd2+xml": ["dd2"],
|
58102
|
+
"application/vnd.openblox.game+xml": ["obgx"],
|
58103
|
+
"application/vnd.openofficeorg.extension": ["oxt"],
|
58104
|
+
"application/vnd.openstreetmap.data+xml": ["osm"],
|
58105
|
+
"application/vnd.openxmlformats-officedocument.presentationml.presentation": [
|
58106
|
+
"pptx"
|
58107
|
+
],
|
58108
|
+
"application/vnd.openxmlformats-officedocument.presentationml.slide": [
|
58109
|
+
"sldx"
|
58110
|
+
],
|
58111
|
+
"application/vnd.openxmlformats-officedocument.presentationml.slideshow": [
|
58112
|
+
"ppsx"
|
58113
|
+
],
|
58114
|
+
"application/vnd.openxmlformats-officedocument.presentationml.template": [
|
58115
|
+
"potx"
|
58116
|
+
],
|
58117
|
+
"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"],
|
58118
|
+
"application/vnd.openxmlformats-officedocument.spreadsheetml.template": [
|
58119
|
+
"xltx"
|
58120
|
+
],
|
58121
|
+
"application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
|
58122
|
+
"docx"
|
58123
|
+
],
|
58124
|
+
"application/vnd.openxmlformats-officedocument.wordprocessingml.template": [
|
58125
|
+
"dotx"
|
58126
|
+
],
|
58127
|
+
"application/vnd.osgeo.mapguide.package": ["mgp"],
|
58128
|
+
"application/vnd.osgi.dp": ["dp"],
|
58129
|
+
"application/vnd.osgi.subsystem": ["esa"],
|
58130
|
+
"application/vnd.palm": ["pdb", "pqa", "oprc"],
|
58131
|
+
"application/vnd.pawaafile": ["paw"],
|
58132
|
+
"application/vnd.pg.format": ["str"],
|
58133
|
+
"application/vnd.pg.osasli": ["ei6"],
|
58134
|
+
"application/vnd.picsel": ["efif"],
|
58135
|
+
"application/vnd.pmi.widget": ["wg"],
|
58136
|
+
"application/vnd.pocketlearn": ["plf"],
|
58137
|
+
"application/vnd.powerbuilder6": ["pbd"],
|
58138
|
+
"application/vnd.previewsystems.box": ["box"],
|
58139
|
+
"application/vnd.procrate.brushset": ["brushset"],
|
58140
|
+
"application/vnd.procreate.brush": ["brush"],
|
58141
|
+
"application/vnd.procreate.dream": ["drm"],
|
58142
|
+
"application/vnd.proteus.magazine": ["mgz"],
|
58143
|
+
"application/vnd.publishare-delta-tree": ["qps"],
|
58144
|
+
"application/vnd.pvi.ptid1": ["ptid"],
|
58145
|
+
"application/vnd.pwg-xhtml-print+xml": ["xhtm"],
|
58146
|
+
"application/vnd.quark.quarkxpress": [
|
58147
|
+
"qxd",
|
58148
|
+
"qxt",
|
58149
|
+
"qwd",
|
58150
|
+
"qwt",
|
58151
|
+
"qxl",
|
58152
|
+
"qxb"
|
58153
|
+
],
|
58154
|
+
"application/vnd.rar": ["rar"],
|
58155
|
+
"application/vnd.realvnc.bed": ["bed"],
|
58156
|
+
"application/vnd.recordare.musicxml": ["mxl"],
|
58157
|
+
"application/vnd.recordare.musicxml+xml": ["musicxml"],
|
58158
|
+
"application/vnd.rig.cryptonote": ["cryptonote"],
|
58159
|
+
"application/vnd.rim.cod": ["cod"],
|
58160
|
+
"application/vnd.rn-realmedia": ["rm"],
|
58161
|
+
"application/vnd.rn-realmedia-vbr": ["rmvb"],
|
58162
|
+
"application/vnd.route66.link66+xml": ["link66"],
|
58163
|
+
"application/vnd.sailingtracker.track": ["st"],
|
58164
|
+
"application/vnd.seemail": ["see"],
|
58165
|
+
"application/vnd.sema": ["sema"],
|
58166
|
+
"application/vnd.semd": ["semd"],
|
58167
|
+
"application/vnd.semf": ["semf"],
|
58168
|
+
"application/vnd.shana.informed.formdata": ["ifm"],
|
58169
|
+
"application/vnd.shana.informed.formtemplate": ["itp"],
|
58170
|
+
"application/vnd.shana.informed.interchange": ["iif"],
|
58171
|
+
"application/vnd.shana.informed.package": ["ipk"],
|
58172
|
+
"application/vnd.simtech-mindmapper": ["twd", "twds"],
|
58173
|
+
"application/vnd.smaf": ["mmf"],
|
58174
|
+
"application/vnd.smart.teacher": ["teacher"],
|
58175
|
+
"application/vnd.software602.filler.form+xml": ["fo"],
|
58176
|
+
"application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"],
|
58177
|
+
"application/vnd.spotfire.dxp": ["dxp"],
|
58178
|
+
"application/vnd.spotfire.sfs": ["sfs"],
|
58179
|
+
"application/vnd.stardivision.calc": ["sdc"],
|
58180
|
+
"application/vnd.stardivision.draw": ["sda"],
|
58181
|
+
"application/vnd.stardivision.impress": ["sdd"],
|
58182
|
+
"application/vnd.stardivision.math": ["smf"],
|
58183
|
+
"application/vnd.stardivision.writer": ["sdw", "vor"],
|
58184
|
+
"application/vnd.stardivision.writer-global": ["sgl"],
|
58185
|
+
"application/vnd.stepmania.package": ["smzip"],
|
58186
|
+
"application/vnd.stepmania.stepchart": ["sm"],
|
58187
|
+
"application/vnd.sun.wadl+xml": ["wadl"],
|
58188
|
+
"application/vnd.sun.xml.calc": ["sxc"],
|
58189
|
+
"application/vnd.sun.xml.calc.template": ["stc"],
|
58190
|
+
"application/vnd.sun.xml.draw": ["sxd"],
|
58191
|
+
"application/vnd.sun.xml.draw.template": ["std"],
|
58192
|
+
"application/vnd.sun.xml.impress": ["sxi"],
|
58193
|
+
"application/vnd.sun.xml.impress.template": ["sti"],
|
58194
|
+
"application/vnd.sun.xml.math": ["sxm"],
|
58195
|
+
"application/vnd.sun.xml.writer": ["sxw"],
|
58196
|
+
"application/vnd.sun.xml.writer.global": ["sxg"],
|
58197
|
+
"application/vnd.sun.xml.writer.template": ["stw"],
|
58198
|
+
"application/vnd.sus-calendar": ["sus", "susp"],
|
58199
|
+
"application/vnd.svd": ["svd"],
|
58200
|
+
"application/vnd.symbian.install": ["sis", "sisx"],
|
58201
|
+
"application/vnd.syncml+xml": ["xsm"],
|
58202
|
+
"application/vnd.syncml.dm+wbxml": ["bdm"],
|
58203
|
+
"application/vnd.syncml.dm+xml": ["xdm"],
|
58204
|
+
"application/vnd.syncml.dmddf+xml": ["ddf"],
|
58205
|
+
"application/vnd.tao.intent-module-archive": ["tao"],
|
58206
|
+
"application/vnd.tcpdump.pcap": ["pcap", "cap", "dmp"],
|
58207
|
+
"application/vnd.tmobile-livetv": ["tmo"],
|
58208
|
+
"application/vnd.trid.tpt": ["tpt"],
|
58209
|
+
"application/vnd.triscape.mxs": ["mxs"],
|
58210
|
+
"application/vnd.trueapp": ["tra"],
|
58211
|
+
"application/vnd.ufdl": ["ufd", "ufdl"],
|
58212
|
+
"application/vnd.uiq.theme": ["utz"],
|
58213
|
+
"application/vnd.umajin": ["umj"],
|
58214
|
+
"application/vnd.unity": ["unityweb"],
|
58215
|
+
"application/vnd.uoml+xml": ["uoml", "uo"],
|
58216
|
+
"application/vnd.vcx": ["vcx"],
|
58217
|
+
"application/vnd.visio": ["vsd", "vst", "vss", "vsw", "vsdx", "vtx"],
|
58218
|
+
"application/vnd.visionary": ["vis"],
|
58219
|
+
"application/vnd.vsf": ["vsf"],
|
58220
|
+
"application/vnd.wap.wbxml": ["wbxml"],
|
58221
|
+
"application/vnd.wap.wmlc": ["wmlc"],
|
58222
|
+
"application/vnd.wap.wmlscriptc": ["wmlsc"],
|
58223
|
+
"application/vnd.webturbo": ["wtb"],
|
58224
|
+
"application/vnd.wolfram.player": ["nbp"],
|
58225
|
+
"application/vnd.wordperfect": ["wpd"],
|
58226
|
+
"application/vnd.wqd": ["wqd"],
|
58227
|
+
"application/vnd.wt.stf": ["stf"],
|
58228
|
+
"application/vnd.xara": ["xar"],
|
58229
|
+
"application/vnd.xfdl": ["xfdl"],
|
58230
|
+
"application/vnd.yamaha.hv-dic": ["hvd"],
|
58231
|
+
"application/vnd.yamaha.hv-script": ["hvs"],
|
58232
|
+
"application/vnd.yamaha.hv-voice": ["hvp"],
|
58233
|
+
"application/vnd.yamaha.openscoreformat": ["osf"],
|
58234
|
+
"application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"],
|
58235
|
+
"application/vnd.yamaha.smaf-audio": ["saf"],
|
58236
|
+
"application/vnd.yamaha.smaf-phrase": ["spf"],
|
58237
|
+
"application/vnd.yellowriver-custom-menu": ["cmp"],
|
58238
|
+
"application/vnd.zul": ["zir", "zirz"],
|
58239
|
+
"application/vnd.zzazz.deck+xml": ["zaz"],
|
58240
|
+
"application/x-7z-compressed": ["7z"],
|
58241
|
+
"application/x-abiword": ["abw"],
|
58242
|
+
"application/x-ace-compressed": ["ace"],
|
58243
|
+
"application/x-apple-diskimage": ["*dmg"],
|
58244
|
+
"application/x-arj": ["arj"],
|
58245
|
+
"application/x-authorware-bin": ["aab", "x32", "u32", "vox"],
|
58246
|
+
"application/x-authorware-map": ["aam"],
|
58247
|
+
"application/x-authorware-seg": ["aas"],
|
58248
|
+
"application/x-bcpio": ["bcpio"],
|
58249
|
+
"application/x-bdoc": ["*bdoc"],
|
58250
|
+
"application/x-bittorrent": ["torrent"],
|
58251
|
+
"application/x-blender": ["blend"],
|
58252
|
+
"application/x-blorb": ["blb", "blorb"],
|
58253
|
+
"application/x-bzip": ["bz"],
|
58254
|
+
"application/x-bzip2": ["bz2", "boz"],
|
58255
|
+
"application/x-cbr": ["cbr", "cba", "cbt", "cbz", "cb7"],
|
58256
|
+
"application/x-cdlink": ["vcd"],
|
58257
|
+
"application/x-cfs-compressed": ["cfs"],
|
58258
|
+
"application/x-chat": ["chat"],
|
58259
|
+
"application/x-chess-pgn": ["pgn"],
|
58260
|
+
"application/x-chrome-extension": ["crx"],
|
58261
|
+
"application/x-cocoa": ["cco"],
|
58262
|
+
"application/x-compressed": ["*rar"],
|
58263
|
+
"application/x-conference": ["nsc"],
|
58264
|
+
"application/x-cpio": ["cpio"],
|
58265
|
+
"application/x-csh": ["csh"],
|
58266
|
+
"application/x-debian-package": ["*deb", "udeb"],
|
58267
|
+
"application/x-dgc-compressed": ["dgc"],
|
58268
|
+
"application/x-director": [
|
58269
|
+
"dir",
|
58270
|
+
"dcr",
|
58271
|
+
"dxr",
|
58272
|
+
"cst",
|
58273
|
+
"cct",
|
58274
|
+
"cxt",
|
58275
|
+
"w3d",
|
58276
|
+
"fgd",
|
58277
|
+
"swa"
|
58278
|
+
],
|
58279
|
+
"application/x-doom": ["wad"],
|
58280
|
+
"application/x-dtbncx+xml": ["ncx"],
|
58281
|
+
"application/x-dtbook+xml": ["dtb"],
|
58282
|
+
"application/x-dtbresource+xml": ["res"],
|
58283
|
+
"application/x-dvi": ["dvi"],
|
58284
|
+
"application/x-envoy": ["evy"],
|
58285
|
+
"application/x-eva": ["eva"],
|
58286
|
+
"application/x-font-bdf": ["bdf"],
|
58287
|
+
"application/x-font-ghostscript": ["gsf"],
|
58288
|
+
"application/x-font-linux-psf": ["psf"],
|
58289
|
+
"application/x-font-pcf": ["pcf"],
|
58290
|
+
"application/x-font-snf": ["snf"],
|
58291
|
+
"application/x-font-type1": ["pfa", "pfb", "pfm", "afm"],
|
58292
|
+
"application/x-freearc": ["arc"],
|
58293
|
+
"application/x-futuresplash": ["spl"],
|
58294
|
+
"application/x-gca-compressed": ["gca"],
|
58295
|
+
"application/x-glulx": ["ulx"],
|
58296
|
+
"application/x-gnumeric": ["gnumeric"],
|
58297
|
+
"application/x-gramps-xml": ["gramps"],
|
58298
|
+
"application/x-gtar": ["gtar"],
|
58299
|
+
"application/x-hdf": ["hdf"],
|
58300
|
+
"application/x-httpd-php": ["php"],
|
58301
|
+
"application/x-install-instructions": ["install"],
|
58302
|
+
"application/x-ipynb+json": ["ipynb"],
|
58303
|
+
"application/x-iso9660-image": ["*iso"],
|
58304
|
+
"application/x-iwork-keynote-sffkey": ["*key"],
|
58305
|
+
"application/x-iwork-numbers-sffnumbers": ["*numbers"],
|
58306
|
+
"application/x-iwork-pages-sffpages": ["*pages"],
|
58307
|
+
"application/x-java-archive-diff": ["jardiff"],
|
58308
|
+
"application/x-java-jnlp-file": ["jnlp"],
|
58309
|
+
"application/x-keepass2": ["kdbx"],
|
58310
|
+
"application/x-latex": ["latex"],
|
58311
|
+
"application/x-lua-bytecode": ["luac"],
|
58312
|
+
"application/x-lzh-compressed": ["lzh", "lha"],
|
58313
|
+
"application/x-makeself": ["run"],
|
58314
|
+
"application/x-mie": ["mie"],
|
58315
|
+
"application/x-mobipocket-ebook": ["*prc", "mobi"],
|
58316
|
+
"application/x-ms-application": ["application"],
|
58317
|
+
"application/x-ms-shortcut": ["lnk"],
|
58318
|
+
"application/x-ms-wmd": ["wmd"],
|
58319
|
+
"application/x-ms-wmz": ["wmz"],
|
58320
|
+
"application/x-ms-xbap": ["xbap"],
|
58321
|
+
"application/x-msaccess": ["mdb"],
|
58322
|
+
"application/x-msbinder": ["obd"],
|
58323
|
+
"application/x-mscardfile": ["crd"],
|
58324
|
+
"application/x-msclip": ["clp"],
|
58325
|
+
"application/x-msdos-program": ["*exe"],
|
58326
|
+
"application/x-msdownload": ["*exe", "*dll", "com", "bat", "*msi"],
|
58327
|
+
"application/x-msmediaview": ["mvb", "m13", "m14"],
|
58328
|
+
"application/x-msmetafile": ["*wmf", "*wmz", "*emf", "emz"],
|
58329
|
+
"application/x-msmoney": ["mny"],
|
58330
|
+
"application/x-mspublisher": ["pub"],
|
58331
|
+
"application/x-msschedule": ["scd"],
|
58332
|
+
"application/x-msterminal": ["trm"],
|
58333
|
+
"application/x-mswrite": ["wri"],
|
58334
|
+
"application/x-netcdf": ["nc", "cdf"],
|
58335
|
+
"application/x-ns-proxy-autoconfig": ["pac"],
|
58336
|
+
"application/x-nzb": ["nzb"],
|
58337
|
+
"application/x-perl": ["pl", "pm"],
|
58338
|
+
"application/x-pilot": ["*prc", "*pdb"],
|
58339
|
+
"application/x-pkcs12": ["p12", "pfx"],
|
58340
|
+
"application/x-pkcs7-certificates": ["p7b", "spc"],
|
58341
|
+
"application/x-pkcs7-certreqresp": ["p7r"],
|
58342
|
+
"application/x-rar-compressed": ["*rar"],
|
58343
|
+
"application/x-redhat-package-manager": ["rpm"],
|
58344
|
+
"application/x-research-info-systems": ["ris"],
|
58345
|
+
"application/x-sea": ["sea"],
|
58346
|
+
"application/x-sh": ["sh"],
|
58347
|
+
"application/x-shar": ["shar"],
|
58348
|
+
"application/x-shockwave-flash": ["swf"],
|
58349
|
+
"application/x-silverlight-app": ["xap"],
|
58350
|
+
"application/x-sql": ["*sql"],
|
58351
|
+
"application/x-stuffit": ["sit"],
|
58352
|
+
"application/x-stuffitx": ["sitx"],
|
58353
|
+
"application/x-subrip": ["srt"],
|
58354
|
+
"application/x-sv4cpio": ["sv4cpio"],
|
58355
|
+
"application/x-sv4crc": ["sv4crc"],
|
58356
|
+
"application/x-t3vm-image": ["t3"],
|
58357
|
+
"application/x-tads": ["gam"],
|
58358
|
+
"application/x-tar": ["tar"],
|
58359
|
+
"application/x-tcl": ["tcl", "tk"],
|
58360
|
+
"application/x-tex": ["tex"],
|
58361
|
+
"application/x-tex-tfm": ["tfm"],
|
58362
|
+
"application/x-texinfo": ["texinfo", "texi"],
|
58363
|
+
"application/x-tgif": ["*obj"],
|
58364
|
+
"application/x-ustar": ["ustar"],
|
58365
|
+
"application/x-virtualbox-hdd": ["hdd"],
|
58366
|
+
"application/x-virtualbox-ova": ["ova"],
|
58367
|
+
"application/x-virtualbox-ovf": ["ovf"],
|
58368
|
+
"application/x-virtualbox-vbox": ["vbox"],
|
58369
|
+
"application/x-virtualbox-vbox-extpack": ["vbox-extpack"],
|
58370
|
+
"application/x-virtualbox-vdi": ["vdi"],
|
58371
|
+
"application/x-virtualbox-vhd": ["vhd"],
|
58372
|
+
"application/x-virtualbox-vmdk": ["vmdk"],
|
58373
|
+
"application/x-wais-source": ["src"],
|
58374
|
+
"application/x-web-app-manifest+json": ["webapp"],
|
58375
|
+
"application/x-x509-ca-cert": ["der", "crt", "pem"],
|
58376
|
+
"application/x-xfig": ["fig"],
|
58377
|
+
"application/x-xliff+xml": ["*xlf"],
|
58378
|
+
"application/x-xpinstall": ["xpi"],
|
58379
|
+
"application/x-xz": ["xz"],
|
58380
|
+
"application/x-zip-compressed": ["*zip"],
|
58381
|
+
"application/x-zmachine": ["z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8"],
|
58382
|
+
"audio/vnd.dece.audio": ["uva", "uvva"],
|
58383
|
+
"audio/vnd.digital-winds": ["eol"],
|
58384
|
+
"audio/vnd.dra": ["dra"],
|
58385
|
+
"audio/vnd.dts": ["dts"],
|
58386
|
+
"audio/vnd.dts.hd": ["dtshd"],
|
58387
|
+
"audio/vnd.lucent.voice": ["lvp"],
|
58388
|
+
"audio/vnd.ms-playready.media.pya": ["pya"],
|
58389
|
+
"audio/vnd.nuera.ecelp4800": ["ecelp4800"],
|
58390
|
+
"audio/vnd.nuera.ecelp7470": ["ecelp7470"],
|
58391
|
+
"audio/vnd.nuera.ecelp9600": ["ecelp9600"],
|
58392
|
+
"audio/vnd.rip": ["rip"],
|
58393
|
+
"audio/x-aac": ["*aac"],
|
58394
|
+
"audio/x-aiff": ["aif", "aiff", "aifc"],
|
58395
|
+
"audio/x-caf": ["caf"],
|
58396
|
+
"audio/x-flac": ["flac"],
|
58397
|
+
"audio/x-m4a": ["*m4a"],
|
58398
|
+
"audio/x-matroska": ["mka"],
|
58399
|
+
"audio/x-mpegurl": ["m3u"],
|
58400
|
+
"audio/x-ms-wax": ["wax"],
|
58401
|
+
"audio/x-ms-wma": ["wma"],
|
58402
|
+
"audio/x-pn-realaudio": ["ram", "ra"],
|
58403
|
+
"audio/x-pn-realaudio-plugin": ["rmp"],
|
58404
|
+
"audio/x-realaudio": ["*ra"],
|
58405
|
+
"audio/x-wav": ["*wav"],
|
58406
|
+
"chemical/x-cdx": ["cdx"],
|
58407
|
+
"chemical/x-cif": ["cif"],
|
58408
|
+
"chemical/x-cmdf": ["cmdf"],
|
58409
|
+
"chemical/x-cml": ["cml"],
|
58410
|
+
"chemical/x-csml": ["csml"],
|
58411
|
+
"chemical/x-xyz": ["xyz"],
|
58412
|
+
"image/prs.btif": ["btif", "btf"],
|
58413
|
+
"image/prs.pti": ["pti"],
|
58414
|
+
"image/vnd.adobe.photoshop": ["psd"],
|
58415
|
+
"image/vnd.airzip.accelerator.azv": ["azv"],
|
58416
|
+
"image/vnd.dece.graphic": ["uvi", "uvvi", "uvg", "uvvg"],
|
58417
|
+
"image/vnd.djvu": ["djvu", "djv"],
|
58418
|
+
"image/vnd.dvb.subtitle": ["*sub"],
|
58419
|
+
"image/vnd.dwg": ["dwg"],
|
58420
|
+
"image/vnd.dxf": ["dxf"],
|
58421
|
+
"image/vnd.fastbidsheet": ["fbs"],
|
58422
|
+
"image/vnd.fpx": ["fpx"],
|
58423
|
+
"image/vnd.fst": ["fst"],
|
58424
|
+
"image/vnd.fujixerox.edmics-mmr": ["mmr"],
|
58425
|
+
"image/vnd.fujixerox.edmics-rlc": ["rlc"],
|
58426
|
+
"image/vnd.microsoft.icon": ["ico"],
|
58427
|
+
"image/vnd.ms-dds": ["dds"],
|
58428
|
+
"image/vnd.ms-modi": ["mdi"],
|
58429
|
+
"image/vnd.ms-photo": ["wdp"],
|
58430
|
+
"image/vnd.net-fpx": ["npx"],
|
58431
|
+
"image/vnd.pco.b16": ["b16"],
|
58432
|
+
"image/vnd.tencent.tap": ["tap"],
|
58433
|
+
"image/vnd.valve.source.texture": ["vtf"],
|
58434
|
+
"image/vnd.wap.wbmp": ["wbmp"],
|
58435
|
+
"image/vnd.xiff": ["xif"],
|
58436
|
+
"image/vnd.zbrush.pcx": ["pcx"],
|
58437
|
+
"image/x-3ds": ["3ds"],
|
58438
|
+
"image/x-adobe-dng": ["dng"],
|
58439
|
+
"image/x-cmu-raster": ["ras"],
|
58440
|
+
"image/x-cmx": ["cmx"],
|
58441
|
+
"image/x-freehand": ["fh", "fhc", "fh4", "fh5", "fh7"],
|
58442
|
+
"image/x-icon": ["*ico"],
|
58443
|
+
"image/x-jng": ["jng"],
|
58444
|
+
"image/x-mrsid-image": ["sid"],
|
58445
|
+
"image/x-ms-bmp": ["*bmp"],
|
58446
|
+
"image/x-pcx": ["*pcx"],
|
58447
|
+
"image/x-pict": ["pic", "pct"],
|
58448
|
+
"image/x-portable-anymap": ["pnm"],
|
58449
|
+
"image/x-portable-bitmap": ["pbm"],
|
58450
|
+
"image/x-portable-graymap": ["pgm"],
|
58451
|
+
"image/x-portable-pixmap": ["ppm"],
|
58452
|
+
"image/x-rgb": ["rgb"],
|
58453
|
+
"image/x-tga": ["tga"],
|
58454
|
+
"image/x-xbitmap": ["xbm"],
|
58455
|
+
"image/x-xpixmap": ["xpm"],
|
58456
|
+
"image/x-xwindowdump": ["xwd"],
|
58457
|
+
"message/vnd.wfa.wsc": ["wsc"],
|
58458
|
+
"model/vnd.bary": ["bary"],
|
58459
|
+
"model/vnd.cld": ["cld"],
|
58460
|
+
"model/vnd.collada+xml": ["dae"],
|
58461
|
+
"model/vnd.dwf": ["dwf"],
|
58462
|
+
"model/vnd.gdl": ["gdl"],
|
58463
|
+
"model/vnd.gtw": ["gtw"],
|
58464
|
+
"model/vnd.mts": ["*mts"],
|
58465
|
+
"model/vnd.opengex": ["ogex"],
|
58466
|
+
"model/vnd.parasolid.transmit.binary": ["x_b"],
|
58467
|
+
"model/vnd.parasolid.transmit.text": ["x_t"],
|
58468
|
+
"model/vnd.pytha.pyox": ["pyo", "pyox"],
|
58469
|
+
"model/vnd.sap.vds": ["vds"],
|
58470
|
+
"model/vnd.usda": ["usda"],
|
58471
|
+
"model/vnd.usdz+zip": ["usdz"],
|
58472
|
+
"model/vnd.valve.source.compiled-map": ["bsp"],
|
58473
|
+
"model/vnd.vtu": ["vtu"],
|
58474
|
+
"text/prs.lines.tag": ["dsc"],
|
58475
|
+
"text/vnd.curl": ["curl"],
|
58476
|
+
"text/vnd.curl.dcurl": ["dcurl"],
|
58477
|
+
"text/vnd.curl.mcurl": ["mcurl"],
|
58478
|
+
"text/vnd.curl.scurl": ["scurl"],
|
58479
|
+
"text/vnd.dvb.subtitle": ["sub"],
|
58480
|
+
"text/vnd.familysearch.gedcom": ["ged"],
|
58481
|
+
"text/vnd.fly": ["fly"],
|
58482
|
+
"text/vnd.fmi.flexstor": ["flx"],
|
58483
|
+
"text/vnd.graphviz": ["gv"],
|
58484
|
+
"text/vnd.in3d.3dml": ["3dml"],
|
58485
|
+
"text/vnd.in3d.spot": ["spot"],
|
58486
|
+
"text/vnd.sun.j2me.app-descriptor": ["jad"],
|
58487
|
+
"text/vnd.wap.wml": ["wml"],
|
58488
|
+
"text/vnd.wap.wmlscript": ["wmls"],
|
58489
|
+
"text/x-asm": ["s", "asm"],
|
58490
|
+
"text/x-c": ["c", "cc", "cxx", "cpp", "h", "hh", "dic"],
|
58491
|
+
"text/x-component": ["htc"],
|
58492
|
+
"text/x-fortran": ["f", "for", "f77", "f90"],
|
58493
|
+
"text/x-handlebars-template": ["hbs"],
|
58494
|
+
"text/x-java-source": ["java"],
|
58495
|
+
"text/x-lua": ["lua"],
|
58496
|
+
"text/x-markdown": ["mkd"],
|
58497
|
+
"text/x-nfo": ["nfo"],
|
58498
|
+
"text/x-opml": ["opml"],
|
58499
|
+
"text/x-org": ["*org"],
|
58500
|
+
"text/x-pascal": ["p", "pas"],
|
58501
|
+
"text/x-processing": ["pde"],
|
58502
|
+
"text/x-sass": ["sass"],
|
58503
|
+
"text/x-scss": ["scss"],
|
58504
|
+
"text/x-setext": ["etx"],
|
58505
|
+
"text/x-sfv": ["sfv"],
|
58506
|
+
"text/x-suse-ymp": ["ymp"],
|
58507
|
+
"text/x-uuencode": ["uu"],
|
58508
|
+
"text/x-vcalendar": ["vcs"],
|
58509
|
+
"text/x-vcard": ["vcf"],
|
58510
|
+
"video/vnd.dece.hd": ["uvh", "uvvh"],
|
58511
|
+
"video/vnd.dece.mobile": ["uvm", "uvvm"],
|
58512
|
+
"video/vnd.dece.pd": ["uvp", "uvvp"],
|
58513
|
+
"video/vnd.dece.sd": ["uvs", "uvvs"],
|
58514
|
+
"video/vnd.dece.video": ["uvv", "uvvv"],
|
58515
|
+
"video/vnd.dvb.file": ["dvb"],
|
58516
|
+
"video/vnd.fvt": ["fvt"],
|
58517
|
+
"video/vnd.mpegurl": ["mxu", "m4u"],
|
58518
|
+
"video/vnd.ms-playready.media.pyv": ["pyv"],
|
58519
|
+
"video/vnd.uvvu.mp4": ["uvu", "uvvu"],
|
58520
|
+
"video/vnd.vivo": ["viv"],
|
58521
|
+
"video/x-f4v": ["f4v"],
|
58522
|
+
"video/x-fli": ["fli"],
|
58523
|
+
"video/x-flv": ["flv"],
|
58524
|
+
"video/x-m4v": ["m4v"],
|
58525
|
+
"video/x-matroska": ["mkv", "mk3d", "mks"],
|
58526
|
+
"video/x-mng": ["mng"],
|
58527
|
+
"video/x-ms-asf": ["asf", "asx"],
|
58528
|
+
"video/x-ms-vob": ["vob"],
|
58529
|
+
"video/x-ms-wm": ["wm"],
|
58530
|
+
"video/x-ms-wmv": ["wmv"],
|
58531
|
+
"video/x-ms-wmx": ["wmx"],
|
58532
|
+
"video/x-ms-wvx": ["wvx"],
|
58533
|
+
"video/x-msvideo": ["avi"],
|
58534
|
+
"video/x-sgi-movie": ["movie"],
|
58535
|
+
"video/x-smv": ["smv"],
|
58536
|
+
"x-conference/x-cooltalk": ["ice"]
|
58537
|
+
};
|
58538
|
+
Object.freeze(types);
|
58539
|
+
other_default = types;
|
58540
|
+
}
|
58541
|
+
});
|
58542
|
+
|
58543
|
+
// ../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/types/standard.js
|
58544
|
+
var types2, standard_default;
|
58545
|
+
var init_standard = __esm({
|
58546
|
+
"../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/types/standard.js"() {
|
58547
|
+
init_import_meta_url();
|
58548
|
+
types2 = {
|
58549
|
+
"application/andrew-inset": ["ez"],
|
58550
|
+
"application/appinstaller": ["appinstaller"],
|
58551
|
+
"application/applixware": ["aw"],
|
58552
|
+
"application/appx": ["appx"],
|
58553
|
+
"application/appxbundle": ["appxbundle"],
|
58554
|
+
"application/atom+xml": ["atom"],
|
58555
|
+
"application/atomcat+xml": ["atomcat"],
|
58556
|
+
"application/atomdeleted+xml": ["atomdeleted"],
|
58557
|
+
"application/atomsvc+xml": ["atomsvc"],
|
58558
|
+
"application/atsc-dwd+xml": ["dwd"],
|
58559
|
+
"application/atsc-held+xml": ["held"],
|
58560
|
+
"application/atsc-rsat+xml": ["rsat"],
|
58561
|
+
"application/automationml-aml+xml": ["aml"],
|
58562
|
+
"application/automationml-amlx+zip": ["amlx"],
|
58563
|
+
"application/bdoc": ["bdoc"],
|
58564
|
+
"application/calendar+xml": ["xcs"],
|
58565
|
+
"application/ccxml+xml": ["ccxml"],
|
58566
|
+
"application/cdfx+xml": ["cdfx"],
|
58567
|
+
"application/cdmi-capability": ["cdmia"],
|
58568
|
+
"application/cdmi-container": ["cdmic"],
|
58569
|
+
"application/cdmi-domain": ["cdmid"],
|
58570
|
+
"application/cdmi-object": ["cdmio"],
|
58571
|
+
"application/cdmi-queue": ["cdmiq"],
|
58572
|
+
"application/cpl+xml": ["cpl"],
|
58573
|
+
"application/cu-seeme": ["cu"],
|
58574
|
+
"application/cwl": ["cwl"],
|
58575
|
+
"application/dash+xml": ["mpd"],
|
58576
|
+
"application/dash-patch+xml": ["mpp"],
|
58577
|
+
"application/davmount+xml": ["davmount"],
|
58578
|
+
"application/dicom": ["dcm"],
|
58579
|
+
"application/docbook+xml": ["dbk"],
|
58580
|
+
"application/dssc+der": ["dssc"],
|
58581
|
+
"application/dssc+xml": ["xdssc"],
|
58582
|
+
"application/ecmascript": ["ecma"],
|
58583
|
+
"application/emma+xml": ["emma"],
|
58584
|
+
"application/emotionml+xml": ["emotionml"],
|
58585
|
+
"application/epub+zip": ["epub"],
|
58586
|
+
"application/exi": ["exi"],
|
58587
|
+
"application/express": ["exp"],
|
58588
|
+
"application/fdf": ["fdf"],
|
58589
|
+
"application/fdt+xml": ["fdt"],
|
58590
|
+
"application/font-tdpfr": ["pfr"],
|
58591
|
+
"application/geo+json": ["geojson"],
|
58592
|
+
"application/gml+xml": ["gml"],
|
58593
|
+
"application/gpx+xml": ["gpx"],
|
58594
|
+
"application/gxf": ["gxf"],
|
58595
|
+
"application/gzip": ["gz"],
|
58596
|
+
"application/hjson": ["hjson"],
|
58597
|
+
"application/hyperstudio": ["stk"],
|
58598
|
+
"application/inkml+xml": ["ink", "inkml"],
|
58599
|
+
"application/ipfix": ["ipfix"],
|
58600
|
+
"application/its+xml": ["its"],
|
58601
|
+
"application/java-archive": ["jar", "war", "ear"],
|
58602
|
+
"application/java-serialized-object": ["ser"],
|
58603
|
+
"application/java-vm": ["class"],
|
58604
|
+
"application/javascript": ["*js"],
|
58605
|
+
"application/json": ["json", "map"],
|
58606
|
+
"application/json5": ["json5"],
|
58607
|
+
"application/jsonml+json": ["jsonml"],
|
58608
|
+
"application/ld+json": ["jsonld"],
|
58609
|
+
"application/lgr+xml": ["lgr"],
|
58610
|
+
"application/lost+xml": ["lostxml"],
|
58611
|
+
"application/mac-binhex40": ["hqx"],
|
58612
|
+
"application/mac-compactpro": ["cpt"],
|
58613
|
+
"application/mads+xml": ["mads"],
|
58614
|
+
"application/manifest+json": ["webmanifest"],
|
58615
|
+
"application/marc": ["mrc"],
|
58616
|
+
"application/marcxml+xml": ["mrcx"],
|
58617
|
+
"application/mathematica": ["ma", "nb", "mb"],
|
58618
|
+
"application/mathml+xml": ["mathml"],
|
58619
|
+
"application/mbox": ["mbox"],
|
58620
|
+
"application/media-policy-dataset+xml": ["mpf"],
|
58621
|
+
"application/mediaservercontrol+xml": ["mscml"],
|
58622
|
+
"application/metalink+xml": ["metalink"],
|
58623
|
+
"application/metalink4+xml": ["meta4"],
|
58624
|
+
"application/mets+xml": ["mets"],
|
58625
|
+
"application/mmt-aei+xml": ["maei"],
|
58626
|
+
"application/mmt-usd+xml": ["musd"],
|
58627
|
+
"application/mods+xml": ["mods"],
|
58628
|
+
"application/mp21": ["m21", "mp21"],
|
58629
|
+
"application/mp4": ["*mp4", "*mpg4", "mp4s", "m4p"],
|
58630
|
+
"application/msix": ["msix"],
|
58631
|
+
"application/msixbundle": ["msixbundle"],
|
58632
|
+
"application/msword": ["doc", "dot"],
|
58633
|
+
"application/mxf": ["mxf"],
|
58634
|
+
"application/n-quads": ["nq"],
|
58635
|
+
"application/n-triples": ["nt"],
|
58636
|
+
"application/node": ["cjs"],
|
58637
|
+
"application/octet-stream": [
|
58638
|
+
"bin",
|
58639
|
+
"dms",
|
58640
|
+
"lrf",
|
58641
|
+
"mar",
|
58642
|
+
"so",
|
58643
|
+
"dist",
|
58644
|
+
"distz",
|
58645
|
+
"pkg",
|
58646
|
+
"bpk",
|
58647
|
+
"dump",
|
58648
|
+
"elc",
|
58649
|
+
"deploy",
|
58650
|
+
"exe",
|
58651
|
+
"dll",
|
58652
|
+
"deb",
|
58653
|
+
"dmg",
|
58654
|
+
"iso",
|
58655
|
+
"img",
|
58656
|
+
"msi",
|
58657
|
+
"msp",
|
58658
|
+
"msm",
|
58659
|
+
"buffer"
|
58660
|
+
],
|
58661
|
+
"application/oda": ["oda"],
|
58662
|
+
"application/oebps-package+xml": ["opf"],
|
58663
|
+
"application/ogg": ["ogx"],
|
58664
|
+
"application/omdoc+xml": ["omdoc"],
|
58665
|
+
"application/onenote": [
|
58666
|
+
"onetoc",
|
58667
|
+
"onetoc2",
|
58668
|
+
"onetmp",
|
58669
|
+
"onepkg",
|
58670
|
+
"one",
|
58671
|
+
"onea"
|
58672
|
+
],
|
58673
|
+
"application/oxps": ["oxps"],
|
58674
|
+
"application/p2p-overlay+xml": ["relo"],
|
58675
|
+
"application/patch-ops-error+xml": ["xer"],
|
58676
|
+
"application/pdf": ["pdf"],
|
58677
|
+
"application/pgp-encrypted": ["pgp"],
|
58678
|
+
"application/pgp-keys": ["asc"],
|
58679
|
+
"application/pgp-signature": ["sig", "*asc"],
|
58680
|
+
"application/pics-rules": ["prf"],
|
58681
|
+
"application/pkcs10": ["p10"],
|
58682
|
+
"application/pkcs7-mime": ["p7m", "p7c"],
|
58683
|
+
"application/pkcs7-signature": ["p7s"],
|
58684
|
+
"application/pkcs8": ["p8"],
|
58685
|
+
"application/pkix-attr-cert": ["ac"],
|
58686
|
+
"application/pkix-cert": ["cer"],
|
58687
|
+
"application/pkix-crl": ["crl"],
|
58688
|
+
"application/pkix-pkipath": ["pkipath"],
|
58689
|
+
"application/pkixcmp": ["pki"],
|
58690
|
+
"application/pls+xml": ["pls"],
|
58691
|
+
"application/postscript": ["ai", "eps", "ps"],
|
58692
|
+
"application/provenance+xml": ["provx"],
|
58693
|
+
"application/pskc+xml": ["pskcxml"],
|
58694
|
+
"application/raml+yaml": ["raml"],
|
58695
|
+
"application/rdf+xml": ["rdf", "owl"],
|
58696
|
+
"application/reginfo+xml": ["rif"],
|
58697
|
+
"application/relax-ng-compact-syntax": ["rnc"],
|
58698
|
+
"application/resource-lists+xml": ["rl"],
|
58699
|
+
"application/resource-lists-diff+xml": ["rld"],
|
58700
|
+
"application/rls-services+xml": ["rs"],
|
58701
|
+
"application/route-apd+xml": ["rapd"],
|
58702
|
+
"application/route-s-tsid+xml": ["sls"],
|
58703
|
+
"application/route-usd+xml": ["rusd"],
|
58704
|
+
"application/rpki-ghostbusters": ["gbr"],
|
58705
|
+
"application/rpki-manifest": ["mft"],
|
58706
|
+
"application/rpki-roa": ["roa"],
|
58707
|
+
"application/rsd+xml": ["rsd"],
|
58708
|
+
"application/rss+xml": ["rss"],
|
58709
|
+
"application/rtf": ["rtf"],
|
58710
|
+
"application/sbml+xml": ["sbml"],
|
58711
|
+
"application/scvp-cv-request": ["scq"],
|
58712
|
+
"application/scvp-cv-response": ["scs"],
|
58713
|
+
"application/scvp-vp-request": ["spq"],
|
58714
|
+
"application/scvp-vp-response": ["spp"],
|
58715
|
+
"application/sdp": ["sdp"],
|
58716
|
+
"application/senml+xml": ["senmlx"],
|
58717
|
+
"application/sensml+xml": ["sensmlx"],
|
58718
|
+
"application/set-payment-initiation": ["setpay"],
|
58719
|
+
"application/set-registration-initiation": ["setreg"],
|
58720
|
+
"application/shf+xml": ["shf"],
|
58721
|
+
"application/sieve": ["siv", "sieve"],
|
58722
|
+
"application/smil+xml": ["smi", "smil"],
|
58723
|
+
"application/sparql-query": ["rq"],
|
58724
|
+
"application/sparql-results+xml": ["srx"],
|
58725
|
+
"application/sql": ["sql"],
|
58726
|
+
"application/srgs": ["gram"],
|
58727
|
+
"application/srgs+xml": ["grxml"],
|
58728
|
+
"application/sru+xml": ["sru"],
|
58729
|
+
"application/ssdl+xml": ["ssdl"],
|
58730
|
+
"application/ssml+xml": ["ssml"],
|
58731
|
+
"application/swid+xml": ["swidtag"],
|
58732
|
+
"application/tei+xml": ["tei", "teicorpus"],
|
58733
|
+
"application/thraud+xml": ["tfi"],
|
58734
|
+
"application/timestamped-data": ["tsd"],
|
58735
|
+
"application/toml": ["toml"],
|
58736
|
+
"application/trig": ["trig"],
|
58737
|
+
"application/ttml+xml": ["ttml"],
|
58738
|
+
"application/ubjson": ["ubj"],
|
58739
|
+
"application/urc-ressheet+xml": ["rsheet"],
|
58740
|
+
"application/urc-targetdesc+xml": ["td"],
|
58741
|
+
"application/voicexml+xml": ["vxml"],
|
58742
|
+
"application/wasm": ["wasm"],
|
58743
|
+
"application/watcherinfo+xml": ["wif"],
|
58744
|
+
"application/widget": ["wgt"],
|
58745
|
+
"application/winhlp": ["hlp"],
|
58746
|
+
"application/wsdl+xml": ["wsdl"],
|
58747
|
+
"application/wspolicy+xml": ["wspolicy"],
|
58748
|
+
"application/xaml+xml": ["xaml"],
|
58749
|
+
"application/xcap-att+xml": ["xav"],
|
58750
|
+
"application/xcap-caps+xml": ["xca"],
|
58751
|
+
"application/xcap-diff+xml": ["xdf"],
|
58752
|
+
"application/xcap-el+xml": ["xel"],
|
58753
|
+
"application/xcap-ns+xml": ["xns"],
|
58754
|
+
"application/xenc+xml": ["xenc"],
|
58755
|
+
"application/xfdf": ["xfdf"],
|
58756
|
+
"application/xhtml+xml": ["xhtml", "xht"],
|
58757
|
+
"application/xliff+xml": ["xlf"],
|
58758
|
+
"application/xml": ["xml", "xsl", "xsd", "rng"],
|
58759
|
+
"application/xml-dtd": ["dtd"],
|
58760
|
+
"application/xop+xml": ["xop"],
|
58761
|
+
"application/xproc+xml": ["xpl"],
|
58762
|
+
"application/xslt+xml": ["*xsl", "xslt"],
|
58763
|
+
"application/xspf+xml": ["xspf"],
|
58764
|
+
"application/xv+xml": ["mxml", "xhvml", "xvml", "xvm"],
|
58765
|
+
"application/yang": ["yang"],
|
58766
|
+
"application/yin+xml": ["yin"],
|
58767
|
+
"application/zip": ["zip"],
|
58768
|
+
"application/zip+dotlottie": ["lottie"],
|
58769
|
+
"audio/3gpp": ["*3gpp"],
|
58770
|
+
"audio/aac": ["adts", "aac"],
|
58771
|
+
"audio/adpcm": ["adp"],
|
58772
|
+
"audio/amr": ["amr"],
|
58773
|
+
"audio/basic": ["au", "snd"],
|
58774
|
+
"audio/midi": ["mid", "midi", "kar", "rmi"],
|
58775
|
+
"audio/mobile-xmf": ["mxmf"],
|
58776
|
+
"audio/mp3": ["*mp3"],
|
58777
|
+
"audio/mp4": ["m4a", "mp4a", "m4b"],
|
58778
|
+
"audio/mpeg": ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"],
|
58779
|
+
"audio/ogg": ["oga", "ogg", "spx", "opus"],
|
58780
|
+
"audio/s3m": ["s3m"],
|
58781
|
+
"audio/silk": ["sil"],
|
58782
|
+
"audio/wav": ["wav"],
|
58783
|
+
"audio/wave": ["*wav"],
|
58784
|
+
"audio/webm": ["weba"],
|
58785
|
+
"audio/xm": ["xm"],
|
58786
|
+
"font/collection": ["ttc"],
|
58787
|
+
"font/otf": ["otf"],
|
58788
|
+
"font/ttf": ["ttf"],
|
58789
|
+
"font/woff": ["woff"],
|
58790
|
+
"font/woff2": ["woff2"],
|
58791
|
+
"image/aces": ["exr"],
|
58792
|
+
"image/apng": ["apng"],
|
58793
|
+
"image/avci": ["avci"],
|
58794
|
+
"image/avcs": ["avcs"],
|
58795
|
+
"image/avif": ["avif"],
|
58796
|
+
"image/bmp": ["bmp", "dib"],
|
58797
|
+
"image/cgm": ["cgm"],
|
58798
|
+
"image/dicom-rle": ["drle"],
|
58799
|
+
"image/dpx": ["dpx"],
|
58800
|
+
"image/emf": ["emf"],
|
58801
|
+
"image/fits": ["fits"],
|
58802
|
+
"image/g3fax": ["g3"],
|
58803
|
+
"image/gif": ["gif"],
|
58804
|
+
"image/heic": ["heic"],
|
58805
|
+
"image/heic-sequence": ["heics"],
|
58806
|
+
"image/heif": ["heif"],
|
58807
|
+
"image/heif-sequence": ["heifs"],
|
58808
|
+
"image/hej2k": ["hej2"],
|
58809
|
+
"image/ief": ["ief"],
|
58810
|
+
"image/jaii": ["jaii"],
|
58811
|
+
"image/jais": ["jais"],
|
58812
|
+
"image/jls": ["jls"],
|
58813
|
+
"image/jp2": ["jp2", "jpg2"],
|
58814
|
+
"image/jpeg": ["jpg", "jpeg", "jpe"],
|
58815
|
+
"image/jph": ["jph"],
|
58816
|
+
"image/jphc": ["jhc"],
|
58817
|
+
"image/jpm": ["jpm", "jpgm"],
|
58818
|
+
"image/jpx": ["jpx", "jpf"],
|
58819
|
+
"image/jxl": ["jxl"],
|
58820
|
+
"image/jxr": ["jxr"],
|
58821
|
+
"image/jxra": ["jxra"],
|
58822
|
+
"image/jxrs": ["jxrs"],
|
58823
|
+
"image/jxs": ["jxs"],
|
58824
|
+
"image/jxsc": ["jxsc"],
|
58825
|
+
"image/jxsi": ["jxsi"],
|
58826
|
+
"image/jxss": ["jxss"],
|
58827
|
+
"image/ktx": ["ktx"],
|
58828
|
+
"image/ktx2": ["ktx2"],
|
58829
|
+
"image/pjpeg": ["jfif"],
|
58830
|
+
"image/png": ["png"],
|
58831
|
+
"image/sgi": ["sgi"],
|
58832
|
+
"image/svg+xml": ["svg", "svgz"],
|
58833
|
+
"image/t38": ["t38"],
|
58834
|
+
"image/tiff": ["tif", "tiff"],
|
58835
|
+
"image/tiff-fx": ["tfx"],
|
58836
|
+
"image/webp": ["webp"],
|
58837
|
+
"image/wmf": ["wmf"],
|
58838
|
+
"message/disposition-notification": ["disposition-notification"],
|
58839
|
+
"message/global": ["u8msg"],
|
58840
|
+
"message/global-delivery-status": ["u8dsn"],
|
58841
|
+
"message/global-disposition-notification": ["u8mdn"],
|
58842
|
+
"message/global-headers": ["u8hdr"],
|
58843
|
+
"message/rfc822": ["eml", "mime", "mht", "mhtml"],
|
58844
|
+
"model/3mf": ["3mf"],
|
58845
|
+
"model/gltf+json": ["gltf"],
|
58846
|
+
"model/gltf-binary": ["glb"],
|
58847
|
+
"model/iges": ["igs", "iges"],
|
58848
|
+
"model/jt": ["jt"],
|
58849
|
+
"model/mesh": ["msh", "mesh", "silo"],
|
58850
|
+
"model/mtl": ["mtl"],
|
58851
|
+
"model/obj": ["obj"],
|
58852
|
+
"model/prc": ["prc"],
|
58853
|
+
"model/step": ["step", "stp", "stpnc", "p21", "210"],
|
58854
|
+
"model/step+xml": ["stpx"],
|
58855
|
+
"model/step+zip": ["stpz"],
|
58856
|
+
"model/step-xml+zip": ["stpxz"],
|
58857
|
+
"model/stl": ["stl"],
|
58858
|
+
"model/u3d": ["u3d"],
|
58859
|
+
"model/vrml": ["wrl", "vrml"],
|
58860
|
+
"model/x3d+binary": ["*x3db", "x3dbz"],
|
58861
|
+
"model/x3d+fastinfoset": ["x3db"],
|
58862
|
+
"model/x3d+vrml": ["*x3dv", "x3dvz"],
|
58863
|
+
"model/x3d+xml": ["x3d", "x3dz"],
|
58864
|
+
"model/x3d-vrml": ["x3dv"],
|
58865
|
+
"text/cache-manifest": ["appcache", "manifest"],
|
58866
|
+
"text/calendar": ["ics", "ifb"],
|
58867
|
+
"text/coffeescript": ["coffee", "litcoffee"],
|
58868
|
+
"text/css": ["css"],
|
58869
|
+
"text/csv": ["csv"],
|
58870
|
+
"text/html": ["html", "htm", "shtml"],
|
58871
|
+
"text/jade": ["jade"],
|
58872
|
+
"text/javascript": ["js", "mjs"],
|
58873
|
+
"text/jsx": ["jsx"],
|
58874
|
+
"text/less": ["less"],
|
58875
|
+
"text/markdown": ["md", "markdown"],
|
58876
|
+
"text/mathml": ["mml"],
|
58877
|
+
"text/mdx": ["mdx"],
|
58878
|
+
"text/n3": ["n3"],
|
58879
|
+
"text/plain": ["txt", "text", "conf", "def", "list", "log", "in", "ini"],
|
58880
|
+
"text/richtext": ["rtx"],
|
58881
|
+
"text/rtf": ["*rtf"],
|
58882
|
+
"text/sgml": ["sgml", "sgm"],
|
58883
|
+
"text/shex": ["shex"],
|
58884
|
+
"text/slim": ["slim", "slm"],
|
58885
|
+
"text/spdx": ["spdx"],
|
58886
|
+
"text/stylus": ["stylus", "styl"],
|
58887
|
+
"text/tab-separated-values": ["tsv"],
|
58888
|
+
"text/troff": ["t", "tr", "roff", "man", "me", "ms"],
|
58889
|
+
"text/turtle": ["ttl"],
|
58890
|
+
"text/uri-list": ["uri", "uris", "urls"],
|
58891
|
+
"text/vcard": ["vcard"],
|
58892
|
+
"text/vtt": ["vtt"],
|
58893
|
+
"text/wgsl": ["wgsl"],
|
58894
|
+
"text/xml": ["*xml"],
|
58895
|
+
"text/yaml": ["yaml", "yml"],
|
58896
|
+
"video/3gpp": ["3gp", "3gpp"],
|
58897
|
+
"video/3gpp2": ["3g2"],
|
58898
|
+
"video/h261": ["h261"],
|
58899
|
+
"video/h263": ["h263"],
|
58900
|
+
"video/h264": ["h264"],
|
58901
|
+
"video/iso.segment": ["m4s"],
|
58902
|
+
"video/jpeg": ["jpgv"],
|
58903
|
+
"video/jpm": ["*jpm", "*jpgm"],
|
58904
|
+
"video/mj2": ["mj2", "mjp2"],
|
58905
|
+
"video/mp2t": ["ts", "m2t", "m2ts", "mts"],
|
58906
|
+
"video/mp4": ["mp4", "mp4v", "mpg4"],
|
58907
|
+
"video/mpeg": ["mpeg", "mpg", "mpe", "m1v", "m2v"],
|
58908
|
+
"video/ogg": ["ogv"],
|
58909
|
+
"video/quicktime": ["qt", "mov"],
|
58910
|
+
"video/webm": ["webm"]
|
58911
|
+
};
|
58912
|
+
Object.freeze(types2);
|
58913
|
+
standard_default = types2;
|
58914
|
+
}
|
58915
|
+
});
|
58916
|
+
|
58917
|
+
// ../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/src/Mime.js
|
58918
|
+
var __classPrivateFieldGet, _Mime_extensionToType, _Mime_typeToExtension, _Mime_typeToExtensions, Mime, Mime_default;
|
58919
|
+
var init_Mime = __esm({
|
58920
|
+
"../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/src/Mime.js"() {
|
57821
58921
|
init_import_meta_url();
|
57822
|
-
function
|
57823
|
-
|
57824
|
-
|
57825
|
-
|
57826
|
-
|
58922
|
+
__classPrivateFieldGet = function(receiver, state2, kind, f6) {
|
58923
|
+
if (kind === "a" && !f6) throw new TypeError("Private accessor was defined without a getter");
|
58924
|
+
if (typeof state2 === "function" ? receiver !== state2 || !f6 : !state2.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
58925
|
+
return kind === "m" ? f6 : kind === "a" ? f6.call(receiver) : f6 ? f6.value : state2.get(receiver);
|
58926
|
+
};
|
58927
|
+
Mime = class {
|
58928
|
+
static {
|
58929
|
+
__name(this, "Mime");
|
57827
58930
|
}
|
57828
|
-
|
57829
|
-
|
57830
|
-
|
57831
|
-
|
57832
|
-
|
57833
|
-
|
57834
|
-
|
57835
|
-
|
57836
|
-
|
57837
|
-
|
57838
|
-
|
57839
|
-
|
57840
|
-
|
57841
|
-
|
57842
|
-
continue;
|
58931
|
+
constructor(...args) {
|
58932
|
+
_Mime_extensionToType.set(this, /* @__PURE__ */ new Map());
|
58933
|
+
_Mime_typeToExtension.set(this, /* @__PURE__ */ new Map());
|
58934
|
+
_Mime_typeToExtensions.set(this, /* @__PURE__ */ new Map());
|
58935
|
+
for (const arg of args) {
|
58936
|
+
this.define(arg);
|
58937
|
+
}
|
58938
|
+
}
|
58939
|
+
define(typeMap, force = false) {
|
58940
|
+
for (let [type, extensions] of Object.entries(typeMap)) {
|
58941
|
+
type = type.toLowerCase();
|
58942
|
+
extensions = extensions.map((ext) => ext.toLowerCase());
|
58943
|
+
if (!__classPrivateFieldGet(this, _Mime_typeToExtensions, "f").has(type)) {
|
58944
|
+
__classPrivateFieldGet(this, _Mime_typeToExtensions, "f").set(type, /* @__PURE__ */ new Set());
|
57843
58945
|
}
|
57844
|
-
|
57845
|
-
|
57846
|
-
|
57847
|
-
);
|
58946
|
+
const allExtensions = __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").get(type);
|
58947
|
+
let first = true;
|
58948
|
+
for (let extension of extensions) {
|
58949
|
+
const starred = extension.startsWith("*");
|
58950
|
+
extension = starred ? extension.slice(1) : extension;
|
58951
|
+
allExtensions?.add(extension);
|
58952
|
+
if (first) {
|
58953
|
+
__classPrivateFieldGet(this, _Mime_typeToExtension, "f").set(type, extension);
|
58954
|
+
}
|
58955
|
+
first = false;
|
58956
|
+
if (starred)
|
58957
|
+
continue;
|
58958
|
+
const currentType = __classPrivateFieldGet(this, _Mime_extensionToType, "f").get(extension);
|
58959
|
+
if (currentType && currentType != type && !force) {
|
58960
|
+
throw new Error(`"${type} -> ${extension}" conflicts with "${currentType} -> ${extension}". Pass \`force=true\` to override this definition.`);
|
58961
|
+
}
|
58962
|
+
__classPrivateFieldGet(this, _Mime_extensionToType, "f").set(extension, type);
|
57848
58963
|
}
|
57849
|
-
this._types[ext] = type;
|
57850
58964
|
}
|
57851
|
-
|
57852
|
-
|
57853
|
-
|
58965
|
+
return this;
|
58966
|
+
}
|
58967
|
+
getType(path72) {
|
58968
|
+
if (typeof path72 !== "string")
|
58969
|
+
return null;
|
58970
|
+
const last = path72.replace(/^.*[/\\]/s, "").toLowerCase();
|
58971
|
+
const ext = last.replace(/^.*\./s, "").toLowerCase();
|
58972
|
+
const hasPath = last.length < path72.length;
|
58973
|
+
const hasDot = ext.length < last.length - 1;
|
58974
|
+
if (!hasDot && hasPath)
|
58975
|
+
return null;
|
58976
|
+
return __classPrivateFieldGet(this, _Mime_extensionToType, "f").get(ext) ?? null;
|
58977
|
+
}
|
58978
|
+
getExtension(type) {
|
58979
|
+
if (typeof type !== "string")
|
58980
|
+
return null;
|
58981
|
+
type = type?.split?.(";")[0];
|
58982
|
+
return (type && __classPrivateFieldGet(this, _Mime_typeToExtension, "f").get(type.trim().toLowerCase())) ?? null;
|
58983
|
+
}
|
58984
|
+
getAllExtensions(type) {
|
58985
|
+
if (typeof type !== "string")
|
58986
|
+
return null;
|
58987
|
+
return __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").get(type.toLowerCase()) ?? null;
|
58988
|
+
}
|
58989
|
+
_freeze() {
|
58990
|
+
this.define = () => {
|
58991
|
+
throw new Error("define() not allowed for built-in Mime objects. See https://github.com/broofa/mime/blob/main/README.md#custom-mime-instances");
|
58992
|
+
};
|
58993
|
+
Object.freeze(this);
|
58994
|
+
for (const extensions of __classPrivateFieldGet(this, _Mime_typeToExtensions, "f").values()) {
|
58995
|
+
Object.freeze(extensions);
|
57854
58996
|
}
|
58997
|
+
return this;
|
58998
|
+
}
|
58999
|
+
_getTestState() {
|
59000
|
+
return {
|
59001
|
+
types: __classPrivateFieldGet(this, _Mime_extensionToType, "f"),
|
59002
|
+
extensions: __classPrivateFieldGet(this, _Mime_typeToExtension, "f")
|
59003
|
+
};
|
57855
59004
|
}
|
57856
59005
|
};
|
57857
|
-
|
57858
|
-
|
57859
|
-
let last = path72.replace(/^.*[/\\]/, "").toLowerCase();
|
57860
|
-
let ext = last.replace(/^.*\./, "").toLowerCase();
|
57861
|
-
let hasPath = last.length < path72.length;
|
57862
|
-
let hasDot = ext.length < last.length - 1;
|
57863
|
-
return (hasDot || !hasPath) && this._types[ext] || null;
|
57864
|
-
};
|
57865
|
-
Mime.prototype.getExtension = function(type) {
|
57866
|
-
type = /^\s*([^;\s]*)/.test(type) && RegExp.$1;
|
57867
|
-
return type && this._extensions[type.toLowerCase()] || null;
|
57868
|
-
};
|
57869
|
-
module3.exports = Mime;
|
57870
|
-
}
|
57871
|
-
});
|
57872
|
-
|
57873
|
-
// ../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/standard.js
|
57874
|
-
var require_standard = __commonJS({
|
57875
|
-
"../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/standard.js"(exports2, module3) {
|
57876
|
-
init_import_meta_url();
|
57877
|
-
module3.exports = { "application/andrew-inset": ["ez"], "application/applixware": ["aw"], "application/atom+xml": ["atom"], "application/atomcat+xml": ["atomcat"], "application/atomdeleted+xml": ["atomdeleted"], "application/atomsvc+xml": ["atomsvc"], "application/atsc-dwd+xml": ["dwd"], "application/atsc-held+xml": ["held"], "application/atsc-rsat+xml": ["rsat"], "application/bdoc": ["bdoc"], "application/calendar+xml": ["xcs"], "application/ccxml+xml": ["ccxml"], "application/cdfx+xml": ["cdfx"], "application/cdmi-capability": ["cdmia"], "application/cdmi-container": ["cdmic"], "application/cdmi-domain": ["cdmid"], "application/cdmi-object": ["cdmio"], "application/cdmi-queue": ["cdmiq"], "application/cu-seeme": ["cu"], "application/dash+xml": ["mpd"], "application/davmount+xml": ["davmount"], "application/docbook+xml": ["dbk"], "application/dssc+der": ["dssc"], "application/dssc+xml": ["xdssc"], "application/ecmascript": ["es", "ecma"], "application/emma+xml": ["emma"], "application/emotionml+xml": ["emotionml"], "application/epub+zip": ["epub"], "application/exi": ["exi"], "application/express": ["exp"], "application/fdt+xml": ["fdt"], "application/font-tdpfr": ["pfr"], "application/geo+json": ["geojson"], "application/gml+xml": ["gml"], "application/gpx+xml": ["gpx"], "application/gxf": ["gxf"], "application/gzip": ["gz"], "application/hjson": ["hjson"], "application/hyperstudio": ["stk"], "application/inkml+xml": ["ink", "inkml"], "application/ipfix": ["ipfix"], "application/its+xml": ["its"], "application/java-archive": ["jar", "war", "ear"], "application/java-serialized-object": ["ser"], "application/java-vm": ["class"], "application/javascript": ["js", "mjs"], "application/json": ["json", "map"], "application/json5": ["json5"], "application/jsonml+json": ["jsonml"], "application/ld+json": ["jsonld"], "application/lgr+xml": ["lgr"], "application/lost+xml": ["lostxml"], "application/mac-binhex40": ["hqx"], "application/mac-compactpro": ["cpt"], "application/mads+xml": ["mads"], "application/manifest+json": ["webmanifest"], "application/marc": ["mrc"], "application/marcxml+xml": ["mrcx"], "application/mathematica": ["ma", "nb", "mb"], "application/mathml+xml": ["mathml"], "application/mbox": ["mbox"], "application/mediaservercontrol+xml": ["mscml"], "application/metalink+xml": ["metalink"], "application/metalink4+xml": ["meta4"], "application/mets+xml": ["mets"], "application/mmt-aei+xml": ["maei"], "application/mmt-usd+xml": ["musd"], "application/mods+xml": ["mods"], "application/mp21": ["m21", "mp21"], "application/mp4": ["mp4s", "m4p"], "application/msword": ["doc", "dot"], "application/mxf": ["mxf"], "application/n-quads": ["nq"], "application/n-triples": ["nt"], "application/node": ["cjs"], "application/octet-stream": ["bin", "dms", "lrf", "mar", "so", "dist", "distz", "pkg", "bpk", "dump", "elc", "deploy", "exe", "dll", "deb", "dmg", "iso", "img", "msi", "msp", "msm", "buffer"], "application/oda": ["oda"], "application/oebps-package+xml": ["opf"], "application/ogg": ["ogx"], "application/omdoc+xml": ["omdoc"], "application/onenote": ["onetoc", "onetoc2", "onetmp", "onepkg"], "application/oxps": ["oxps"], "application/p2p-overlay+xml": ["relo"], "application/patch-ops-error+xml": ["xer"], "application/pdf": ["pdf"], "application/pgp-encrypted": ["pgp"], "application/pgp-signature": ["asc", "sig"], "application/pics-rules": ["prf"], "application/pkcs10": ["p10"], "application/pkcs7-mime": ["p7m", "p7c"], "application/pkcs7-signature": ["p7s"], "application/pkcs8": ["p8"], "application/pkix-attr-cert": ["ac"], "application/pkix-cert": ["cer"], "application/pkix-crl": ["crl"], "application/pkix-pkipath": ["pkipath"], "application/pkixcmp": ["pki"], "application/pls+xml": ["pls"], "application/postscript": ["ai", "eps", "ps"], "application/provenance+xml": ["provx"], "application/pskc+xml": ["pskcxml"], "application/raml+yaml": ["raml"], "application/rdf+xml": ["rdf", "owl"], "application/reginfo+xml": ["rif"], "application/relax-ng-compact-syntax": ["rnc"], "application/resource-lists+xml": ["rl"], "application/resource-lists-diff+xml": ["rld"], "application/rls-services+xml": ["rs"], "application/route-apd+xml": ["rapd"], "application/route-s-tsid+xml": ["sls"], "application/route-usd+xml": ["rusd"], "application/rpki-ghostbusters": ["gbr"], "application/rpki-manifest": ["mft"], "application/rpki-roa": ["roa"], "application/rsd+xml": ["rsd"], "application/rss+xml": ["rss"], "application/rtf": ["rtf"], "application/sbml+xml": ["sbml"], "application/scvp-cv-request": ["scq"], "application/scvp-cv-response": ["scs"], "application/scvp-vp-request": ["spq"], "application/scvp-vp-response": ["spp"], "application/sdp": ["sdp"], "application/senml+xml": ["senmlx"], "application/sensml+xml": ["sensmlx"], "application/set-payment-initiation": ["setpay"], "application/set-registration-initiation": ["setreg"], "application/shf+xml": ["shf"], "application/sieve": ["siv", "sieve"], "application/smil+xml": ["smi", "smil"], "application/sparql-query": ["rq"], "application/sparql-results+xml": ["srx"], "application/srgs": ["gram"], "application/srgs+xml": ["grxml"], "application/sru+xml": ["sru"], "application/ssdl+xml": ["ssdl"], "application/ssml+xml": ["ssml"], "application/swid+xml": ["swidtag"], "application/tei+xml": ["tei", "teicorpus"], "application/thraud+xml": ["tfi"], "application/timestamped-data": ["tsd"], "application/toml": ["toml"], "application/trig": ["trig"], "application/ttml+xml": ["ttml"], "application/ubjson": ["ubj"], "application/urc-ressheet+xml": ["rsheet"], "application/urc-targetdesc+xml": ["td"], "application/voicexml+xml": ["vxml"], "application/wasm": ["wasm"], "application/widget": ["wgt"], "application/winhlp": ["hlp"], "application/wsdl+xml": ["wsdl"], "application/wspolicy+xml": ["wspolicy"], "application/xaml+xml": ["xaml"], "application/xcap-att+xml": ["xav"], "application/xcap-caps+xml": ["xca"], "application/xcap-diff+xml": ["xdf"], "application/xcap-el+xml": ["xel"], "application/xcap-ns+xml": ["xns"], "application/xenc+xml": ["xenc"], "application/xhtml+xml": ["xhtml", "xht"], "application/xliff+xml": ["xlf"], "application/xml": ["xml", "xsl", "xsd", "rng"], "application/xml-dtd": ["dtd"], "application/xop+xml": ["xop"], "application/xproc+xml": ["xpl"], "application/xslt+xml": ["*xsl", "xslt"], "application/xspf+xml": ["xspf"], "application/xv+xml": ["mxml", "xhvml", "xvml", "xvm"], "application/yang": ["yang"], "application/yin+xml": ["yin"], "application/zip": ["zip"], "audio/3gpp": ["*3gpp"], "audio/adpcm": ["adp"], "audio/amr": ["amr"], "audio/basic": ["au", "snd"], "audio/midi": ["mid", "midi", "kar", "rmi"], "audio/mobile-xmf": ["mxmf"], "audio/mp3": ["*mp3"], "audio/mp4": ["m4a", "mp4a"], "audio/mpeg": ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"], "audio/ogg": ["oga", "ogg", "spx", "opus"], "audio/s3m": ["s3m"], "audio/silk": ["sil"], "audio/wav": ["wav"], "audio/wave": ["*wav"], "audio/webm": ["weba"], "audio/xm": ["xm"], "font/collection": ["ttc"], "font/otf": ["otf"], "font/ttf": ["ttf"], "font/woff": ["woff"], "font/woff2": ["woff2"], "image/aces": ["exr"], "image/apng": ["apng"], "image/avif": ["avif"], "image/bmp": ["bmp"], "image/cgm": ["cgm"], "image/dicom-rle": ["drle"], "image/emf": ["emf"], "image/fits": ["fits"], "image/g3fax": ["g3"], "image/gif": ["gif"], "image/heic": ["heic"], "image/heic-sequence": ["heics"], "image/heif": ["heif"], "image/heif-sequence": ["heifs"], "image/hej2k": ["hej2"], "image/hsj2": ["hsj2"], "image/ief": ["ief"], "image/jls": ["jls"], "image/jp2": ["jp2", "jpg2"], "image/jpeg": ["jpeg", "jpg", "jpe"], "image/jph": ["jph"], "image/jphc": ["jhc"], "image/jpm": ["jpm"], "image/jpx": ["jpx", "jpf"], "image/jxr": ["jxr"], "image/jxra": ["jxra"], "image/jxrs": ["jxrs"], "image/jxs": ["jxs"], "image/jxsc": ["jxsc"], "image/jxsi": ["jxsi"], "image/jxss": ["jxss"], "image/ktx": ["ktx"], "image/ktx2": ["ktx2"], "image/png": ["png"], "image/sgi": ["sgi"], "image/svg+xml": ["svg", "svgz"], "image/t38": ["t38"], "image/tiff": ["tif", "tiff"], "image/tiff-fx": ["tfx"], "image/webp": ["webp"], "image/wmf": ["wmf"], "message/disposition-notification": ["disposition-notification"], "message/global": ["u8msg"], "message/global-delivery-status": ["u8dsn"], "message/global-disposition-notification": ["u8mdn"], "message/global-headers": ["u8hdr"], "message/rfc822": ["eml", "mime"], "model/3mf": ["3mf"], "model/gltf+json": ["gltf"], "model/gltf-binary": ["glb"], "model/iges": ["igs", "iges"], "model/mesh": ["msh", "mesh", "silo"], "model/mtl": ["mtl"], "model/obj": ["obj"], "model/step+xml": ["stpx"], "model/step+zip": ["stpz"], "model/step-xml+zip": ["stpxz"], "model/stl": ["stl"], "model/vrml": ["wrl", "vrml"], "model/x3d+binary": ["*x3db", "x3dbz"], "model/x3d+fastinfoset": ["x3db"], "model/x3d+vrml": ["*x3dv", "x3dvz"], "model/x3d+xml": ["x3d", "x3dz"], "model/x3d-vrml": ["x3dv"], "text/cache-manifest": ["appcache", "manifest"], "text/calendar": ["ics", "ifb"], "text/coffeescript": ["coffee", "litcoffee"], "text/css": ["css"], "text/csv": ["csv"], "text/html": ["html", "htm", "shtml"], "text/jade": ["jade"], "text/jsx": ["jsx"], "text/less": ["less"], "text/markdown": ["markdown", "md"], "text/mathml": ["mml"], "text/mdx": ["mdx"], "text/n3": ["n3"], "text/plain": ["txt", "text", "conf", "def", "list", "log", "in", "ini"], "text/richtext": ["rtx"], "text/rtf": ["*rtf"], "text/sgml": ["sgml", "sgm"], "text/shex": ["shex"], "text/slim": ["slim", "slm"], "text/spdx": ["spdx"], "text/stylus": ["stylus", "styl"], "text/tab-separated-values": ["tsv"], "text/troff": ["t", "tr", "roff", "man", "me", "ms"], "text/turtle": ["ttl"], "text/uri-list": ["uri", "uris", "urls"], "text/vcard": ["vcard"], "text/vtt": ["vtt"], "text/xml": ["*xml"], "text/yaml": ["yaml", "yml"], "video/3gpp": ["3gp", "3gpp"], "video/3gpp2": ["3g2"], "video/h261": ["h261"], "video/h263": ["h263"], "video/h264": ["h264"], "video/iso.segment": ["m4s"], "video/jpeg": ["jpgv"], "video/jpm": ["*jpm", "jpgm"], "video/mj2": ["mj2", "mjp2"], "video/mp2t": ["ts"], "video/mp4": ["mp4", "mp4v", "mpg4"], "video/mpeg": ["mpeg", "mpg", "mpe", "m1v", "m2v"], "video/ogg": ["ogv"], "video/quicktime": ["qt", "mov"], "video/webm": ["webm"] };
|
57878
|
-
}
|
57879
|
-
});
|
57880
|
-
|
57881
|
-
// ../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/other.js
|
57882
|
-
var require_other = __commonJS({
|
57883
|
-
"../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/other.js"(exports2, module3) {
|
57884
|
-
init_import_meta_url();
|
57885
|
-
module3.exports = { "application/prs.cww": ["cww"], "application/vnd.1000minds.decision-model+xml": ["1km"], "application/vnd.3gpp.pic-bw-large": ["plb"], "application/vnd.3gpp.pic-bw-small": ["psb"], "application/vnd.3gpp.pic-bw-var": ["pvb"], "application/vnd.3gpp2.tcap": ["tcap"], "application/vnd.3m.post-it-notes": ["pwn"], "application/vnd.accpac.simply.aso": ["aso"], "application/vnd.accpac.simply.imp": ["imp"], "application/vnd.acucobol": ["acu"], "application/vnd.acucorp": ["atc", "acutc"], "application/vnd.adobe.air-application-installer-package+zip": ["air"], "application/vnd.adobe.formscentral.fcdt": ["fcdt"], "application/vnd.adobe.fxp": ["fxp", "fxpl"], "application/vnd.adobe.xdp+xml": ["xdp"], "application/vnd.adobe.xfdf": ["xfdf"], "application/vnd.ahead.space": ["ahead"], "application/vnd.airzip.filesecure.azf": ["azf"], "application/vnd.airzip.filesecure.azs": ["azs"], "application/vnd.amazon.ebook": ["azw"], "application/vnd.americandynamics.acc": ["acc"], "application/vnd.amiga.ami": ["ami"], "application/vnd.android.package-archive": ["apk"], "application/vnd.anser-web-certificate-issue-initiation": ["cii"], "application/vnd.anser-web-funds-transfer-initiation": ["fti"], "application/vnd.antix.game-component": ["atx"], "application/vnd.apple.installer+xml": ["mpkg"], "application/vnd.apple.keynote": ["key"], "application/vnd.apple.mpegurl": ["m3u8"], "application/vnd.apple.numbers": ["numbers"], "application/vnd.apple.pages": ["pages"], "application/vnd.apple.pkpass": ["pkpass"], "application/vnd.aristanetworks.swi": ["swi"], "application/vnd.astraea-software.iota": ["iota"], "application/vnd.audiograph": ["aep"], "application/vnd.balsamiq.bmml+xml": ["bmml"], "application/vnd.blueice.multipass": ["mpm"], "application/vnd.bmi": ["bmi"], "application/vnd.businessobjects": ["rep"], "application/vnd.chemdraw+xml": ["cdxml"], "application/vnd.chipnuts.karaoke-mmd": ["mmd"], "application/vnd.cinderella": ["cdy"], "application/vnd.citationstyles.style+xml": ["csl"], "application/vnd.claymore": ["cla"], "application/vnd.cloanto.rp9": ["rp9"], "application/vnd.clonk.c4group": ["c4g", "c4d", "c4f", "c4p", "c4u"], "application/vnd.cluetrust.cartomobile-config": ["c11amc"], "application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"], "application/vnd.commonspace": ["csp"], "application/vnd.contact.cmsg": ["cdbcmsg"], "application/vnd.cosmocaller": ["cmc"], "application/vnd.crick.clicker": ["clkx"], "application/vnd.crick.clicker.keyboard": ["clkk"], "application/vnd.crick.clicker.palette": ["clkp"], "application/vnd.crick.clicker.template": ["clkt"], "application/vnd.crick.clicker.wordbank": ["clkw"], "application/vnd.criticaltools.wbs+xml": ["wbs"], "application/vnd.ctc-posml": ["pml"], "application/vnd.cups-ppd": ["ppd"], "application/vnd.curl.car": ["car"], "application/vnd.curl.pcurl": ["pcurl"], "application/vnd.dart": ["dart"], "application/vnd.data-vision.rdz": ["rdz"], "application/vnd.dbf": ["dbf"], "application/vnd.dece.data": ["uvf", "uvvf", "uvd", "uvvd"], "application/vnd.dece.ttml+xml": ["uvt", "uvvt"], "application/vnd.dece.unspecified": ["uvx", "uvvx"], "application/vnd.dece.zip": ["uvz", "uvvz"], "application/vnd.denovo.fcselayout-link": ["fe_launch"], "application/vnd.dna": ["dna"], "application/vnd.dolby.mlp": ["mlp"], "application/vnd.dpgraph": ["dpg"], "application/vnd.dreamfactory": ["dfac"], "application/vnd.ds-keypoint": ["kpxx"], "application/vnd.dvb.ait": ["ait"], "application/vnd.dvb.service": ["svc"], "application/vnd.dynageo": ["geo"], "application/vnd.ecowin.chart": ["mag"], "application/vnd.enliven": ["nml"], "application/vnd.epson.esf": ["esf"], "application/vnd.epson.msf": ["msf"], "application/vnd.epson.quickanime": ["qam"], "application/vnd.epson.salt": ["slt"], "application/vnd.epson.ssf": ["ssf"], "application/vnd.eszigno3+xml": ["es3", "et3"], "application/vnd.ezpix-album": ["ez2"], "application/vnd.ezpix-package": ["ez3"], "application/vnd.fdf": ["fdf"], "application/vnd.fdsn.mseed": ["mseed"], "application/vnd.fdsn.seed": ["seed", "dataless"], "application/vnd.flographit": ["gph"], "application/vnd.fluxtime.clip": ["ftc"], "application/vnd.framemaker": ["fm", "frame", "maker", "book"], "application/vnd.frogans.fnc": ["fnc"], "application/vnd.frogans.ltf": ["ltf"], "application/vnd.fsc.weblaunch": ["fsc"], "application/vnd.fujitsu.oasys": ["oas"], "application/vnd.fujitsu.oasys2": ["oa2"], "application/vnd.fujitsu.oasys3": ["oa3"], "application/vnd.fujitsu.oasysgp": ["fg5"], "application/vnd.fujitsu.oasysprs": ["bh2"], "application/vnd.fujixerox.ddd": ["ddd"], "application/vnd.fujixerox.docuworks": ["xdw"], "application/vnd.fujixerox.docuworks.binder": ["xbd"], "application/vnd.fuzzysheet": ["fzs"], "application/vnd.genomatix.tuxedo": ["txd"], "application/vnd.geogebra.file": ["ggb"], "application/vnd.geogebra.tool": ["ggt"], "application/vnd.geometry-explorer": ["gex", "gre"], "application/vnd.geonext": ["gxt"], "application/vnd.geoplan": ["g2w"], "application/vnd.geospace": ["g3w"], "application/vnd.gmx": ["gmx"], "application/vnd.google-apps.document": ["gdoc"], "application/vnd.google-apps.presentation": ["gslides"], "application/vnd.google-apps.spreadsheet": ["gsheet"], "application/vnd.google-earth.kml+xml": ["kml"], "application/vnd.google-earth.kmz": ["kmz"], "application/vnd.grafeq": ["gqf", "gqs"], "application/vnd.groove-account": ["gac"], "application/vnd.groove-help": ["ghf"], "application/vnd.groove-identity-message": ["gim"], "application/vnd.groove-injector": ["grv"], "application/vnd.groove-tool-message": ["gtm"], "application/vnd.groove-tool-template": ["tpl"], "application/vnd.groove-vcard": ["vcg"], "application/vnd.hal+xml": ["hal"], "application/vnd.handheld-entertainment+xml": ["zmm"], "application/vnd.hbci": ["hbci"], "application/vnd.hhe.lesson-player": ["les"], "application/vnd.hp-hpgl": ["hpgl"], "application/vnd.hp-hpid": ["hpid"], "application/vnd.hp-hps": ["hps"], "application/vnd.hp-jlyt": ["jlt"], "application/vnd.hp-pcl": ["pcl"], "application/vnd.hp-pclxl": ["pclxl"], "application/vnd.hydrostatix.sof-data": ["sfd-hdstx"], "application/vnd.ibm.minipay": ["mpy"], "application/vnd.ibm.modcap": ["afp", "listafp", "list3820"], "application/vnd.ibm.rights-management": ["irm"], "application/vnd.ibm.secure-container": ["sc"], "application/vnd.iccprofile": ["icc", "icm"], "application/vnd.igloader": ["igl"], "application/vnd.immervision-ivp": ["ivp"], "application/vnd.immervision-ivu": ["ivu"], "application/vnd.insors.igm": ["igm"], "application/vnd.intercon.formnet": ["xpw", "xpx"], "application/vnd.intergeo": ["i2g"], "application/vnd.intu.qbo": ["qbo"], "application/vnd.intu.qfx": ["qfx"], "application/vnd.ipunplugged.rcprofile": ["rcprofile"], "application/vnd.irepository.package+xml": ["irp"], "application/vnd.is-xpr": ["xpr"], "application/vnd.isac.fcs": ["fcs"], "application/vnd.jam": ["jam"], "application/vnd.jcp.javame.midlet-rms": ["rms"], "application/vnd.jisp": ["jisp"], "application/vnd.joost.joda-archive": ["joda"], "application/vnd.kahootz": ["ktz", "ktr"], "application/vnd.kde.karbon": ["karbon"], "application/vnd.kde.kchart": ["chrt"], "application/vnd.kde.kformula": ["kfo"], "application/vnd.kde.kivio": ["flw"], "application/vnd.kde.kontour": ["kon"], "application/vnd.kde.kpresenter": ["kpr", "kpt"], "application/vnd.kde.kspread": ["ksp"], "application/vnd.kde.kword": ["kwd", "kwt"], "application/vnd.kenameaapp": ["htke"], "application/vnd.kidspiration": ["kia"], "application/vnd.kinar": ["kne", "knp"], "application/vnd.koan": ["skp", "skd", "skt", "skm"], "application/vnd.kodak-descriptor": ["sse"], "application/vnd.las.las+xml": ["lasxml"], "application/vnd.llamagraphics.life-balance.desktop": ["lbd"], "application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"], "application/vnd.lotus-1-2-3": ["123"], "application/vnd.lotus-approach": ["apr"], "application/vnd.lotus-freelance": ["pre"], "application/vnd.lotus-notes": ["nsf"], "application/vnd.lotus-organizer": ["org"], "application/vnd.lotus-screencam": ["scm"], "application/vnd.lotus-wordpro": ["lwp"], "application/vnd.macports.portpkg": ["portpkg"], "application/vnd.mapbox-vector-tile": ["mvt"], "application/vnd.mcd": ["mcd"], "application/vnd.medcalcdata": ["mc1"], "application/vnd.mediastation.cdkey": ["cdkey"], "application/vnd.mfer": ["mwf"], "application/vnd.mfmp": ["mfm"], "application/vnd.micrografx.flo": ["flo"], "application/vnd.micrografx.igx": ["igx"], "application/vnd.mif": ["mif"], "application/vnd.mobius.daf": ["daf"], "application/vnd.mobius.dis": ["dis"], "application/vnd.mobius.mbk": ["mbk"], "application/vnd.mobius.mqy": ["mqy"], "application/vnd.mobius.msl": ["msl"], "application/vnd.mobius.plc": ["plc"], "application/vnd.mobius.txf": ["txf"], "application/vnd.mophun.application": ["mpn"], "application/vnd.mophun.certificate": ["mpc"], "application/vnd.mozilla.xul+xml": ["xul"], "application/vnd.ms-artgalry": ["cil"], "application/vnd.ms-cab-compressed": ["cab"], "application/vnd.ms-excel": ["xls", "xlm", "xla", "xlc", "xlt", "xlw"], "application/vnd.ms-excel.addin.macroenabled.12": ["xlam"], "application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"], "application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"], "application/vnd.ms-excel.template.macroenabled.12": ["xltm"], "application/vnd.ms-fontobject": ["eot"], "application/vnd.ms-htmlhelp": ["chm"], "application/vnd.ms-ims": ["ims"], "application/vnd.ms-lrm": ["lrm"], "application/vnd.ms-officetheme": ["thmx"], "application/vnd.ms-outlook": ["msg"], "application/vnd.ms-pki.seccat": ["cat"], "application/vnd.ms-pki.stl": ["*stl"], "application/vnd.ms-powerpoint": ["ppt", "pps", "pot"], "application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"], "application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"], "application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"], "application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"], "application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"], "application/vnd.ms-project": ["mpp", "mpt"], "application/vnd.ms-word.document.macroenabled.12": ["docm"], "application/vnd.ms-word.template.macroenabled.12": ["dotm"], "application/vnd.ms-works": ["wps", "wks", "wcm", "wdb"], "application/vnd.ms-wpl": ["wpl"], "application/vnd.ms-xpsdocument": ["xps"], "application/vnd.mseq": ["mseq"], "application/vnd.musician": ["mus"], "application/vnd.muvee.style": ["msty"], "application/vnd.mynfc": ["taglet"], "application/vnd.neurolanguage.nlu": ["nlu"], "application/vnd.nitf": ["ntf", "nitf"], "application/vnd.noblenet-directory": ["nnd"], "application/vnd.noblenet-sealer": ["nns"], "application/vnd.noblenet-web": ["nnw"], "application/vnd.nokia.n-gage.ac+xml": ["*ac"], "application/vnd.nokia.n-gage.data": ["ngdat"], "application/vnd.nokia.n-gage.symbian.install": ["n-gage"], "application/vnd.nokia.radio-preset": ["rpst"], "application/vnd.nokia.radio-presets": ["rpss"], "application/vnd.novadigm.edm": ["edm"], "application/vnd.novadigm.edx": ["edx"], "application/vnd.novadigm.ext": ["ext"], "application/vnd.oasis.opendocument.chart": ["odc"], "application/vnd.oasis.opendocument.chart-template": ["otc"], "application/vnd.oasis.opendocument.database": ["odb"], "application/vnd.oasis.opendocument.formula": ["odf"], "application/vnd.oasis.opendocument.formula-template": ["odft"], "application/vnd.oasis.opendocument.graphics": ["odg"], "application/vnd.oasis.opendocument.graphics-template": ["otg"], "application/vnd.oasis.opendocument.image": ["odi"], "application/vnd.oasis.opendocument.image-template": ["oti"], "application/vnd.oasis.opendocument.presentation": ["odp"], "application/vnd.oasis.opendocument.presentation-template": ["otp"], "application/vnd.oasis.opendocument.spreadsheet": ["ods"], "application/vnd.oasis.opendocument.spreadsheet-template": ["ots"], "application/vnd.oasis.opendocument.text": ["odt"], "application/vnd.oasis.opendocument.text-master": ["odm"], "application/vnd.oasis.opendocument.text-template": ["ott"], "application/vnd.oasis.opendocument.text-web": ["oth"], "application/vnd.olpc-sugar": ["xo"], "application/vnd.oma.dd2+xml": ["dd2"], "application/vnd.openblox.game+xml": ["obgx"], "application/vnd.openofficeorg.extension": ["oxt"], "application/vnd.openstreetmap.data+xml": ["osm"], "application/vnd.openxmlformats-officedocument.presentationml.presentation": ["pptx"], "application/vnd.openxmlformats-officedocument.presentationml.slide": ["sldx"], "application/vnd.openxmlformats-officedocument.presentationml.slideshow": ["ppsx"], "application/vnd.openxmlformats-officedocument.presentationml.template": ["potx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.template": ["xltx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.document": ["docx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.template": ["dotx"], "application/vnd.osgeo.mapguide.package": ["mgp"], "application/vnd.osgi.dp": ["dp"], "application/vnd.osgi.subsystem": ["esa"], "application/vnd.palm": ["pdb", "pqa", "oprc"], "application/vnd.pawaafile": ["paw"], "application/vnd.pg.format": ["str"], "application/vnd.pg.osasli": ["ei6"], "application/vnd.picsel": ["efif"], "application/vnd.pmi.widget": ["wg"], "application/vnd.pocketlearn": ["plf"], "application/vnd.powerbuilder6": ["pbd"], "application/vnd.previewsystems.box": ["box"], "application/vnd.proteus.magazine": ["mgz"], "application/vnd.publishare-delta-tree": ["qps"], "application/vnd.pvi.ptid1": ["ptid"], "application/vnd.quark.quarkxpress": ["qxd", "qxt", "qwd", "qwt", "qxl", "qxb"], "application/vnd.rar": ["rar"], "application/vnd.realvnc.bed": ["bed"], "application/vnd.recordare.musicxml": ["mxl"], "application/vnd.recordare.musicxml+xml": ["musicxml"], "application/vnd.rig.cryptonote": ["cryptonote"], "application/vnd.rim.cod": ["cod"], "application/vnd.rn-realmedia": ["rm"], "application/vnd.rn-realmedia-vbr": ["rmvb"], "application/vnd.route66.link66+xml": ["link66"], "application/vnd.sailingtracker.track": ["st"], "application/vnd.seemail": ["see"], "application/vnd.sema": ["sema"], "application/vnd.semd": ["semd"], "application/vnd.semf": ["semf"], "application/vnd.shana.informed.formdata": ["ifm"], "application/vnd.shana.informed.formtemplate": ["itp"], "application/vnd.shana.informed.interchange": ["iif"], "application/vnd.shana.informed.package": ["ipk"], "application/vnd.simtech-mindmapper": ["twd", "twds"], "application/vnd.smaf": ["mmf"], "application/vnd.smart.teacher": ["teacher"], "application/vnd.software602.filler.form+xml": ["fo"], "application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"], "application/vnd.spotfire.dxp": ["dxp"], "application/vnd.spotfire.sfs": ["sfs"], "application/vnd.stardivision.calc": ["sdc"], "application/vnd.stardivision.draw": ["sda"], "application/vnd.stardivision.impress": ["sdd"], "application/vnd.stardivision.math": ["smf"], "application/vnd.stardivision.writer": ["sdw", "vor"], "application/vnd.stardivision.writer-global": ["sgl"], "application/vnd.stepmania.package": ["smzip"], "application/vnd.stepmania.stepchart": ["sm"], "application/vnd.sun.wadl+xml": ["wadl"], "application/vnd.sun.xml.calc": ["sxc"], "application/vnd.sun.xml.calc.template": ["stc"], "application/vnd.sun.xml.draw": ["sxd"], "application/vnd.sun.xml.draw.template": ["std"], "application/vnd.sun.xml.impress": ["sxi"], "application/vnd.sun.xml.impress.template": ["sti"], "application/vnd.sun.xml.math": ["sxm"], "application/vnd.sun.xml.writer": ["sxw"], "application/vnd.sun.xml.writer.global": ["sxg"], "application/vnd.sun.xml.writer.template": ["stw"], "application/vnd.sus-calendar": ["sus", "susp"], "application/vnd.svd": ["svd"], "application/vnd.symbian.install": ["sis", "sisx"], "application/vnd.syncml+xml": ["xsm"], "application/vnd.syncml.dm+wbxml": ["bdm"], "application/vnd.syncml.dm+xml": ["xdm"], "application/vnd.syncml.dmddf+xml": ["ddf"], "application/vnd.tao.intent-module-archive": ["tao"], "application/vnd.tcpdump.pcap": ["pcap", "cap", "dmp"], "application/vnd.tmobile-livetv": ["tmo"], "application/vnd.trid.tpt": ["tpt"], "application/vnd.triscape.mxs": ["mxs"], "application/vnd.trueapp": ["tra"], "application/vnd.ufdl": ["ufd", "ufdl"], "application/vnd.uiq.theme": ["utz"], "application/vnd.umajin": ["umj"], "application/vnd.unity": ["unityweb"], "application/vnd.uoml+xml": ["uoml"], "application/vnd.vcx": ["vcx"], "application/vnd.visio": ["vsd", "vst", "vss", "vsw"], "application/vnd.visionary": ["vis"], "application/vnd.vsf": ["vsf"], "application/vnd.wap.wbxml": ["wbxml"], "application/vnd.wap.wmlc": ["wmlc"], "application/vnd.wap.wmlscriptc": ["wmlsc"], "application/vnd.webturbo": ["wtb"], "application/vnd.wolfram.player": ["nbp"], "application/vnd.wordperfect": ["wpd"], "application/vnd.wqd": ["wqd"], "application/vnd.wt.stf": ["stf"], "application/vnd.xara": ["xar"], "application/vnd.xfdl": ["xfdl"], "application/vnd.yamaha.hv-dic": ["hvd"], "application/vnd.yamaha.hv-script": ["hvs"], "application/vnd.yamaha.hv-voice": ["hvp"], "application/vnd.yamaha.openscoreformat": ["osf"], "application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"], "application/vnd.yamaha.smaf-audio": ["saf"], "application/vnd.yamaha.smaf-phrase": ["spf"], "application/vnd.yellowriver-custom-menu": ["cmp"], "application/vnd.zul": ["zir", "zirz"], "application/vnd.zzazz.deck+xml": ["zaz"], "application/x-7z-compressed": ["7z"], "application/x-abiword": ["abw"], "application/x-ace-compressed": ["ace"], "application/x-apple-diskimage": ["*dmg"], "application/x-arj": ["arj"], "application/x-authorware-bin": ["aab", "x32", "u32", "vox"], "application/x-authorware-map": ["aam"], "application/x-authorware-seg": ["aas"], "application/x-bcpio": ["bcpio"], "application/x-bdoc": ["*bdoc"], "application/x-bittorrent": ["torrent"], "application/x-blorb": ["blb", "blorb"], "application/x-bzip": ["bz"], "application/x-bzip2": ["bz2", "boz"], "application/x-cbr": ["cbr", "cba", "cbt", "cbz", "cb7"], "application/x-cdlink": ["vcd"], "application/x-cfs-compressed": ["cfs"], "application/x-chat": ["chat"], "application/x-chess-pgn": ["pgn"], "application/x-chrome-extension": ["crx"], "application/x-cocoa": ["cco"], "application/x-conference": ["nsc"], "application/x-cpio": ["cpio"], "application/x-csh": ["csh"], "application/x-debian-package": ["*deb", "udeb"], "application/x-dgc-compressed": ["dgc"], "application/x-director": ["dir", "dcr", "dxr", "cst", "cct", "cxt", "w3d", "fgd", "swa"], "application/x-doom": ["wad"], "application/x-dtbncx+xml": ["ncx"], "application/x-dtbook+xml": ["dtb"], "application/x-dtbresource+xml": ["res"], "application/x-dvi": ["dvi"], "application/x-envoy": ["evy"], "application/x-eva": ["eva"], "application/x-font-bdf": ["bdf"], "application/x-font-ghostscript": ["gsf"], "application/x-font-linux-psf": ["psf"], "application/x-font-pcf": ["pcf"], "application/x-font-snf": ["snf"], "application/x-font-type1": ["pfa", "pfb", "pfm", "afm"], "application/x-freearc": ["arc"], "application/x-futuresplash": ["spl"], "application/x-gca-compressed": ["gca"], "application/x-glulx": ["ulx"], "application/x-gnumeric": ["gnumeric"], "application/x-gramps-xml": ["gramps"], "application/x-gtar": ["gtar"], "application/x-hdf": ["hdf"], "application/x-httpd-php": ["php"], "application/x-install-instructions": ["install"], "application/x-iso9660-image": ["*iso"], "application/x-iwork-keynote-sffkey": ["*key"], "application/x-iwork-numbers-sffnumbers": ["*numbers"], "application/x-iwork-pages-sffpages": ["*pages"], "application/x-java-archive-diff": ["jardiff"], "application/x-java-jnlp-file": ["jnlp"], "application/x-keepass2": ["kdbx"], "application/x-latex": ["latex"], "application/x-lua-bytecode": ["luac"], "application/x-lzh-compressed": ["lzh", "lha"], "application/x-makeself": ["run"], "application/x-mie": ["mie"], "application/x-mobipocket-ebook": ["prc", "mobi"], "application/x-ms-application": ["application"], "application/x-ms-shortcut": ["lnk"], "application/x-ms-wmd": ["wmd"], "application/x-ms-wmz": ["wmz"], "application/x-ms-xbap": ["xbap"], "application/x-msaccess": ["mdb"], "application/x-msbinder": ["obd"], "application/x-mscardfile": ["crd"], "application/x-msclip": ["clp"], "application/x-msdos-program": ["*exe"], "application/x-msdownload": ["*exe", "*dll", "com", "bat", "*msi"], "application/x-msmediaview": ["mvb", "m13", "m14"], "application/x-msmetafile": ["*wmf", "*wmz", "*emf", "emz"], "application/x-msmoney": ["mny"], "application/x-mspublisher": ["pub"], "application/x-msschedule": ["scd"], "application/x-msterminal": ["trm"], "application/x-mswrite": ["wri"], "application/x-netcdf": ["nc", "cdf"], "application/x-ns-proxy-autoconfig": ["pac"], "application/x-nzb": ["nzb"], "application/x-perl": ["pl", "pm"], "application/x-pilot": ["*prc", "*pdb"], "application/x-pkcs12": ["p12", "pfx"], "application/x-pkcs7-certificates": ["p7b", "spc"], "application/x-pkcs7-certreqresp": ["p7r"], "application/x-rar-compressed": ["*rar"], "application/x-redhat-package-manager": ["rpm"], "application/x-research-info-systems": ["ris"], "application/x-sea": ["sea"], "application/x-sh": ["sh"], "application/x-shar": ["shar"], "application/x-shockwave-flash": ["swf"], "application/x-silverlight-app": ["xap"], "application/x-sql": ["sql"], "application/x-stuffit": ["sit"], "application/x-stuffitx": ["sitx"], "application/x-subrip": ["srt"], "application/x-sv4cpio": ["sv4cpio"], "application/x-sv4crc": ["sv4crc"], "application/x-t3vm-image": ["t3"], "application/x-tads": ["gam"], "application/x-tar": ["tar"], "application/x-tcl": ["tcl", "tk"], "application/x-tex": ["tex"], "application/x-tex-tfm": ["tfm"], "application/x-texinfo": ["texinfo", "texi"], "application/x-tgif": ["*obj"], "application/x-ustar": ["ustar"], "application/x-virtualbox-hdd": ["hdd"], "application/x-virtualbox-ova": ["ova"], "application/x-virtualbox-ovf": ["ovf"], "application/x-virtualbox-vbox": ["vbox"], "application/x-virtualbox-vbox-extpack": ["vbox-extpack"], "application/x-virtualbox-vdi": ["vdi"], "application/x-virtualbox-vhd": ["vhd"], "application/x-virtualbox-vmdk": ["vmdk"], "application/x-wais-source": ["src"], "application/x-web-app-manifest+json": ["webapp"], "application/x-x509-ca-cert": ["der", "crt", "pem"], "application/x-xfig": ["fig"], "application/x-xliff+xml": ["*xlf"], "application/x-xpinstall": ["xpi"], "application/x-xz": ["xz"], "application/x-zmachine": ["z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8"], "audio/vnd.dece.audio": ["uva", "uvva"], "audio/vnd.digital-winds": ["eol"], "audio/vnd.dra": ["dra"], "audio/vnd.dts": ["dts"], "audio/vnd.dts.hd": ["dtshd"], "audio/vnd.lucent.voice": ["lvp"], "audio/vnd.ms-playready.media.pya": ["pya"], "audio/vnd.nuera.ecelp4800": ["ecelp4800"], "audio/vnd.nuera.ecelp7470": ["ecelp7470"], "audio/vnd.nuera.ecelp9600": ["ecelp9600"], "audio/vnd.rip": ["rip"], "audio/x-aac": ["aac"], "audio/x-aiff": ["aif", "aiff", "aifc"], "audio/x-caf": ["caf"], "audio/x-flac": ["flac"], "audio/x-m4a": ["*m4a"], "audio/x-matroska": ["mka"], "audio/x-mpegurl": ["m3u"], "audio/x-ms-wax": ["wax"], "audio/x-ms-wma": ["wma"], "audio/x-pn-realaudio": ["ram", "ra"], "audio/x-pn-realaudio-plugin": ["rmp"], "audio/x-realaudio": ["*ra"], "audio/x-wav": ["*wav"], "chemical/x-cdx": ["cdx"], "chemical/x-cif": ["cif"], "chemical/x-cmdf": ["cmdf"], "chemical/x-cml": ["cml"], "chemical/x-csml": ["csml"], "chemical/x-xyz": ["xyz"], "image/prs.btif": ["btif"], "image/prs.pti": ["pti"], "image/vnd.adobe.photoshop": ["psd"], "image/vnd.airzip.accelerator.azv": ["azv"], "image/vnd.dece.graphic": ["uvi", "uvvi", "uvg", "uvvg"], "image/vnd.djvu": ["djvu", "djv"], "image/vnd.dvb.subtitle": ["*sub"], "image/vnd.dwg": ["dwg"], "image/vnd.dxf": ["dxf"], "image/vnd.fastbidsheet": ["fbs"], "image/vnd.fpx": ["fpx"], "image/vnd.fst": ["fst"], "image/vnd.fujixerox.edmics-mmr": ["mmr"], "image/vnd.fujixerox.edmics-rlc": ["rlc"], "image/vnd.microsoft.icon": ["ico"], "image/vnd.ms-dds": ["dds"], "image/vnd.ms-modi": ["mdi"], "image/vnd.ms-photo": ["wdp"], "image/vnd.net-fpx": ["npx"], "image/vnd.pco.b16": ["b16"], "image/vnd.tencent.tap": ["tap"], "image/vnd.valve.source.texture": ["vtf"], "image/vnd.wap.wbmp": ["wbmp"], "image/vnd.xiff": ["xif"], "image/vnd.zbrush.pcx": ["pcx"], "image/x-3ds": ["3ds"], "image/x-cmu-raster": ["ras"], "image/x-cmx": ["cmx"], "image/x-freehand": ["fh", "fhc", "fh4", "fh5", "fh7"], "image/x-icon": ["*ico"], "image/x-jng": ["jng"], "image/x-mrsid-image": ["sid"], "image/x-ms-bmp": ["*bmp"], "image/x-pcx": ["*pcx"], "image/x-pict": ["pic", "pct"], "image/x-portable-anymap": ["pnm"], "image/x-portable-bitmap": ["pbm"], "image/x-portable-graymap": ["pgm"], "image/x-portable-pixmap": ["ppm"], "image/x-rgb": ["rgb"], "image/x-tga": ["tga"], "image/x-xbitmap": ["xbm"], "image/x-xpixmap": ["xpm"], "image/x-xwindowdump": ["xwd"], "message/vnd.wfa.wsc": ["wsc"], "model/vnd.collada+xml": ["dae"], "model/vnd.dwf": ["dwf"], "model/vnd.gdl": ["gdl"], "model/vnd.gtw": ["gtw"], "model/vnd.mts": ["mts"], "model/vnd.opengex": ["ogex"], "model/vnd.parasolid.transmit.binary": ["x_b"], "model/vnd.parasolid.transmit.text": ["x_t"], "model/vnd.sap.vds": ["vds"], "model/vnd.usdz+zip": ["usdz"], "model/vnd.valve.source.compiled-map": ["bsp"], "model/vnd.vtu": ["vtu"], "text/prs.lines.tag": ["dsc"], "text/vnd.curl": ["curl"], "text/vnd.curl.dcurl": ["dcurl"], "text/vnd.curl.mcurl": ["mcurl"], "text/vnd.curl.scurl": ["scurl"], "text/vnd.dvb.subtitle": ["sub"], "text/vnd.fly": ["fly"], "text/vnd.fmi.flexstor": ["flx"], "text/vnd.graphviz": ["gv"], "text/vnd.in3d.3dml": ["3dml"], "text/vnd.in3d.spot": ["spot"], "text/vnd.sun.j2me.app-descriptor": ["jad"], "text/vnd.wap.wml": ["wml"], "text/vnd.wap.wmlscript": ["wmls"], "text/x-asm": ["s", "asm"], "text/x-c": ["c", "cc", "cxx", "cpp", "h", "hh", "dic"], "text/x-component": ["htc"], "text/x-fortran": ["f", "for", "f77", "f90"], "text/x-handlebars-template": ["hbs"], "text/x-java-source": ["java"], "text/x-lua": ["lua"], "text/x-markdown": ["mkd"], "text/x-nfo": ["nfo"], "text/x-opml": ["opml"], "text/x-org": ["*org"], "text/x-pascal": ["p", "pas"], "text/x-processing": ["pde"], "text/x-sass": ["sass"], "text/x-scss": ["scss"], "text/x-setext": ["etx"], "text/x-sfv": ["sfv"], "text/x-suse-ymp": ["ymp"], "text/x-uuencode": ["uu"], "text/x-vcalendar": ["vcs"], "text/x-vcard": ["vcf"], "video/vnd.dece.hd": ["uvh", "uvvh"], "video/vnd.dece.mobile": ["uvm", "uvvm"], "video/vnd.dece.pd": ["uvp", "uvvp"], "video/vnd.dece.sd": ["uvs", "uvvs"], "video/vnd.dece.video": ["uvv", "uvvv"], "video/vnd.dvb.file": ["dvb"], "video/vnd.fvt": ["fvt"], "video/vnd.mpegurl": ["mxu", "m4u"], "video/vnd.ms-playready.media.pyv": ["pyv"], "video/vnd.uvvu.mp4": ["uvu", "uvvu"], "video/vnd.vivo": ["viv"], "video/x-f4v": ["f4v"], "video/x-fli": ["fli"], "video/x-flv": ["flv"], "video/x-m4v": ["m4v"], "video/x-matroska": ["mkv", "mk3d", "mks"], "video/x-mng": ["mng"], "video/x-ms-asf": ["asf", "asx"], "video/x-ms-vob": ["vob"], "video/x-ms-wm": ["wm"], "video/x-ms-wmv": ["wmv"], "video/x-ms-wmx": ["wmx"], "video/x-ms-wvx": ["wvx"], "video/x-msvideo": ["avi"], "video/x-sgi-movie": ["movie"], "video/x-smv": ["smv"], "x-conference/x-cooltalk": ["ice"] };
|
59006
|
+
_Mime_extensionToType = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtension = /* @__PURE__ */ new WeakMap(), _Mime_typeToExtensions = /* @__PURE__ */ new WeakMap();
|
59007
|
+
Mime_default = Mime;
|
57886
59008
|
}
|
57887
59009
|
});
|
57888
59010
|
|
57889
|
-
// ../../node_modules/.pnpm/mime@
|
57890
|
-
var
|
57891
|
-
|
57892
|
-
|
59011
|
+
// ../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/src/index.js
|
59012
|
+
var src_default;
|
59013
|
+
var init_src = __esm({
|
59014
|
+
"../../node_modules/.pnpm/mime@4.0.7/node_modules/mime/dist/src/index.js"() {
|
57893
59015
|
init_import_meta_url();
|
57894
|
-
|
57895
|
-
|
59016
|
+
init_other();
|
59017
|
+
init_standard();
|
59018
|
+
init_Mime();
|
59019
|
+
init_Mime();
|
59020
|
+
src_default = new Mime_default(standard_default, other_default)._freeze();
|
57896
59021
|
}
|
57897
59022
|
});
|
57898
59023
|
|
@@ -57937,14 +59062,14 @@ async function createAssetsIgnoreFunction(dir) {
|
|
57937
59062
|
assetsIgnoreFilePresent
|
57938
59063
|
};
|
57939
59064
|
}
|
57940
|
-
var import_node_fs10, import_node_path15, import_ignore,
|
59065
|
+
var import_node_fs10, import_node_path15, import_ignore, normalizeFilePath, getContentType;
|
57941
59066
|
var init_helpers2 = __esm({
|
57942
59067
|
"../workers-shared/utils/helpers.ts"() {
|
57943
59068
|
init_import_meta_url();
|
57944
59069
|
import_node_fs10 = require("fs");
|
57945
59070
|
import_node_path15 = require("path");
|
57946
59071
|
import_ignore = __toESM(require_ignore());
|
57947
|
-
|
59072
|
+
init_src();
|
57948
59073
|
init_constants2();
|
57949
59074
|
normalizeFilePath = /* @__PURE__ */ __name((relativeFilepath) => {
|
57950
59075
|
if ((0, import_node_path15.isAbsolute)(relativeFilepath)) {
|
@@ -57953,7 +59078,7 @@ var init_helpers2 = __esm({
|
|
57953
59078
|
return "/" + relativeFilepath.split(import_node_path15.sep).join("/");
|
57954
59079
|
}, "normalizeFilePath");
|
57955
59080
|
getContentType = /* @__PURE__ */ __name((absFilePath) => {
|
57956
|
-
let contentType =
|
59081
|
+
let contentType = src_default.getType(absFilePath);
|
57957
59082
|
if (contentType && contentType.startsWith("text/") && !contentType.includes("charset")) {
|
57958
59083
|
contentType = `${contentType}; charset=utf-8`;
|
57959
59084
|
}
|
@@ -65451,12 +66576,12 @@ var init_lower_bound = __esm({
|
|
65451
66576
|
});
|
65452
66577
|
|
65453
66578
|
// ../../node_modules/.pnpm/p-queue@7.2.0/node_modules/p-queue/dist/priority-queue.js
|
65454
|
-
var
|
66579
|
+
var __classPrivateFieldGet2, _PriorityQueue_queue, PriorityQueue;
|
65455
66580
|
var init_priority_queue = __esm({
|
65456
66581
|
"../../node_modules/.pnpm/p-queue@7.2.0/node_modules/p-queue/dist/priority-queue.js"() {
|
65457
66582
|
init_import_meta_url();
|
65458
66583
|
init_lower_bound();
|
65459
|
-
|
66584
|
+
__classPrivateFieldGet2 = function(receiver, state2, kind, f6) {
|
65460
66585
|
if (kind === "a" && !f6) throw new TypeError("Private accessor was defined without a getter");
|
65461
66586
|
if (typeof state2 === "function" ? receiver !== state2 || !f6 : !state2.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
65462
66587
|
return kind === "m" ? f6 : kind === "a" ? f6.call(receiver) : f6 ? f6.value : state2.get(receiver);
|
@@ -65477,22 +66602,22 @@ var init_priority_queue = __esm({
|
|
65477
66602
|
priority: options.priority,
|
65478
66603
|
run: run2
|
65479
66604
|
};
|
65480
|
-
if (this.size &&
|
65481
|
-
|
66605
|
+
if (this.size && __classPrivateFieldGet2(this, _PriorityQueue_queue, "f")[this.size - 1].priority >= options.priority) {
|
66606
|
+
__classPrivateFieldGet2(this, _PriorityQueue_queue, "f").push(element);
|
65482
66607
|
return;
|
65483
66608
|
}
|
65484
|
-
const index = lowerBound(
|
65485
|
-
|
66609
|
+
const index = lowerBound(__classPrivateFieldGet2(this, _PriorityQueue_queue, "f"), element, (a5, b6) => b6.priority - a5.priority);
|
66610
|
+
__classPrivateFieldGet2(this, _PriorityQueue_queue, "f").splice(index, 0, element);
|
65486
66611
|
}
|
65487
66612
|
dequeue() {
|
65488
|
-
const item =
|
66613
|
+
const item = __classPrivateFieldGet2(this, _PriorityQueue_queue, "f").shift();
|
65489
66614
|
return item === null || item === void 0 ? void 0 : item.run;
|
65490
66615
|
}
|
65491
66616
|
filter(options) {
|
65492
|
-
return
|
66617
|
+
return __classPrivateFieldGet2(this, _PriorityQueue_queue, "f").filter((element) => element.priority === options.priority).map((element) => element.run);
|
65493
66618
|
}
|
65494
66619
|
get size() {
|
65495
|
-
return
|
66620
|
+
return __classPrivateFieldGet2(this, _PriorityQueue_queue, "f").length;
|
65496
66621
|
}
|
65497
66622
|
};
|
65498
66623
|
_PriorityQueue_queue = /* @__PURE__ */ new WeakMap();
|
@@ -65500,7 +66625,7 @@ var init_priority_queue = __esm({
|
|
65500
66625
|
});
|
65501
66626
|
|
65502
66627
|
// ../../node_modules/.pnpm/p-queue@7.2.0/node_modules/p-queue/dist/index.js
|
65503
|
-
var import_eventemitter3, __classPrivateFieldSet,
|
66628
|
+
var import_eventemitter3, __classPrivateFieldSet, __classPrivateFieldGet3, _PQueue_instances, _PQueue_carryoverConcurrencyCount, _PQueue_isIntervalIgnored, _PQueue_intervalCount, _PQueue_intervalCap, _PQueue_interval, _PQueue_intervalEnd, _PQueue_intervalId, _PQueue_timeoutId, _PQueue_queue, _PQueue_queueClass, _PQueue_pendingCount, _PQueue_concurrency, _PQueue_isPaused, _PQueue_resolveEmpty, _PQueue_resolveIdle, _PQueue_timeout, _PQueue_throwOnTimeout, _PQueue_doesIntervalAllowAnother_get, _PQueue_doesConcurrentAllowAnother_get, _PQueue_next, _PQueue_resolvePromises, _PQueue_onResumeInterval, _PQueue_isIntervalPaused, _PQueue_tryToStartAnother, _PQueue_initializeIntervalIfNeeded, _PQueue_onInterval, _PQueue_processQueue, empty, timeoutError, AbortError, PQueue;
|
65504
66629
|
var init_dist2 = __esm({
|
65505
66630
|
"../../node_modules/.pnpm/p-queue@7.2.0/node_modules/p-queue/dist/index.js"() {
|
65506
66631
|
init_import_meta_url();
|
@@ -65513,7 +66638,7 @@ var init_dist2 = __esm({
|
|
65513
66638
|
if (typeof state2 === "function" ? receiver !== state2 || !f6 : !state2.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
65514
66639
|
return kind === "a" ? f6.call(receiver, value) : f6 ? f6.value = value : state2.set(receiver, value), value;
|
65515
66640
|
};
|
65516
|
-
|
66641
|
+
__classPrivateFieldGet3 = function(receiver, state2, kind, f6) {
|
65517
66642
|
if (kind === "a" && !f6) throw new TypeError("Private accessor was defined without a getter");
|
65518
66643
|
if (typeof state2 === "function" ? receiver !== state2 || !f6 : !state2.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
65519
66644
|
return kind === "m" ? f6 : kind === "a" ? f6.call(receiver) : f6 ? f6.value : state2.get(receiver);
|
@@ -65578,14 +66703,14 @@ var init_dist2 = __esm({
|
|
65578
66703
|
__classPrivateFieldSet(this, _PQueue_isPaused, options.autoStart === false, "f");
|
65579
66704
|
}
|
65580
66705
|
get concurrency() {
|
65581
|
-
return
|
66706
|
+
return __classPrivateFieldGet3(this, _PQueue_concurrency, "f");
|
65582
66707
|
}
|
65583
66708
|
set concurrency(newConcurrency) {
|
65584
66709
|
if (!(typeof newConcurrency === "number" && newConcurrency >= 1)) {
|
65585
66710
|
throw new TypeError(`Expected \`concurrency\` to be a number from 1 and up, got \`${newConcurrency}\` (${typeof newConcurrency})`);
|
65586
66711
|
}
|
65587
66712
|
__classPrivateFieldSet(this, _PQueue_concurrency, newConcurrency, "f");
|
65588
|
-
|
66713
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_processQueue).call(this);
|
65589
66714
|
}
|
65590
66715
|
/**
|
65591
66716
|
Adds a sync or async task to the queue. Always returns a promise.
|
@@ -65595,15 +66720,15 @@ var init_dist2 = __esm({
|
|
65595
66720
|
const run2 = /* @__PURE__ */ __name(async () => {
|
65596
66721
|
var _a4;
|
65597
66722
|
var _b2, _c3;
|
65598
|
-
__classPrivateFieldSet(this, _PQueue_pendingCount, (_b2 =
|
65599
|
-
__classPrivateFieldSet(this, _PQueue_intervalCount, (_c3 =
|
66723
|
+
__classPrivateFieldSet(this, _PQueue_pendingCount, (_b2 = __classPrivateFieldGet3(this, _PQueue_pendingCount, "f"), _b2++, _b2), "f");
|
66724
|
+
__classPrivateFieldSet(this, _PQueue_intervalCount, (_c3 = __classPrivateFieldGet3(this, _PQueue_intervalCount, "f"), _c3++, _c3), "f");
|
65600
66725
|
try {
|
65601
66726
|
if ((_a4 = options.signal) === null || _a4 === void 0 ? void 0 : _a4.aborted) {
|
65602
66727
|
reject(new AbortError("The task was aborted."));
|
65603
66728
|
return;
|
65604
66729
|
}
|
65605
|
-
const operation =
|
65606
|
-
if (options.throwOnTimeout === void 0 ?
|
66730
|
+
const operation = __classPrivateFieldGet3(this, _PQueue_timeout, "f") === void 0 && options.timeout === void 0 ? fn2({ signal: options.signal }) : pTimeout(Promise.resolve(fn2({ signal: options.signal })), options.timeout === void 0 ? __classPrivateFieldGet3(this, _PQueue_timeout, "f") : options.timeout, () => {
|
66731
|
+
if (options.throwOnTimeout === void 0 ? __classPrivateFieldGet3(this, _PQueue_throwOnTimeout, "f") : options.throwOnTimeout) {
|
65607
66732
|
reject(timeoutError);
|
65608
66733
|
}
|
65609
66734
|
return void 0;
|
@@ -65615,10 +66740,10 @@ var init_dist2 = __esm({
|
|
65615
66740
|
reject(error2);
|
65616
66741
|
this.emit("error", error2);
|
65617
66742
|
}
|
65618
|
-
|
66743
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_next).call(this);
|
65619
66744
|
}, "run");
|
65620
|
-
|
65621
|
-
|
66745
|
+
__classPrivateFieldGet3(this, _PQueue_queue, "f").enqueue(run2, options);
|
66746
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_tryToStartAnother).call(this);
|
65622
66747
|
this.emit("add");
|
65623
66748
|
});
|
65624
66749
|
}
|
@@ -65634,11 +66759,11 @@ var init_dist2 = __esm({
|
|
65634
66759
|
Start (or resume) executing enqueued tasks within concurrency limit. No need to call this if queue is not paused (via `options.autoStart = false` or by `.pause()` method.)
|
65635
66760
|
*/
|
65636
66761
|
start() {
|
65637
|
-
if (!
|
66762
|
+
if (!__classPrivateFieldGet3(this, _PQueue_isPaused, "f")) {
|
65638
66763
|
return this;
|
65639
66764
|
}
|
65640
66765
|
__classPrivateFieldSet(this, _PQueue_isPaused, false, "f");
|
65641
|
-
|
66766
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_processQueue).call(this);
|
65642
66767
|
return this;
|
65643
66768
|
}
|
65644
66769
|
/**
|
@@ -65651,7 +66776,7 @@ var init_dist2 = __esm({
|
|
65651
66776
|
Clear the queue.
|
65652
66777
|
*/
|
65653
66778
|
clear() {
|
65654
|
-
__classPrivateFieldSet(this, _PQueue_queue, new (
|
66779
|
+
__classPrivateFieldSet(this, _PQueue_queue, new (__classPrivateFieldGet3(this, _PQueue_queueClass, "f"))(), "f");
|
65655
66780
|
}
|
65656
66781
|
/**
|
65657
66782
|
Can be called multiple times. Useful if you for example add additional items at a later time.
|
@@ -65659,11 +66784,11 @@ var init_dist2 = __esm({
|
|
65659
66784
|
@returns A promise that settles when the queue becomes empty.
|
65660
66785
|
*/
|
65661
66786
|
async onEmpty() {
|
65662
|
-
if (
|
66787
|
+
if (__classPrivateFieldGet3(this, _PQueue_queue, "f").size === 0) {
|
65663
66788
|
return;
|
65664
66789
|
}
|
65665
66790
|
return new Promise((resolve25) => {
|
65666
|
-
const existingResolve =
|
66791
|
+
const existingResolve = __classPrivateFieldGet3(this, _PQueue_resolveEmpty, "f");
|
65667
66792
|
__classPrivateFieldSet(this, _PQueue_resolveEmpty, () => {
|
65668
66793
|
existingResolve();
|
65669
66794
|
resolve25();
|
@@ -65678,12 +66803,12 @@ var init_dist2 = __esm({
|
|
65678
66803
|
Note that this only limits the number of items waiting to start. There could still be up to `concurrency` jobs already running that this call does not include in its calculation.
|
65679
66804
|
*/
|
65680
66805
|
async onSizeLessThan(limit) {
|
65681
|
-
if (
|
66806
|
+
if (__classPrivateFieldGet3(this, _PQueue_queue, "f").size < limit) {
|
65682
66807
|
return;
|
65683
66808
|
}
|
65684
66809
|
return new Promise((resolve25) => {
|
65685
66810
|
const listener = /* @__PURE__ */ __name(() => {
|
65686
|
-
if (
|
66811
|
+
if (__classPrivateFieldGet3(this, _PQueue_queue, "f").size < limit) {
|
65687
66812
|
this.removeListener("next", listener);
|
65688
66813
|
resolve25();
|
65689
66814
|
}
|
@@ -65697,11 +66822,11 @@ var init_dist2 = __esm({
|
|
65697
66822
|
@returns A promise that settles when the queue becomes empty, and all promises have completed; `queue.size === 0 && queue.pending === 0`.
|
65698
66823
|
*/
|
65699
66824
|
async onIdle() {
|
65700
|
-
if (
|
66825
|
+
if (__classPrivateFieldGet3(this, _PQueue_pendingCount, "f") === 0 && __classPrivateFieldGet3(this, _PQueue_queue, "f").size === 0) {
|
65701
66826
|
return;
|
65702
66827
|
}
|
65703
66828
|
return new Promise((resolve25) => {
|
65704
|
-
const existingResolve =
|
66829
|
+
const existingResolve = __classPrivateFieldGet3(this, _PQueue_resolveIdle, "f");
|
65705
66830
|
__classPrivateFieldSet(this, _PQueue_resolveIdle, () => {
|
65706
66831
|
existingResolve();
|
65707
66832
|
resolve25();
|
@@ -65712,7 +66837,7 @@ var init_dist2 = __esm({
|
|
65712
66837
|
Size of the queue, the number of queued items waiting to run.
|
65713
66838
|
*/
|
65714
66839
|
get size() {
|
65715
|
-
return
|
66840
|
+
return __classPrivateFieldGet3(this, _PQueue_queue, "f").size;
|
65716
66841
|
}
|
65717
66842
|
/**
|
65718
66843
|
Size of the queue, filtered by the given options.
|
@@ -65720,22 +66845,22 @@ var init_dist2 = __esm({
|
|
65720
66845
|
For example, this can be used to find the number of items remaining in the queue with a specific priority level.
|
65721
66846
|
*/
|
65722
66847
|
sizeBy(options) {
|
65723
|
-
return
|
66848
|
+
return __classPrivateFieldGet3(this, _PQueue_queue, "f").filter(options).length;
|
65724
66849
|
}
|
65725
66850
|
/**
|
65726
66851
|
Number of running items (no longer in the queue).
|
65727
66852
|
*/
|
65728
66853
|
get pending() {
|
65729
|
-
return
|
66854
|
+
return __classPrivateFieldGet3(this, _PQueue_pendingCount, "f");
|
65730
66855
|
}
|
65731
66856
|
/**
|
65732
66857
|
Whether the queue is currently paused.
|
65733
66858
|
*/
|
65734
66859
|
get isPaused() {
|
65735
|
-
return
|
66860
|
+
return __classPrivateFieldGet3(this, _PQueue_isPaused, "f");
|
65736
66861
|
}
|
65737
66862
|
get timeout() {
|
65738
|
-
return
|
66863
|
+
return __classPrivateFieldGet3(this, _PQueue_timeout, "f");
|
65739
66864
|
}
|
65740
66865
|
/**
|
65741
66866
|
Set the timeout for future operations.
|
@@ -65745,36 +66870,36 @@ var init_dist2 = __esm({
|
|
65745
66870
|
}
|
65746
66871
|
};
|
65747
66872
|
_PQueue_carryoverConcurrencyCount = /* @__PURE__ */ new WeakMap(), _PQueue_isIntervalIgnored = /* @__PURE__ */ new WeakMap(), _PQueue_intervalCount = /* @__PURE__ */ new WeakMap(), _PQueue_intervalCap = /* @__PURE__ */ new WeakMap(), _PQueue_interval = /* @__PURE__ */ new WeakMap(), _PQueue_intervalEnd = /* @__PURE__ */ new WeakMap(), _PQueue_intervalId = /* @__PURE__ */ new WeakMap(), _PQueue_timeoutId = /* @__PURE__ */ new WeakMap(), _PQueue_queue = /* @__PURE__ */ new WeakMap(), _PQueue_queueClass = /* @__PURE__ */ new WeakMap(), _PQueue_pendingCount = /* @__PURE__ */ new WeakMap(), _PQueue_concurrency = /* @__PURE__ */ new WeakMap(), _PQueue_isPaused = /* @__PURE__ */ new WeakMap(), _PQueue_resolveEmpty = /* @__PURE__ */ new WeakMap(), _PQueue_resolveIdle = /* @__PURE__ */ new WeakMap(), _PQueue_timeout = /* @__PURE__ */ new WeakMap(), _PQueue_throwOnTimeout = /* @__PURE__ */ new WeakMap(), _PQueue_instances = /* @__PURE__ */ new WeakSet(), _PQueue_doesIntervalAllowAnother_get = /* @__PURE__ */ __name(function _PQueue_doesIntervalAllowAnother_get2() {
|
65748
|
-
return
|
66873
|
+
return __classPrivateFieldGet3(this, _PQueue_isIntervalIgnored, "f") || __classPrivateFieldGet3(this, _PQueue_intervalCount, "f") < __classPrivateFieldGet3(this, _PQueue_intervalCap, "f");
|
65749
66874
|
}, "_PQueue_doesIntervalAllowAnother_get"), _PQueue_doesConcurrentAllowAnother_get = /* @__PURE__ */ __name(function _PQueue_doesConcurrentAllowAnother_get2() {
|
65750
|
-
return
|
66875
|
+
return __classPrivateFieldGet3(this, _PQueue_pendingCount, "f") < __classPrivateFieldGet3(this, _PQueue_concurrency, "f");
|
65751
66876
|
}, "_PQueue_doesConcurrentAllowAnother_get"), _PQueue_next = /* @__PURE__ */ __name(function _PQueue_next2() {
|
65752
66877
|
var _a4;
|
65753
|
-
__classPrivateFieldSet(this, _PQueue_pendingCount, (_a4 =
|
65754
|
-
|
66878
|
+
__classPrivateFieldSet(this, _PQueue_pendingCount, (_a4 = __classPrivateFieldGet3(this, _PQueue_pendingCount, "f"), _a4--, _a4), "f");
|
66879
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_tryToStartAnother).call(this);
|
65755
66880
|
this.emit("next");
|
65756
66881
|
}, "_PQueue_next"), _PQueue_resolvePromises = /* @__PURE__ */ __name(function _PQueue_resolvePromises2() {
|
65757
|
-
|
66882
|
+
__classPrivateFieldGet3(this, _PQueue_resolveEmpty, "f").call(this);
|
65758
66883
|
__classPrivateFieldSet(this, _PQueue_resolveEmpty, empty, "f");
|
65759
|
-
if (
|
65760
|
-
|
66884
|
+
if (__classPrivateFieldGet3(this, _PQueue_pendingCount, "f") === 0) {
|
66885
|
+
__classPrivateFieldGet3(this, _PQueue_resolveIdle, "f").call(this);
|
65761
66886
|
__classPrivateFieldSet(this, _PQueue_resolveIdle, empty, "f");
|
65762
66887
|
this.emit("idle");
|
65763
66888
|
}
|
65764
66889
|
}, "_PQueue_resolvePromises"), _PQueue_onResumeInterval = /* @__PURE__ */ __name(function _PQueue_onResumeInterval2() {
|
65765
|
-
|
65766
|
-
|
66890
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_onInterval).call(this);
|
66891
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_initializeIntervalIfNeeded).call(this);
|
65767
66892
|
__classPrivateFieldSet(this, _PQueue_timeoutId, void 0, "f");
|
65768
66893
|
}, "_PQueue_onResumeInterval"), _PQueue_isIntervalPaused = /* @__PURE__ */ __name(function _PQueue_isIntervalPaused2() {
|
65769
66894
|
const now = Date.now();
|
65770
|
-
if (
|
65771
|
-
const delay =
|
66895
|
+
if (__classPrivateFieldGet3(this, _PQueue_intervalId, "f") === void 0) {
|
66896
|
+
const delay = __classPrivateFieldGet3(this, _PQueue_intervalEnd, "f") - now;
|
65772
66897
|
if (delay < 0) {
|
65773
|
-
__classPrivateFieldSet(this, _PQueue_intervalCount,
|
66898
|
+
__classPrivateFieldSet(this, _PQueue_intervalCount, __classPrivateFieldGet3(this, _PQueue_carryoverConcurrencyCount, "f") ? __classPrivateFieldGet3(this, _PQueue_pendingCount, "f") : 0, "f");
|
65774
66899
|
} else {
|
65775
|
-
if (
|
66900
|
+
if (__classPrivateFieldGet3(this, _PQueue_timeoutId, "f") === void 0) {
|
65776
66901
|
__classPrivateFieldSet(this, _PQueue_timeoutId, setTimeout(() => {
|
65777
|
-
|
66902
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_onResumeInterval).call(this);
|
65778
66903
|
}, delay), "f");
|
65779
66904
|
}
|
65780
66905
|
return true;
|
@@ -65782,47 +66907,47 @@ var init_dist2 = __esm({
|
|
65782
66907
|
}
|
65783
66908
|
return false;
|
65784
66909
|
}, "_PQueue_isIntervalPaused"), _PQueue_tryToStartAnother = /* @__PURE__ */ __name(function _PQueue_tryToStartAnother2() {
|
65785
|
-
if (
|
65786
|
-
if (
|
65787
|
-
clearInterval(
|
66910
|
+
if (__classPrivateFieldGet3(this, _PQueue_queue, "f").size === 0) {
|
66911
|
+
if (__classPrivateFieldGet3(this, _PQueue_intervalId, "f")) {
|
66912
|
+
clearInterval(__classPrivateFieldGet3(this, _PQueue_intervalId, "f"));
|
65788
66913
|
}
|
65789
66914
|
__classPrivateFieldSet(this, _PQueue_intervalId, void 0, "f");
|
65790
|
-
|
66915
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_resolvePromises).call(this);
|
65791
66916
|
return false;
|
65792
66917
|
}
|
65793
|
-
if (!
|
65794
|
-
const canInitializeInterval = !
|
65795
|
-
if (
|
65796
|
-
const job =
|
66918
|
+
if (!__classPrivateFieldGet3(this, _PQueue_isPaused, "f")) {
|
66919
|
+
const canInitializeInterval = !__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_isIntervalPaused).call(this);
|
66920
|
+
if (__classPrivateFieldGet3(this, _PQueue_instances, "a", _PQueue_doesIntervalAllowAnother_get) && __classPrivateFieldGet3(this, _PQueue_instances, "a", _PQueue_doesConcurrentAllowAnother_get)) {
|
66921
|
+
const job = __classPrivateFieldGet3(this, _PQueue_queue, "f").dequeue();
|
65797
66922
|
if (!job) {
|
65798
66923
|
return false;
|
65799
66924
|
}
|
65800
66925
|
this.emit("active");
|
65801
66926
|
job();
|
65802
66927
|
if (canInitializeInterval) {
|
65803
|
-
|
66928
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_initializeIntervalIfNeeded).call(this);
|
65804
66929
|
}
|
65805
66930
|
return true;
|
65806
66931
|
}
|
65807
66932
|
}
|
65808
66933
|
return false;
|
65809
66934
|
}, "_PQueue_tryToStartAnother"), _PQueue_initializeIntervalIfNeeded = /* @__PURE__ */ __name(function _PQueue_initializeIntervalIfNeeded2() {
|
65810
|
-
if (
|
66935
|
+
if (__classPrivateFieldGet3(this, _PQueue_isIntervalIgnored, "f") || __classPrivateFieldGet3(this, _PQueue_intervalId, "f") !== void 0) {
|
65811
66936
|
return;
|
65812
66937
|
}
|
65813
66938
|
__classPrivateFieldSet(this, _PQueue_intervalId, setInterval(() => {
|
65814
|
-
|
65815
|
-
},
|
65816
|
-
__classPrivateFieldSet(this, _PQueue_intervalEnd, Date.now() +
|
66939
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_onInterval).call(this);
|
66940
|
+
}, __classPrivateFieldGet3(this, _PQueue_interval, "f")), "f");
|
66941
|
+
__classPrivateFieldSet(this, _PQueue_intervalEnd, Date.now() + __classPrivateFieldGet3(this, _PQueue_interval, "f"), "f");
|
65817
66942
|
}, "_PQueue_initializeIntervalIfNeeded"), _PQueue_onInterval = /* @__PURE__ */ __name(function _PQueue_onInterval2() {
|
65818
|
-
if (
|
65819
|
-
clearInterval(
|
66943
|
+
if (__classPrivateFieldGet3(this, _PQueue_intervalCount, "f") === 0 && __classPrivateFieldGet3(this, _PQueue_pendingCount, "f") === 0 && __classPrivateFieldGet3(this, _PQueue_intervalId, "f")) {
|
66944
|
+
clearInterval(__classPrivateFieldGet3(this, _PQueue_intervalId, "f"));
|
65820
66945
|
__classPrivateFieldSet(this, _PQueue_intervalId, void 0, "f");
|
65821
66946
|
}
|
65822
|
-
__classPrivateFieldSet(this, _PQueue_intervalCount,
|
65823
|
-
|
66947
|
+
__classPrivateFieldSet(this, _PQueue_intervalCount, __classPrivateFieldGet3(this, _PQueue_carryoverConcurrencyCount, "f") ? __classPrivateFieldGet3(this, _PQueue_pendingCount, "f") : 0, "f");
|
66948
|
+
__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_processQueue).call(this);
|
65824
66949
|
}, "_PQueue_onInterval"), _PQueue_processQueue = /* @__PURE__ */ __name(function _PQueue_processQueue2() {
|
65825
|
-
while (
|
66950
|
+
while (__classPrivateFieldGet3(this, _PQueue_instances, "m", _PQueue_tryToStartAnother).call(this)) {
|
65826
66951
|
}
|
65827
66952
|
}, "_PQueue_processQueue");
|
65828
66953
|
}
|
@@ -78673,7 +79798,7 @@ function YargsFactory(_shim) {
|
|
78673
79798
|
function isYargsInstance(y4) {
|
78674
79799
|
return !!y4 && typeof y4.getInternalMethods === "function";
|
78675
79800
|
}
|
78676
|
-
var __classPrivateFieldSet2,
|
79801
|
+
var __classPrivateFieldSet2, __classPrivateFieldGet4, _YargsInstance_command, _YargsInstance_cwd, _YargsInstance_context, _YargsInstance_completion, _YargsInstance_completionCommand, _YargsInstance_defaultShowHiddenOpt, _YargsInstance_exitError, _YargsInstance_detectLocale, _YargsInstance_emittedWarnings, _YargsInstance_exitProcess, _YargsInstance_frozens, _YargsInstance_globalMiddleware, _YargsInstance_groups, _YargsInstance_hasOutput, _YargsInstance_helpOpt, _YargsInstance_isGlobalContext, _YargsInstance_logger, _YargsInstance_output, _YargsInstance_options, _YargsInstance_parentRequire, _YargsInstance_parserConfig, _YargsInstance_parseFn, _YargsInstance_parseContext, _YargsInstance_pkgs, _YargsInstance_preservedGroups, _YargsInstance_processArgs, _YargsInstance_recommendCommands, _YargsInstance_shim, _YargsInstance_strict, _YargsInstance_strictCommands, _YargsInstance_strictOptions, _YargsInstance_usage, _YargsInstance_usageConfig, _YargsInstance_versionOpt, _YargsInstance_validation, kCopyDoubleDash, kCreateLogger, kDeleteFromParserHintObject, kEmitWarning, kFreeze, kGetDollarZero, kGetParserConfiguration, kGetUsageConfiguration, kGuessLocale, kGuessVersion, kParsePositionalNumbers, kPkgUp, kPopulateParserHintArray, kPopulateParserHintSingleValueDictionary, kPopulateParserHintArrayDictionary, kPopulateParserHintDictionary, kSanitizeKey, kSetKey, kUnfreeze, kValidateAsync, kGetCommandInstance, kGetContext, kGetHasOutput, kGetLoggerInstance, kGetParseContext, kGetUsageInstance, kGetValidationInstance, kHasParseCallback, kIsGlobalContext, kPostProcess, kRebase, kReset, kRunYargsParserAndExecuteCommands, kRunValidation, kSetHasOutput, kTrackManuallySetKeys, YargsInstance;
|
78677
79802
|
var init_yargs_factory = __esm({
|
78678
79803
|
"../../node_modules/.pnpm/yargs@17.7.2/node_modules/yargs/build/lib/yargs-factory.js"() {
|
78679
79804
|
init_import_meta_url();
|
@@ -78696,7 +79821,7 @@ var init_yargs_factory = __esm({
|
|
78696
79821
|
if (typeof state2 === "function" ? receiver !== state2 || !f6 : !state2.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
|
78697
79822
|
return kind === "a" ? f6.call(receiver, value) : f6 ? f6.value = value : state2.set(receiver, value), value;
|
78698
79823
|
};
|
78699
|
-
|
79824
|
+
__classPrivateFieldGet4 = function(receiver, state2, kind, f6) {
|
78700
79825
|
if (kind === "a" && !f6) throw new TypeError("Private accessor was defined without a getter");
|
78701
79826
|
if (typeof state2 === "function" ? receiver !== state2 || !f6 : !state2.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
|
78702
79827
|
return kind === "m" ? f6 : kind === "a" ? f6.call(receiver) : f6 ? f6.value : state2.get(receiver);
|
@@ -78787,25 +79912,25 @@ var init_yargs_factory = __esm({
|
|
78787
79912
|
__classPrivateFieldSet2(this, _YargsInstance_globalMiddleware, new GlobalMiddleware(this), "f");
|
78788
79913
|
this.$0 = this[kGetDollarZero]();
|
78789
79914
|
this[kReset]();
|
78790
|
-
__classPrivateFieldSet2(this, _YargsInstance_command,
|
78791
|
-
__classPrivateFieldSet2(this, _YargsInstance_usage,
|
78792
|
-
__classPrivateFieldSet2(this, _YargsInstance_validation,
|
78793
|
-
__classPrivateFieldSet2(this, _YargsInstance_options,
|
78794
|
-
|
79915
|
+
__classPrivateFieldSet2(this, _YargsInstance_command, __classPrivateFieldGet4(this, _YargsInstance_command, "f"), "f");
|
79916
|
+
__classPrivateFieldSet2(this, _YargsInstance_usage, __classPrivateFieldGet4(this, _YargsInstance_usage, "f"), "f");
|
79917
|
+
__classPrivateFieldSet2(this, _YargsInstance_validation, __classPrivateFieldGet4(this, _YargsInstance_validation, "f"), "f");
|
79918
|
+
__classPrivateFieldSet2(this, _YargsInstance_options, __classPrivateFieldGet4(this, _YargsInstance_options, "f"), "f");
|
79919
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").showHiddenOpt = __classPrivateFieldGet4(this, _YargsInstance_defaultShowHiddenOpt, "f");
|
78795
79920
|
__classPrivateFieldSet2(this, _YargsInstance_logger, this[kCreateLogger](), "f");
|
78796
79921
|
}
|
78797
79922
|
addHelpOpt(opt, msg) {
|
78798
79923
|
const defaultHelpOpt = "help";
|
78799
79924
|
argsert("[string|boolean] [string]", [opt, msg], arguments.length);
|
78800
|
-
if (
|
78801
|
-
this[kDeleteFromParserHintObject](
|
79925
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f")) {
|
79926
|
+
this[kDeleteFromParserHintObject](__classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f"));
|
78802
79927
|
__classPrivateFieldSet2(this, _YargsInstance_helpOpt, null, "f");
|
78803
79928
|
}
|
78804
79929
|
if (opt === false && msg === void 0)
|
78805
79930
|
return this;
|
78806
79931
|
__classPrivateFieldSet2(this, _YargsInstance_helpOpt, typeof opt === "string" ? opt : defaultHelpOpt, "f");
|
78807
|
-
this.boolean(
|
78808
|
-
this.describe(
|
79932
|
+
this.boolean(__classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f"));
|
79933
|
+
this.describe(__classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f"), msg || __classPrivateFieldGet4(this, _YargsInstance_usage, "f").deferY18nLookup("Show help"));
|
78809
79934
|
return this;
|
78810
79935
|
}
|
78811
79936
|
help(opt, msg) {
|
@@ -78815,10 +79940,10 @@ var init_yargs_factory = __esm({
|
|
78815
79940
|
argsert("[string|boolean] [string]", [opt, msg], arguments.length);
|
78816
79941
|
if (opt === false && msg === void 0)
|
78817
79942
|
return this;
|
78818
|
-
const showHiddenOpt = typeof opt === "string" ? opt :
|
79943
|
+
const showHiddenOpt = typeof opt === "string" ? opt : __classPrivateFieldGet4(this, _YargsInstance_defaultShowHiddenOpt, "f");
|
78819
79944
|
this.boolean(showHiddenOpt);
|
78820
|
-
this.describe(showHiddenOpt, msg ||
|
78821
|
-
|
79945
|
+
this.describe(showHiddenOpt, msg || __classPrivateFieldGet4(this, _YargsInstance_usage, "f").deferY18nLookup("Show hidden options"));
|
79946
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").showHiddenOpt = showHiddenOpt;
|
78822
79947
|
return this;
|
78823
79948
|
}
|
78824
79949
|
showHidden(opt, msg) {
|
@@ -78848,13 +79973,13 @@ var init_yargs_factory = __esm({
|
|
78848
79973
|
return f6(argv, _yargs.getOptions());
|
78849
79974
|
}, (result) => {
|
78850
79975
|
if (!result) {
|
78851
|
-
|
79976
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").fail(__classPrivateFieldGet4(this, _YargsInstance_shim, "f").y18n.__("Argument check failed: %s", f6.toString()));
|
78852
79977
|
} else if (typeof result === "string" || result instanceof Error) {
|
78853
|
-
|
79978
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").fail(result.toString(), result);
|
78854
79979
|
}
|
78855
79980
|
return argv;
|
78856
79981
|
}, (err) => {
|
78857
|
-
|
79982
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").fail(err.message ? err.message : err.toString(), err);
|
78858
79983
|
return argv;
|
78859
79984
|
});
|
78860
79985
|
}, false, global2);
|
@@ -78884,8 +80009,8 @@ var init_yargs_factory = __esm({
|
|
78884
80009
|
if (!value) {
|
78885
80010
|
throw new YError("coerce callback must be provided");
|
78886
80011
|
}
|
78887
|
-
|
78888
|
-
|
80012
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").key[keys] = true;
|
80013
|
+
__classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").addCoerceMiddleware((argv, yargs) => {
|
78889
80014
|
let aliases2;
|
78890
80015
|
const shouldCoerce = Object.prototype.hasOwnProperty.call(argv, keys);
|
78891
80016
|
if (!shouldCoerce) {
|
@@ -78911,23 +80036,23 @@ var init_yargs_factory = __esm({
|
|
78911
80036
|
}
|
78912
80037
|
conflicts(key1, key2) {
|
78913
80038
|
argsert("<string|object> [string|array]", [key1, key2], arguments.length);
|
78914
|
-
|
80039
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").conflicts(key1, key2);
|
78915
80040
|
return this;
|
78916
80041
|
}
|
78917
80042
|
config(key = "config", msg, parseFn) {
|
78918
80043
|
argsert("[object|string] [string|function] [function]", [key, msg, parseFn], arguments.length);
|
78919
80044
|
if (typeof key === "object" && !Array.isArray(key)) {
|
78920
|
-
key = applyExtends(key,
|
78921
|
-
|
80045
|
+
key = applyExtends(key, __classPrivateFieldGet4(this, _YargsInstance_cwd, "f"), this[kGetParserConfiguration]()["deep-merge-config"] || false, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
80046
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").configObjects = (__classPrivateFieldGet4(this, _YargsInstance_options, "f").configObjects || []).concat(key);
|
78922
80047
|
return this;
|
78923
80048
|
}
|
78924
80049
|
if (typeof msg === "function") {
|
78925
80050
|
parseFn = msg;
|
78926
80051
|
msg = void 0;
|
78927
80052
|
}
|
78928
|
-
this.describe(key, msg ||
|
80053
|
+
this.describe(key, msg || __classPrivateFieldGet4(this, _YargsInstance_usage, "f").deferY18nLookup("Path to JSON config file"));
|
78929
80054
|
(Array.isArray(key) ? key : [key]).forEach((k6) => {
|
78930
|
-
|
80055
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").config[k6] = parseFn || true;
|
78931
80056
|
});
|
78932
80057
|
return this;
|
78933
80058
|
}
|
@@ -78937,18 +80062,18 @@ var init_yargs_factory = __esm({
|
|
78937
80062
|
fn2 = desc;
|
78938
80063
|
desc = void 0;
|
78939
80064
|
}
|
78940
|
-
__classPrivateFieldSet2(this, _YargsInstance_completionCommand, cmd ||
|
80065
|
+
__classPrivateFieldSet2(this, _YargsInstance_completionCommand, cmd || __classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f") || "completion", "f");
|
78941
80066
|
if (!desc && desc !== false) {
|
78942
80067
|
desc = "generate completion script";
|
78943
80068
|
}
|
78944
|
-
this.command(
|
80069
|
+
this.command(__classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f"), desc);
|
78945
80070
|
if (fn2)
|
78946
|
-
|
80071
|
+
__classPrivateFieldGet4(this, _YargsInstance_completion, "f").registerFunction(fn2);
|
78947
80072
|
return this;
|
78948
80073
|
}
|
78949
80074
|
command(cmd, description, builder, handler, middlewares, deprecated2) {
|
78950
80075
|
argsert("<string|array|object> [string|boolean] [function|object] [function] [array] [boolean|string]", [cmd, description, builder, handler, middlewares, deprecated2], arguments.length);
|
78951
|
-
|
80076
|
+
__classPrivateFieldGet4(this, _YargsInstance_command, "f").addHandler(cmd, description, builder, handler, middlewares, deprecated2);
|
78952
80077
|
return this;
|
78953
80078
|
}
|
78954
80079
|
commands(cmd, description, builder, handler, middlewares, deprecated2) {
|
@@ -78956,8 +80081,8 @@ var init_yargs_factory = __esm({
|
|
78956
80081
|
}
|
78957
80082
|
commandDir(dir, opts) {
|
78958
80083
|
argsert("<string> [object]", [dir, opts], arguments.length);
|
78959
|
-
const req =
|
78960
|
-
|
80084
|
+
const req = __classPrivateFieldGet4(this, _YargsInstance_parentRequire, "f") || __classPrivateFieldGet4(this, _YargsInstance_shim, "f").require;
|
80085
|
+
__classPrivateFieldGet4(this, _YargsInstance_command, "f").addDirectory(dir, req, __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getCallerFile(), opts);
|
78961
80086
|
return this;
|
78962
80087
|
}
|
78963
80088
|
count(keys) {
|
@@ -78969,13 +80094,13 @@ var init_yargs_factory = __esm({
|
|
78969
80094
|
default(key, value, defaultDescription) {
|
78970
80095
|
argsert("<object|string|array> [*] [string]", [key, value, defaultDescription], arguments.length);
|
78971
80096
|
if (defaultDescription) {
|
78972
|
-
assertSingleKey(key,
|
78973
|
-
|
80097
|
+
assertSingleKey(key, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
80098
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").defaultDescription[key] = defaultDescription;
|
78974
80099
|
}
|
78975
80100
|
if (typeof value === "function") {
|
78976
|
-
assertSingleKey(key,
|
78977
|
-
if (!
|
78978
|
-
|
80101
|
+
assertSingleKey(key, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
80102
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_options, "f").defaultDescription[key])
|
80103
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").defaultDescription[key] = __classPrivateFieldGet4(this, _YargsInstance_usage, "f").functionDescription(value);
|
78979
80104
|
value = value.call();
|
78980
80105
|
}
|
78981
80106
|
this[kPopulateParserHintSingleValueDictionary](this.default.bind(this), "default", key, value);
|
@@ -78991,7 +80116,7 @@ var init_yargs_factory = __esm({
|
|
78991
80116
|
max = Infinity;
|
78992
80117
|
}
|
78993
80118
|
this.global("_", false);
|
78994
|
-
|
80119
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").demandedCommands._ = {
|
78995
80120
|
min,
|
78996
80121
|
max,
|
78997
80122
|
minMsg,
|
@@ -79002,7 +80127,7 @@ var init_yargs_factory = __esm({
|
|
79002
80127
|
demand(keys, max, msg) {
|
79003
80128
|
if (Array.isArray(max)) {
|
79004
80129
|
max.forEach((key) => {
|
79005
|
-
assertNotStrictEqual(msg, true,
|
80130
|
+
assertNotStrictEqual(msg, true, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
79006
80131
|
this.demandOption(key, msg);
|
79007
80132
|
});
|
79008
80133
|
max = Infinity;
|
@@ -79011,11 +80136,11 @@ var init_yargs_factory = __esm({
|
|
79011
80136
|
max = Infinity;
|
79012
80137
|
}
|
79013
80138
|
if (typeof keys === "number") {
|
79014
|
-
assertNotStrictEqual(msg, true,
|
80139
|
+
assertNotStrictEqual(msg, true, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
79015
80140
|
this.demandCommand(keys, max, msg, msg);
|
79016
80141
|
} else if (Array.isArray(keys)) {
|
79017
80142
|
keys.forEach((key) => {
|
79018
|
-
assertNotStrictEqual(msg, true,
|
80143
|
+
assertNotStrictEqual(msg, true, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
79019
80144
|
this.demandOption(key, msg);
|
79020
80145
|
});
|
79021
80146
|
} else {
|
@@ -79034,13 +80159,13 @@ var init_yargs_factory = __esm({
|
|
79034
80159
|
}
|
79035
80160
|
deprecateOption(option, message) {
|
79036
80161
|
argsert("<string> [string|boolean]", [option, message], arguments.length);
|
79037
|
-
|
80162
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").deprecatedOptions[option] = message;
|
79038
80163
|
return this;
|
79039
80164
|
}
|
79040
80165
|
describe(keys, description) {
|
79041
80166
|
argsert("<object|string|array> [string]", [keys, description], arguments.length);
|
79042
80167
|
this[kSetKey](keys, true);
|
79043
|
-
|
80168
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").describe(keys, description);
|
79044
80169
|
return this;
|
79045
80170
|
}
|
79046
80171
|
detectLocale(detect) {
|
@@ -79051,14 +80176,14 @@ var init_yargs_factory = __esm({
|
|
79051
80176
|
env(prefix) {
|
79052
80177
|
argsert("[string|boolean]", [prefix], arguments.length);
|
79053
80178
|
if (prefix === false)
|
79054
|
-
delete
|
80179
|
+
delete __classPrivateFieldGet4(this, _YargsInstance_options, "f").envPrefix;
|
79055
80180
|
else
|
79056
|
-
|
80181
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").envPrefix = prefix || "";
|
79057
80182
|
return this;
|
79058
80183
|
}
|
79059
80184
|
epilogue(msg) {
|
79060
80185
|
argsert("<string>", [msg], arguments.length);
|
79061
|
-
|
80186
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").epilog(msg);
|
79062
80187
|
return this;
|
79063
80188
|
}
|
79064
80189
|
epilog(msg) {
|
@@ -79069,15 +80194,15 @@ var init_yargs_factory = __esm({
|
|
79069
80194
|
if (Array.isArray(cmd)) {
|
79070
80195
|
cmd.forEach((exampleParams) => this.example(...exampleParams));
|
79071
80196
|
} else {
|
79072
|
-
|
80197
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").example(cmd, description);
|
79073
80198
|
}
|
79074
80199
|
return this;
|
79075
80200
|
}
|
79076
80201
|
exit(code, err) {
|
79077
80202
|
__classPrivateFieldSet2(this, _YargsInstance_hasOutput, true, "f");
|
79078
80203
|
__classPrivateFieldSet2(this, _YargsInstance_exitError, err, "f");
|
79079
|
-
if (
|
79080
|
-
|
80204
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_exitProcess, "f"))
|
80205
|
+
__classPrivateFieldGet4(this, _YargsInstance_shim, "f").process.exit(code);
|
79081
80206
|
}
|
79082
80207
|
exitProcess(enabled = true) {
|
79083
80208
|
argsert("[boolean]", [enabled], arguments.length);
|
@@ -79089,7 +80214,7 @@ var init_yargs_factory = __esm({
|
|
79089
80214
|
if (typeof f6 === "boolean" && f6 !== false) {
|
79090
80215
|
throw new YError("Invalid first argument. Expected function or boolean 'false'");
|
79091
80216
|
}
|
79092
|
-
|
80217
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").failFn(f6);
|
79093
80218
|
return this;
|
79094
80219
|
}
|
79095
80220
|
getAliases() {
|
@@ -79099,7 +80224,7 @@ var init_yargs_factory = __esm({
|
|
79099
80224
|
argsert("<array> [function]", [args, done], arguments.length);
|
79100
80225
|
if (!done) {
|
79101
80226
|
return new Promise((resolve25, reject) => {
|
79102
|
-
|
80227
|
+
__classPrivateFieldGet4(this, _YargsInstance_completion, "f").getCompletion(args, (err, completions) => {
|
79103
80228
|
if (err)
|
79104
80229
|
reject(err);
|
79105
80230
|
else
|
@@ -79107,83 +80232,83 @@ var init_yargs_factory = __esm({
|
|
79107
80232
|
});
|
79108
80233
|
});
|
79109
80234
|
} else {
|
79110
|
-
return
|
80235
|
+
return __classPrivateFieldGet4(this, _YargsInstance_completion, "f").getCompletion(args, done);
|
79111
80236
|
}
|
79112
80237
|
}
|
79113
80238
|
getDemandedOptions() {
|
79114
80239
|
argsert([], 0);
|
79115
|
-
return
|
80240
|
+
return __classPrivateFieldGet4(this, _YargsInstance_options, "f").demandedOptions;
|
79116
80241
|
}
|
79117
80242
|
getDemandedCommands() {
|
79118
80243
|
argsert([], 0);
|
79119
|
-
return
|
80244
|
+
return __classPrivateFieldGet4(this, _YargsInstance_options, "f").demandedCommands;
|
79120
80245
|
}
|
79121
80246
|
getDeprecatedOptions() {
|
79122
80247
|
argsert([], 0);
|
79123
|
-
return
|
80248
|
+
return __classPrivateFieldGet4(this, _YargsInstance_options, "f").deprecatedOptions;
|
79124
80249
|
}
|
79125
80250
|
getDetectLocale() {
|
79126
|
-
return
|
80251
|
+
return __classPrivateFieldGet4(this, _YargsInstance_detectLocale, "f");
|
79127
80252
|
}
|
79128
80253
|
getExitProcess() {
|
79129
|
-
return
|
80254
|
+
return __classPrivateFieldGet4(this, _YargsInstance_exitProcess, "f");
|
79130
80255
|
}
|
79131
80256
|
getGroups() {
|
79132
|
-
return Object.assign({},
|
80257
|
+
return Object.assign({}, __classPrivateFieldGet4(this, _YargsInstance_groups, "f"), __classPrivateFieldGet4(this, _YargsInstance_preservedGroups, "f"));
|
79133
80258
|
}
|
79134
80259
|
getHelp() {
|
79135
80260
|
__classPrivateFieldSet2(this, _YargsInstance_hasOutput, true, "f");
|
79136
|
-
if (!
|
80261
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_usage, "f").hasCachedHelpMessage()) {
|
79137
80262
|
if (!this.parsed) {
|
79138
|
-
const parse7 = this[kRunYargsParserAndExecuteCommands](
|
80263
|
+
const parse7 = this[kRunYargsParserAndExecuteCommands](__classPrivateFieldGet4(this, _YargsInstance_processArgs, "f"), void 0, void 0, 0, true);
|
79139
80264
|
if (isPromise(parse7)) {
|
79140
80265
|
return parse7.then(() => {
|
79141
|
-
return
|
80266
|
+
return __classPrivateFieldGet4(this, _YargsInstance_usage, "f").help();
|
79142
80267
|
});
|
79143
80268
|
}
|
79144
80269
|
}
|
79145
|
-
const builderResponse =
|
80270
|
+
const builderResponse = __classPrivateFieldGet4(this, _YargsInstance_command, "f").runDefaultBuilderOn(this);
|
79146
80271
|
if (isPromise(builderResponse)) {
|
79147
80272
|
return builderResponse.then(() => {
|
79148
|
-
return
|
80273
|
+
return __classPrivateFieldGet4(this, _YargsInstance_usage, "f").help();
|
79149
80274
|
});
|
79150
80275
|
}
|
79151
80276
|
}
|
79152
|
-
return Promise.resolve(
|
80277
|
+
return Promise.resolve(__classPrivateFieldGet4(this, _YargsInstance_usage, "f").help());
|
79153
80278
|
}
|
79154
80279
|
getOptions() {
|
79155
|
-
return
|
80280
|
+
return __classPrivateFieldGet4(this, _YargsInstance_options, "f");
|
79156
80281
|
}
|
79157
80282
|
getStrict() {
|
79158
|
-
return
|
80283
|
+
return __classPrivateFieldGet4(this, _YargsInstance_strict, "f");
|
79159
80284
|
}
|
79160
80285
|
getStrictCommands() {
|
79161
|
-
return
|
80286
|
+
return __classPrivateFieldGet4(this, _YargsInstance_strictCommands, "f");
|
79162
80287
|
}
|
79163
80288
|
getStrictOptions() {
|
79164
|
-
return
|
80289
|
+
return __classPrivateFieldGet4(this, _YargsInstance_strictOptions, "f");
|
79165
80290
|
}
|
79166
80291
|
global(globals, global2) {
|
79167
80292
|
argsert("<string|array> [boolean]", [globals, global2], arguments.length);
|
79168
80293
|
globals = [].concat(globals);
|
79169
80294
|
if (global2 !== false) {
|
79170
|
-
|
80295
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").local = __classPrivateFieldGet4(this, _YargsInstance_options, "f").local.filter((l6) => globals.indexOf(l6) === -1);
|
79171
80296
|
} else {
|
79172
80297
|
globals.forEach((g6) => {
|
79173
|
-
if (!
|
79174
|
-
|
80298
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_options, "f").local.includes(g6))
|
80299
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").local.push(g6);
|
79175
80300
|
});
|
79176
80301
|
}
|
79177
80302
|
return this;
|
79178
80303
|
}
|
79179
80304
|
group(opts, groupName) {
|
79180
80305
|
argsert("<string|array> <string>", [opts, groupName], arguments.length);
|
79181
|
-
const existing =
|
79182
|
-
if (
|
79183
|
-
delete
|
80306
|
+
const existing = __classPrivateFieldGet4(this, _YargsInstance_preservedGroups, "f")[groupName] || __classPrivateFieldGet4(this, _YargsInstance_groups, "f")[groupName];
|
80307
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_preservedGroups, "f")[groupName]) {
|
80308
|
+
delete __classPrivateFieldGet4(this, _YargsInstance_preservedGroups, "f")[groupName];
|
79184
80309
|
}
|
79185
80310
|
const seen = {};
|
79186
|
-
|
80311
|
+
__classPrivateFieldGet4(this, _YargsInstance_groups, "f")[groupName] = (existing || []).concat(opts).filter((key) => {
|
79187
80312
|
if (seen[key])
|
79188
80313
|
return false;
|
79189
80314
|
return seen[key] = true;
|
@@ -79192,26 +80317,26 @@ var init_yargs_factory = __esm({
|
|
79192
80317
|
}
|
79193
80318
|
hide(key) {
|
79194
80319
|
argsert("<string>", [key], arguments.length);
|
79195
|
-
|
80320
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").hiddenOptions.push(key);
|
79196
80321
|
return this;
|
79197
80322
|
}
|
79198
80323
|
implies(key, value) {
|
79199
80324
|
argsert("<string|object> [number|string|array]", [key, value], arguments.length);
|
79200
|
-
|
80325
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").implies(key, value);
|
79201
80326
|
return this;
|
79202
80327
|
}
|
79203
80328
|
locale(locale) {
|
79204
80329
|
argsert("[string]", [locale], arguments.length);
|
79205
80330
|
if (locale === void 0) {
|
79206
80331
|
this[kGuessLocale]();
|
79207
|
-
return
|
80332
|
+
return __classPrivateFieldGet4(this, _YargsInstance_shim, "f").y18n.getLocale();
|
79208
80333
|
}
|
79209
80334
|
__classPrivateFieldSet2(this, _YargsInstance_detectLocale, false, "f");
|
79210
|
-
|
80335
|
+
__classPrivateFieldGet4(this, _YargsInstance_shim, "f").y18n.setLocale(locale);
|
79211
80336
|
return this;
|
79212
80337
|
}
|
79213
80338
|
middleware(callback, applyBeforeValidation, global2) {
|
79214
|
-
return
|
80339
|
+
return __classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").addMiddleware(callback, !!applyBeforeValidation, global2);
|
79215
80340
|
}
|
79216
80341
|
nargs(key, value) {
|
79217
80342
|
argsert("<string|object|array> [number]", [key, value], arguments.length);
|
@@ -79240,7 +80365,7 @@ var init_yargs_factory = __esm({
|
|
79240
80365
|
opt = {};
|
79241
80366
|
}
|
79242
80367
|
this[kTrackManuallySetKeys](key);
|
79243
|
-
if (
|
80368
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_versionOpt, "f") && (key === "version" || (opt === null || opt === void 0 ? void 0 : opt.alias) === "version")) {
|
79244
80369
|
this[kEmitWarning]([
|
79245
80370
|
'"version" is a reserved word.',
|
79246
80371
|
"Please do one of the following:",
|
@@ -79250,7 +80375,7 @@ var init_yargs_factory = __esm({
|
|
79250
80375
|
"https://yargs.js.org/docs/#api-reference-version"
|
79251
80376
|
].join("\n"), void 0, "versionWarning");
|
79252
80377
|
}
|
79253
|
-
|
80378
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").key[key] = true;
|
79254
80379
|
if (opt.alias)
|
79255
80380
|
this.alias(key, opt.alias);
|
79256
80381
|
const deprecate = opt.deprecate || opt.deprecated;
|
@@ -79318,13 +80443,13 @@ var init_yargs_factory = __esm({
|
|
79318
80443
|
this.global(key, opt.global);
|
79319
80444
|
}
|
79320
80445
|
if (opt.defaultDescription) {
|
79321
|
-
|
80446
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").defaultDescription[key] = opt.defaultDescription;
|
79322
80447
|
}
|
79323
80448
|
if (opt.skipValidation) {
|
79324
80449
|
this.skipValidation(key);
|
79325
80450
|
}
|
79326
80451
|
const desc = opt.describe || opt.description || opt.desc;
|
79327
|
-
const descriptions =
|
80452
|
+
const descriptions = __classPrivateFieldGet4(this, _YargsInstance_usage, "f").getDescriptions();
|
79328
80453
|
if (!Object.prototype.hasOwnProperty.call(descriptions, key) || typeof desc === "string") {
|
79329
80454
|
this.describe(key, desc);
|
79330
80455
|
}
|
@@ -79344,7 +80469,7 @@ var init_yargs_factory = __esm({
|
|
79344
80469
|
argsert("[string|array] [function|boolean|object] [function]", [args, shortCircuit, _parseFn], arguments.length);
|
79345
80470
|
this[kFreeze]();
|
79346
80471
|
if (typeof args === "undefined") {
|
79347
|
-
args =
|
80472
|
+
args = __classPrivateFieldGet4(this, _YargsInstance_processArgs, "f");
|
79348
80473
|
}
|
79349
80474
|
if (typeof shortCircuit === "object") {
|
79350
80475
|
__classPrivateFieldSet2(this, _YargsInstance_parseContext, shortCircuit, "f");
|
@@ -79356,19 +80481,19 @@ var init_yargs_factory = __esm({
|
|
79356
80481
|
}
|
79357
80482
|
if (!shortCircuit)
|
79358
80483
|
__classPrivateFieldSet2(this, _YargsInstance_processArgs, args, "f");
|
79359
|
-
if (
|
80484
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f"))
|
79360
80485
|
__classPrivateFieldSet2(this, _YargsInstance_exitProcess, false, "f");
|
79361
80486
|
const parsed = this[kRunYargsParserAndExecuteCommands](args, !!shortCircuit);
|
79362
80487
|
const tmpParsed = this.parsed;
|
79363
|
-
|
80488
|
+
__classPrivateFieldGet4(this, _YargsInstance_completion, "f").setParsed(this.parsed);
|
79364
80489
|
if (isPromise(parsed)) {
|
79365
80490
|
return parsed.then((argv) => {
|
79366
|
-
if (
|
79367
|
-
|
80491
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f"))
|
80492
|
+
__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f").call(this, __classPrivateFieldGet4(this, _YargsInstance_exitError, "f"), argv, __classPrivateFieldGet4(this, _YargsInstance_output, "f"));
|
79368
80493
|
return argv;
|
79369
80494
|
}).catch((err) => {
|
79370
|
-
if (
|
79371
|
-
|
80495
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f")) {
|
80496
|
+
__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f")(err, this.parsed.argv, __classPrivateFieldGet4(this, _YargsInstance_output, "f"));
|
79372
80497
|
}
|
79373
80498
|
throw err;
|
79374
80499
|
}).finally(() => {
|
@@ -79376,8 +80501,8 @@ var init_yargs_factory = __esm({
|
|
79376
80501
|
this.parsed = tmpParsed;
|
79377
80502
|
});
|
79378
80503
|
} else {
|
79379
|
-
if (
|
79380
|
-
|
80504
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f"))
|
80505
|
+
__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f").call(this, __classPrivateFieldGet4(this, _YargsInstance_exitError, "f"), parsed, __classPrivateFieldGet4(this, _YargsInstance_output, "f"));
|
79381
80506
|
this[kUnfreeze]();
|
79382
80507
|
this.parsed = tmpParsed;
|
79383
80508
|
}
|
@@ -79402,10 +80527,10 @@ var init_yargs_factory = __esm({
|
|
79402
80527
|
pkgConf(key, rootPath) {
|
79403
80528
|
argsert("<string> [string]", [key, rootPath], arguments.length);
|
79404
80529
|
let conf = null;
|
79405
|
-
const obj = this[kPkgUp](rootPath ||
|
80530
|
+
const obj = this[kPkgUp](rootPath || __classPrivateFieldGet4(this, _YargsInstance_cwd, "f"));
|
79406
80531
|
if (obj[key] && typeof obj[key] === "object") {
|
79407
|
-
conf = applyExtends(obj[key], rootPath ||
|
79408
|
-
|
80532
|
+
conf = applyExtends(obj[key], rootPath || __classPrivateFieldGet4(this, _YargsInstance_cwd, "f"), this[kGetParserConfiguration]()["deep-merge-config"] || false, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
80533
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").configObjects = (__classPrivateFieldGet4(this, _YargsInstance_options, "f").configObjects || []).concat(conf);
|
79409
80534
|
}
|
79410
80535
|
return this;
|
79411
80536
|
}
|
@@ -79430,8 +80555,8 @@ var init_yargs_factory = __esm({
|
|
79430
80555
|
return false;
|
79431
80556
|
return supportedOpts.includes(k6);
|
79432
80557
|
});
|
79433
|
-
const fullCommand =
|
79434
|
-
const parseOptions = fullCommand ?
|
80558
|
+
const fullCommand = __classPrivateFieldGet4(this, _YargsInstance_context, "f").fullCommands[__classPrivateFieldGet4(this, _YargsInstance_context, "f").fullCommands.length - 1];
|
80559
|
+
const parseOptions = fullCommand ? __classPrivateFieldGet4(this, _YargsInstance_command, "f").cmdToParseOptions(fullCommand) : {
|
79435
80560
|
array: [],
|
79436
80561
|
alias: {},
|
79437
80562
|
default: {},
|
@@ -79447,7 +80572,7 @@ var init_yargs_factory = __esm({
|
|
79447
80572
|
opts[pk] = parseOption[key];
|
79448
80573
|
}
|
79449
80574
|
});
|
79450
|
-
this.group(key,
|
80575
|
+
this.group(key, __classPrivateFieldGet4(this, _YargsInstance_usage, "f").getPositionalGroupName());
|
79451
80576
|
return this.option(key, opts);
|
79452
80577
|
}
|
79453
80578
|
recommendCommands(recommend = true) {
|
@@ -79463,7 +80588,7 @@ var init_yargs_factory = __esm({
|
|
79463
80588
|
}
|
79464
80589
|
requiresArg(keys) {
|
79465
80590
|
argsert("<array|string|object> [number]", [keys], arguments.length);
|
79466
|
-
if (typeof keys === "string" &&
|
80591
|
+
if (typeof keys === "string" && __classPrivateFieldGet4(this, _YargsInstance_options, "f").narg[keys]) {
|
79467
80592
|
return this;
|
79468
80593
|
} else {
|
79469
80594
|
this[kPopulateParserHintSingleValueDictionary](this.requiresArg.bind(this), "narg", keys, NaN);
|
@@ -79473,31 +80598,31 @@ var init_yargs_factory = __esm({
|
|
79473
80598
|
showCompletionScript($0, cmd) {
|
79474
80599
|
argsert("[string] [string]", [$0, cmd], arguments.length);
|
79475
80600
|
$0 = $0 || this.$0;
|
79476
|
-
|
80601
|
+
__classPrivateFieldGet4(this, _YargsInstance_logger, "f").log(__classPrivateFieldGet4(this, _YargsInstance_completion, "f").generateCompletionScript($0, cmd || __classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f") || "completion"));
|
79477
80602
|
return this;
|
79478
80603
|
}
|
79479
80604
|
showHelp(level) {
|
79480
80605
|
argsert("[string|function]", [level], arguments.length);
|
79481
80606
|
__classPrivateFieldSet2(this, _YargsInstance_hasOutput, true, "f");
|
79482
|
-
if (!
|
80607
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_usage, "f").hasCachedHelpMessage()) {
|
79483
80608
|
if (!this.parsed) {
|
79484
|
-
const parse7 = this[kRunYargsParserAndExecuteCommands](
|
80609
|
+
const parse7 = this[kRunYargsParserAndExecuteCommands](__classPrivateFieldGet4(this, _YargsInstance_processArgs, "f"), void 0, void 0, 0, true);
|
79485
80610
|
if (isPromise(parse7)) {
|
79486
80611
|
parse7.then(() => {
|
79487
|
-
|
80612
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").showHelp(level);
|
79488
80613
|
});
|
79489
80614
|
return this;
|
79490
80615
|
}
|
79491
80616
|
}
|
79492
|
-
const builderResponse =
|
80617
|
+
const builderResponse = __classPrivateFieldGet4(this, _YargsInstance_command, "f").runDefaultBuilderOn(this);
|
79493
80618
|
if (isPromise(builderResponse)) {
|
79494
80619
|
builderResponse.then(() => {
|
79495
|
-
|
80620
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").showHelp(level);
|
79496
80621
|
});
|
79497
80622
|
return this;
|
79498
80623
|
}
|
79499
80624
|
}
|
79500
|
-
|
80625
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").showHelp(level);
|
79501
80626
|
return this;
|
79502
80627
|
}
|
79503
80628
|
scriptName(scriptName) {
|
@@ -79507,12 +80632,12 @@ var init_yargs_factory = __esm({
|
|
79507
80632
|
}
|
79508
80633
|
showHelpOnFail(enabled, message) {
|
79509
80634
|
argsert("[boolean|string] [string]", [enabled, message], arguments.length);
|
79510
|
-
|
80635
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").showHelpOnFail(enabled, message);
|
79511
80636
|
return this;
|
79512
80637
|
}
|
79513
80638
|
showVersion(level) {
|
79514
80639
|
argsert("[string|function]", [level], arguments.length);
|
79515
|
-
|
80640
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").showVersion(level);
|
79516
80641
|
return this;
|
79517
80642
|
}
|
79518
80643
|
skipValidation(keys) {
|
@@ -79543,7 +80668,7 @@ var init_yargs_factory = __esm({
|
|
79543
80668
|
}
|
79544
80669
|
terminalWidth() {
|
79545
80670
|
argsert([], 0);
|
79546
|
-
return
|
80671
|
+
return __classPrivateFieldGet4(this, _YargsInstance_shim, "f").process.stdColumns;
|
79547
80672
|
}
|
79548
80673
|
updateLocale(obj) {
|
79549
80674
|
return this.updateStrings(obj);
|
@@ -79551,20 +80676,20 @@ var init_yargs_factory = __esm({
|
|
79551
80676
|
updateStrings(obj) {
|
79552
80677
|
argsert("<object>", [obj], arguments.length);
|
79553
80678
|
__classPrivateFieldSet2(this, _YargsInstance_detectLocale, false, "f");
|
79554
|
-
|
80679
|
+
__classPrivateFieldGet4(this, _YargsInstance_shim, "f").y18n.updateLocale(obj);
|
79555
80680
|
return this;
|
79556
80681
|
}
|
79557
80682
|
usage(msg, description, builder, handler) {
|
79558
80683
|
argsert("<string|null|undefined> [string|boolean] [function|object] [function]", [msg, description, builder, handler], arguments.length);
|
79559
80684
|
if (description !== void 0) {
|
79560
|
-
assertNotStrictEqual(msg, null,
|
80685
|
+
assertNotStrictEqual(msg, null, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
79561
80686
|
if ((msg || "").match(/^\$0( |$)/)) {
|
79562
80687
|
return this.command(msg, description, builder, handler);
|
79563
80688
|
} else {
|
79564
80689
|
throw new YError(".usage() description must start with $0 if being used as alias for .command()");
|
79565
80690
|
}
|
79566
80691
|
} else {
|
79567
|
-
|
80692
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").usage(msg);
|
79568
80693
|
return this;
|
79569
80694
|
}
|
79570
80695
|
}
|
@@ -79576,9 +80701,9 @@ var init_yargs_factory = __esm({
|
|
79576
80701
|
version(opt, msg, ver) {
|
79577
80702
|
const defaultVersionOpt = "version";
|
79578
80703
|
argsert("[boolean|string] [string] [string]", [opt, msg, ver], arguments.length);
|
79579
|
-
if (
|
79580
|
-
this[kDeleteFromParserHintObject](
|
79581
|
-
|
80704
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_versionOpt, "f")) {
|
80705
|
+
this[kDeleteFromParserHintObject](__classPrivateFieldGet4(this, _YargsInstance_versionOpt, "f"));
|
80706
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").version(void 0);
|
79582
80707
|
__classPrivateFieldSet2(this, _YargsInstance_versionOpt, null, "f");
|
79583
80708
|
}
|
79584
80709
|
if (arguments.length === 0) {
|
@@ -79595,15 +80720,15 @@ var init_yargs_factory = __esm({
|
|
79595
80720
|
msg = void 0;
|
79596
80721
|
}
|
79597
80722
|
__classPrivateFieldSet2(this, _YargsInstance_versionOpt, typeof opt === "string" ? opt : defaultVersionOpt, "f");
|
79598
|
-
msg = msg ||
|
79599
|
-
|
79600
|
-
this.boolean(
|
79601
|
-
this.describe(
|
80723
|
+
msg = msg || __classPrivateFieldGet4(this, _YargsInstance_usage, "f").deferY18nLookup("Show version number");
|
80724
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").version(ver || void 0);
|
80725
|
+
this.boolean(__classPrivateFieldGet4(this, _YargsInstance_versionOpt, "f"));
|
80726
|
+
this.describe(__classPrivateFieldGet4(this, _YargsInstance_versionOpt, "f"), msg);
|
79602
80727
|
return this;
|
79603
80728
|
}
|
79604
80729
|
wrap(cols) {
|
79605
80730
|
argsert("<number|null|undefined>", [cols], arguments.length);
|
79606
|
-
|
80731
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").wrap(cols);
|
79607
80732
|
return this;
|
79608
80733
|
}
|
79609
80734
|
[(_YargsInstance_command = /* @__PURE__ */ new WeakMap(), _YargsInstance_cwd = /* @__PURE__ */ new WeakMap(), _YargsInstance_context = /* @__PURE__ */ new WeakMap(), _YargsInstance_completion = /* @__PURE__ */ new WeakMap(), _YargsInstance_completionCommand = /* @__PURE__ */ new WeakMap(), _YargsInstance_defaultShowHiddenOpt = /* @__PURE__ */ new WeakMap(), _YargsInstance_exitError = /* @__PURE__ */ new WeakMap(), _YargsInstance_detectLocale = /* @__PURE__ */ new WeakMap(), _YargsInstance_emittedWarnings = /* @__PURE__ */ new WeakMap(), _YargsInstance_exitProcess = /* @__PURE__ */ new WeakMap(), _YargsInstance_frozens = /* @__PURE__ */ new WeakMap(), _YargsInstance_globalMiddleware = /* @__PURE__ */ new WeakMap(), _YargsInstance_groups = /* @__PURE__ */ new WeakMap(), _YargsInstance_hasOutput = /* @__PURE__ */ new WeakMap(), _YargsInstance_helpOpt = /* @__PURE__ */ new WeakMap(), _YargsInstance_isGlobalContext = /* @__PURE__ */ new WeakMap(), _YargsInstance_logger = /* @__PURE__ */ new WeakMap(), _YargsInstance_output = /* @__PURE__ */ new WeakMap(), _YargsInstance_options = /* @__PURE__ */ new WeakMap(), _YargsInstance_parentRequire = /* @__PURE__ */ new WeakMap(), _YargsInstance_parserConfig = /* @__PURE__ */ new WeakMap(), _YargsInstance_parseFn = /* @__PURE__ */ new WeakMap(), _YargsInstance_parseContext = /* @__PURE__ */ new WeakMap(), _YargsInstance_pkgs = /* @__PURE__ */ new WeakMap(), _YargsInstance_preservedGroups = /* @__PURE__ */ new WeakMap(), _YargsInstance_processArgs = /* @__PURE__ */ new WeakMap(), _YargsInstance_recommendCommands = /* @__PURE__ */ new WeakMap(), _YargsInstance_shim = /* @__PURE__ */ new WeakMap(), _YargsInstance_strict = /* @__PURE__ */ new WeakMap(), _YargsInstance_strictCommands = /* @__PURE__ */ new WeakMap(), _YargsInstance_strictOptions = /* @__PURE__ */ new WeakMap(), _YargsInstance_usage = /* @__PURE__ */ new WeakMap(), _YargsInstance_usageConfig = /* @__PURE__ */ new WeakMap(), _YargsInstance_versionOpt = /* @__PURE__ */ new WeakMap(), _YargsInstance_validation = /* @__PURE__ */ new WeakMap(), kCopyDoubleDash)](argv) {
|
@@ -79622,25 +80747,25 @@ var init_yargs_factory = __esm({
|
|
79622
80747
|
if (!this[kHasParseCallback]())
|
79623
80748
|
console.log(...args);
|
79624
80749
|
__classPrivateFieldSet2(this, _YargsInstance_hasOutput, true, "f");
|
79625
|
-
if (
|
79626
|
-
__classPrivateFieldSet2(this, _YargsInstance_output,
|
79627
|
-
__classPrivateFieldSet2(this, _YargsInstance_output,
|
80750
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_output, "f").length)
|
80751
|
+
__classPrivateFieldSet2(this, _YargsInstance_output, __classPrivateFieldGet4(this, _YargsInstance_output, "f") + "\n", "f");
|
80752
|
+
__classPrivateFieldSet2(this, _YargsInstance_output, __classPrivateFieldGet4(this, _YargsInstance_output, "f") + args.join(" "), "f");
|
79628
80753
|
}, "log"),
|
79629
80754
|
error: /* @__PURE__ */ __name((...args) => {
|
79630
80755
|
if (!this[kHasParseCallback]())
|
79631
80756
|
console.error(...args);
|
79632
80757
|
__classPrivateFieldSet2(this, _YargsInstance_hasOutput, true, "f");
|
79633
|
-
if (
|
79634
|
-
__classPrivateFieldSet2(this, _YargsInstance_output,
|
79635
|
-
__classPrivateFieldSet2(this, _YargsInstance_output,
|
80758
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_output, "f").length)
|
80759
|
+
__classPrivateFieldSet2(this, _YargsInstance_output, __classPrivateFieldGet4(this, _YargsInstance_output, "f") + "\n", "f");
|
80760
|
+
__classPrivateFieldSet2(this, _YargsInstance_output, __classPrivateFieldGet4(this, _YargsInstance_output, "f") + args.join(" "), "f");
|
79636
80761
|
}, "error")
|
79637
80762
|
};
|
79638
80763
|
}
|
79639
80764
|
[kDeleteFromParserHintObject](optionKey) {
|
79640
|
-
objectKeys(
|
80765
|
+
objectKeys(__classPrivateFieldGet4(this, _YargsInstance_options, "f")).forEach((hintKey) => {
|
79641
80766
|
if (/* @__PURE__ */ ((key) => key === "configObjects")(hintKey))
|
79642
80767
|
return;
|
79643
|
-
const hint =
|
80768
|
+
const hint = __classPrivateFieldGet4(this, _YargsInstance_options, "f")[hintKey];
|
79644
80769
|
if (Array.isArray(hint)) {
|
79645
80770
|
if (hint.includes(optionKey))
|
79646
80771
|
hint.splice(hint.indexOf(optionKey), 1);
|
@@ -79648,63 +80773,63 @@ var init_yargs_factory = __esm({
|
|
79648
80773
|
delete hint[optionKey];
|
79649
80774
|
}
|
79650
80775
|
});
|
79651
|
-
delete
|
80776
|
+
delete __classPrivateFieldGet4(this, _YargsInstance_usage, "f").getDescriptions()[optionKey];
|
79652
80777
|
}
|
79653
80778
|
[kEmitWarning](warning, type, deduplicationId) {
|
79654
|
-
if (!
|
79655
|
-
|
79656
|
-
|
80779
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_emittedWarnings, "f")[deduplicationId]) {
|
80780
|
+
__classPrivateFieldGet4(this, _YargsInstance_shim, "f").process.emitWarning(warning, type);
|
80781
|
+
__classPrivateFieldGet4(this, _YargsInstance_emittedWarnings, "f")[deduplicationId] = true;
|
79657
80782
|
}
|
79658
80783
|
}
|
79659
80784
|
[kFreeze]() {
|
79660
|
-
|
79661
|
-
options:
|
79662
|
-
configObjects:
|
79663
|
-
exitProcess:
|
79664
|
-
groups:
|
79665
|
-
strict:
|
79666
|
-
strictCommands:
|
79667
|
-
strictOptions:
|
79668
|
-
completionCommand:
|
79669
|
-
output:
|
79670
|
-
exitError:
|
79671
|
-
hasOutput:
|
80785
|
+
__classPrivateFieldGet4(this, _YargsInstance_frozens, "f").push({
|
80786
|
+
options: __classPrivateFieldGet4(this, _YargsInstance_options, "f"),
|
80787
|
+
configObjects: __classPrivateFieldGet4(this, _YargsInstance_options, "f").configObjects.slice(0),
|
80788
|
+
exitProcess: __classPrivateFieldGet4(this, _YargsInstance_exitProcess, "f"),
|
80789
|
+
groups: __classPrivateFieldGet4(this, _YargsInstance_groups, "f"),
|
80790
|
+
strict: __classPrivateFieldGet4(this, _YargsInstance_strict, "f"),
|
80791
|
+
strictCommands: __classPrivateFieldGet4(this, _YargsInstance_strictCommands, "f"),
|
80792
|
+
strictOptions: __classPrivateFieldGet4(this, _YargsInstance_strictOptions, "f"),
|
80793
|
+
completionCommand: __classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f"),
|
80794
|
+
output: __classPrivateFieldGet4(this, _YargsInstance_output, "f"),
|
80795
|
+
exitError: __classPrivateFieldGet4(this, _YargsInstance_exitError, "f"),
|
80796
|
+
hasOutput: __classPrivateFieldGet4(this, _YargsInstance_hasOutput, "f"),
|
79672
80797
|
parsed: this.parsed,
|
79673
|
-
parseFn:
|
79674
|
-
parseContext:
|
80798
|
+
parseFn: __classPrivateFieldGet4(this, _YargsInstance_parseFn, "f"),
|
80799
|
+
parseContext: __classPrivateFieldGet4(this, _YargsInstance_parseContext, "f")
|
79675
80800
|
});
|
79676
|
-
|
79677
|
-
|
79678
|
-
|
79679
|
-
|
80801
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").freeze();
|
80802
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").freeze();
|
80803
|
+
__classPrivateFieldGet4(this, _YargsInstance_command, "f").freeze();
|
80804
|
+
__classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").freeze();
|
79680
80805
|
}
|
79681
80806
|
[kGetDollarZero]() {
|
79682
80807
|
let $0 = "";
|
79683
80808
|
let default$0;
|
79684
|
-
if (/\b(node|iojs|electron)(\.exe)?$/.test(
|
79685
|
-
default$0 =
|
80809
|
+
if (/\b(node|iojs|electron)(\.exe)?$/.test(__classPrivateFieldGet4(this, _YargsInstance_shim, "f").process.argv()[0])) {
|
80810
|
+
default$0 = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").process.argv().slice(1, 2);
|
79686
80811
|
} else {
|
79687
|
-
default$0 =
|
80812
|
+
default$0 = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").process.argv().slice(0, 1);
|
79688
80813
|
}
|
79689
80814
|
$0 = default$0.map((x6) => {
|
79690
|
-
const b6 = this[kRebase](
|
80815
|
+
const b6 = this[kRebase](__classPrivateFieldGet4(this, _YargsInstance_cwd, "f"), x6);
|
79691
80816
|
return x6.match(/^(\/|([a-zA-Z]:)?\\)/) && b6.length < x6.length ? b6 : x6;
|
79692
80817
|
}).join(" ").trim();
|
79693
|
-
if (
|
79694
|
-
$0 =
|
80818
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_shim, "f").getEnv("_") && __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getProcessArgvBin() === __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getEnv("_")) {
|
80819
|
+
$0 = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getEnv("_").replace(`${__classPrivateFieldGet4(this, _YargsInstance_shim, "f").path.dirname(__classPrivateFieldGet4(this, _YargsInstance_shim, "f").process.execPath())}/`, "");
|
79695
80820
|
}
|
79696
80821
|
return $0;
|
79697
80822
|
}
|
79698
80823
|
[kGetParserConfiguration]() {
|
79699
|
-
return
|
80824
|
+
return __classPrivateFieldGet4(this, _YargsInstance_parserConfig, "f");
|
79700
80825
|
}
|
79701
80826
|
[kGetUsageConfiguration]() {
|
79702
|
-
return
|
80827
|
+
return __classPrivateFieldGet4(this, _YargsInstance_usageConfig, "f");
|
79703
80828
|
}
|
79704
80829
|
[kGuessLocale]() {
|
79705
|
-
if (!
|
80830
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_detectLocale, "f"))
|
79706
80831
|
return;
|
79707
|
-
const locale =
|
80832
|
+
const locale = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getEnv("LC_ALL") || __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getEnv("LC_MESSAGES") || __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getEnv("LANG") || __classPrivateFieldGet4(this, _YargsInstance_shim, "f").getEnv("LANGUAGE") || "en_US";
|
79708
80833
|
this.locale(locale.replace(/[.:].*/, ""));
|
79709
80834
|
}
|
79710
80835
|
[kGuessVersion]() {
|
@@ -79714,7 +80839,7 @@ var init_yargs_factory = __esm({
|
|
79714
80839
|
[kParsePositionalNumbers](argv) {
|
79715
80840
|
const args = argv["--"] ? argv["--"] : argv._;
|
79716
80841
|
for (let i5 = 0, arg; (arg = args[i5]) !== void 0; i5++) {
|
79717
|
-
if (
|
80842
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_shim, "f").Parser.looksLikeNumber(arg) && Number.isSafeInteger(Math.floor(parseFloat(`${arg}`)))) {
|
79718
80843
|
args[i5] = Number(arg);
|
79719
80844
|
}
|
79720
80845
|
}
|
@@ -79722,43 +80847,43 @@ var init_yargs_factory = __esm({
|
|
79722
80847
|
}
|
79723
80848
|
[kPkgUp](rootPath) {
|
79724
80849
|
const npath = rootPath || "*";
|
79725
|
-
if (
|
79726
|
-
return
|
80850
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_pkgs, "f")[npath])
|
80851
|
+
return __classPrivateFieldGet4(this, _YargsInstance_pkgs, "f")[npath];
|
79727
80852
|
let obj = {};
|
79728
80853
|
try {
|
79729
|
-
let startDir = rootPath ||
|
79730
|
-
if (!rootPath &&
|
79731
|
-
startDir =
|
80854
|
+
let startDir = rootPath || __classPrivateFieldGet4(this, _YargsInstance_shim, "f").mainFilename;
|
80855
|
+
if (!rootPath && __classPrivateFieldGet4(this, _YargsInstance_shim, "f").path.extname(startDir)) {
|
80856
|
+
startDir = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").path.dirname(startDir);
|
79732
80857
|
}
|
79733
|
-
const pkgJsonPath =
|
80858
|
+
const pkgJsonPath = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").findUp(startDir, (dir, names) => {
|
79734
80859
|
if (names.includes("package.json")) {
|
79735
80860
|
return "package.json";
|
79736
80861
|
} else {
|
79737
80862
|
return void 0;
|
79738
80863
|
}
|
79739
80864
|
});
|
79740
|
-
assertNotStrictEqual(pkgJsonPath, void 0,
|
79741
|
-
obj = JSON.parse(
|
80865
|
+
assertNotStrictEqual(pkgJsonPath, void 0, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
80866
|
+
obj = JSON.parse(__classPrivateFieldGet4(this, _YargsInstance_shim, "f").readFileSync(pkgJsonPath, "utf8"));
|
79742
80867
|
} catch (_noop) {
|
79743
80868
|
}
|
79744
|
-
|
79745
|
-
return
|
80869
|
+
__classPrivateFieldGet4(this, _YargsInstance_pkgs, "f")[npath] = obj || {};
|
80870
|
+
return __classPrivateFieldGet4(this, _YargsInstance_pkgs, "f")[npath];
|
79746
80871
|
}
|
79747
80872
|
[kPopulateParserHintArray](type, keys) {
|
79748
80873
|
keys = [].concat(keys);
|
79749
80874
|
keys.forEach((key) => {
|
79750
80875
|
key = this[kSanitizeKey](key);
|
79751
|
-
|
80876
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f")[type].push(key);
|
79752
80877
|
});
|
79753
80878
|
}
|
79754
80879
|
[kPopulateParserHintSingleValueDictionary](builder, type, key, value) {
|
79755
80880
|
this[kPopulateParserHintDictionary](builder, type, key, value, (type2, key2, value2) => {
|
79756
|
-
|
80881
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f")[type2][key2] = value2;
|
79757
80882
|
});
|
79758
80883
|
}
|
79759
80884
|
[kPopulateParserHintArrayDictionary](builder, type, key, value) {
|
79760
80885
|
this[kPopulateParserHintDictionary](builder, type, key, value, (type2, key2, value2) => {
|
79761
|
-
|
80886
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f")[type2][key2] = (__classPrivateFieldGet4(this, _YargsInstance_options, "f")[type2][key2] || []).concat(value2);
|
79762
80887
|
});
|
79763
80888
|
}
|
79764
80889
|
[kPopulateParserHintDictionary](builder, type, key, value, singleKeyHandler) {
|
@@ -79785,8 +80910,8 @@ var init_yargs_factory = __esm({
|
|
79785
80910
|
}
|
79786
80911
|
[kUnfreeze]() {
|
79787
80912
|
var _a4, _b2, _c3, _d2, _e2, _f, _g, _h, _j, _k, _l2, _m3;
|
79788
|
-
const frozen =
|
79789
|
-
assertNotStrictEqual(frozen, void 0,
|
80913
|
+
const frozen = __classPrivateFieldGet4(this, _YargsInstance_frozens, "f").pop();
|
80914
|
+
assertNotStrictEqual(frozen, void 0, __classPrivateFieldGet4(this, _YargsInstance_shim, "f"));
|
79790
80915
|
let configObjects;
|
79791
80916
|
_a4 = this, _b2 = this, _c3 = this, _d2 = this, _e2 = this, _f = this, _g = this, _h = this, _j = this, _k = this, _l2 = this, _m3 = this, {
|
79792
80917
|
options: { set value(_o) {
|
@@ -79828,11 +80953,11 @@ var init_yargs_factory = __esm({
|
|
79828
80953
|
__classPrivateFieldSet2(_m3, _YargsInstance_parseContext, _o, "f");
|
79829
80954
|
} }.value
|
79830
80955
|
} = frozen;
|
79831
|
-
|
79832
|
-
|
79833
|
-
|
79834
|
-
|
79835
|
-
|
80956
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").configObjects = configObjects;
|
80957
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").unfreeze();
|
80958
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").unfreeze();
|
80959
|
+
__classPrivateFieldGet4(this, _YargsInstance_command, "f").unfreeze();
|
80960
|
+
__classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").unfreeze();
|
79836
80961
|
}
|
79837
80962
|
[kValidateAsync](validation2, argv) {
|
79838
80963
|
return maybeAsyncResult(argv, (result) => {
|
@@ -79861,31 +80986,31 @@ var init_yargs_factory = __esm({
|
|
79861
80986
|
};
|
79862
80987
|
}
|
79863
80988
|
[kGetCommandInstance]() {
|
79864
|
-
return
|
80989
|
+
return __classPrivateFieldGet4(this, _YargsInstance_command, "f");
|
79865
80990
|
}
|
79866
80991
|
[kGetContext]() {
|
79867
|
-
return
|
80992
|
+
return __classPrivateFieldGet4(this, _YargsInstance_context, "f");
|
79868
80993
|
}
|
79869
80994
|
[kGetHasOutput]() {
|
79870
|
-
return
|
80995
|
+
return __classPrivateFieldGet4(this, _YargsInstance_hasOutput, "f");
|
79871
80996
|
}
|
79872
80997
|
[kGetLoggerInstance]() {
|
79873
|
-
return
|
80998
|
+
return __classPrivateFieldGet4(this, _YargsInstance_logger, "f");
|
79874
80999
|
}
|
79875
81000
|
[kGetParseContext]() {
|
79876
|
-
return
|
81001
|
+
return __classPrivateFieldGet4(this, _YargsInstance_parseContext, "f") || {};
|
79877
81002
|
}
|
79878
81003
|
[kGetUsageInstance]() {
|
79879
|
-
return
|
81004
|
+
return __classPrivateFieldGet4(this, _YargsInstance_usage, "f");
|
79880
81005
|
}
|
79881
81006
|
[kGetValidationInstance]() {
|
79882
|
-
return
|
81007
|
+
return __classPrivateFieldGet4(this, _YargsInstance_validation, "f");
|
79883
81008
|
}
|
79884
81009
|
[kHasParseCallback]() {
|
79885
|
-
return !!
|
81010
|
+
return !!__classPrivateFieldGet4(this, _YargsInstance_parseFn, "f");
|
79886
81011
|
}
|
79887
81012
|
[kIsGlobalContext]() {
|
79888
|
-
return
|
81013
|
+
return __classPrivateFieldGet4(this, _YargsInstance_isGlobalContext, "f");
|
79889
81014
|
}
|
79890
81015
|
[kPostProcess](argv, populateDoubleDash, calledFromCommand, runGlobalMiddleware) {
|
79891
81016
|
if (calledFromCommand)
|
@@ -79900,15 +81025,15 @@ var init_yargs_factory = __esm({
|
|
79900
81025
|
argv = this[kParsePositionalNumbers](argv);
|
79901
81026
|
}
|
79902
81027
|
if (runGlobalMiddleware) {
|
79903
|
-
argv = applyMiddleware(argv, this,
|
81028
|
+
argv = applyMiddleware(argv, this, __classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").getMiddleware(), false);
|
79904
81029
|
}
|
79905
81030
|
return argv;
|
79906
81031
|
}
|
79907
81032
|
[kReset](aliases2 = {}) {
|
79908
|
-
__classPrivateFieldSet2(this, _YargsInstance_options,
|
81033
|
+
__classPrivateFieldSet2(this, _YargsInstance_options, __classPrivateFieldGet4(this, _YargsInstance_options, "f") || {}, "f");
|
79909
81034
|
const tmpOptions = {};
|
79910
|
-
tmpOptions.local =
|
79911
|
-
tmpOptions.configObjects =
|
81035
|
+
tmpOptions.local = __classPrivateFieldGet4(this, _YargsInstance_options, "f").local || [];
|
81036
|
+
tmpOptions.configObjects = __classPrivateFieldGet4(this, _YargsInstance_options, "f").configObjects || [];
|
79912
81037
|
const localLookup = {};
|
79913
81038
|
tmpOptions.local.forEach((l6) => {
|
79914
81039
|
localLookup[l6] = true;
|
@@ -79916,8 +81041,8 @@ var init_yargs_factory = __esm({
|
|
79916
81041
|
localLookup[a5] = true;
|
79917
81042
|
});
|
79918
81043
|
});
|
79919
|
-
Object.assign(
|
79920
|
-
const keys =
|
81044
|
+
Object.assign(__classPrivateFieldGet4(this, _YargsInstance_preservedGroups, "f"), Object.keys(__classPrivateFieldGet4(this, _YargsInstance_groups, "f")).reduce((acc, groupName) => {
|
81045
|
+
const keys = __classPrivateFieldGet4(this, _YargsInstance_groups, "f")[groupName].filter((key) => !(key in localLookup));
|
79921
81046
|
if (keys.length > 0) {
|
79922
81047
|
acc[groupName] = keys;
|
79923
81048
|
}
|
@@ -79947,19 +81072,19 @@ var init_yargs_factory = __esm({
|
|
79947
81072
|
"deprecatedOptions"
|
79948
81073
|
];
|
79949
81074
|
arrayOptions.forEach((k6) => {
|
79950
|
-
tmpOptions[k6] = (
|
81075
|
+
tmpOptions[k6] = (__classPrivateFieldGet4(this, _YargsInstance_options, "f")[k6] || []).filter((k7) => !localLookup[k7]);
|
79951
81076
|
});
|
79952
81077
|
objectOptions.forEach((k6) => {
|
79953
|
-
tmpOptions[k6] = objFilter(
|
81078
|
+
tmpOptions[k6] = objFilter(__classPrivateFieldGet4(this, _YargsInstance_options, "f")[k6], (k7) => !localLookup[k7]);
|
79954
81079
|
});
|
79955
|
-
tmpOptions.envPrefix =
|
81080
|
+
tmpOptions.envPrefix = __classPrivateFieldGet4(this, _YargsInstance_options, "f").envPrefix;
|
79956
81081
|
__classPrivateFieldSet2(this, _YargsInstance_options, tmpOptions, "f");
|
79957
|
-
__classPrivateFieldSet2(this, _YargsInstance_usage,
|
79958
|
-
__classPrivateFieldSet2(this, _YargsInstance_validation,
|
79959
|
-
__classPrivateFieldSet2(this, _YargsInstance_command,
|
79960
|
-
if (!
|
79961
|
-
__classPrivateFieldSet2(this, _YargsInstance_completion, completion(this,
|
79962
|
-
|
81082
|
+
__classPrivateFieldSet2(this, _YargsInstance_usage, __classPrivateFieldGet4(this, _YargsInstance_usage, "f") ? __classPrivateFieldGet4(this, _YargsInstance_usage, "f").reset(localLookup) : usage(this, __classPrivateFieldGet4(this, _YargsInstance_shim, "f")), "f");
|
81083
|
+
__classPrivateFieldSet2(this, _YargsInstance_validation, __classPrivateFieldGet4(this, _YargsInstance_validation, "f") ? __classPrivateFieldGet4(this, _YargsInstance_validation, "f").reset(localLookup) : validation(this, __classPrivateFieldGet4(this, _YargsInstance_usage, "f"), __classPrivateFieldGet4(this, _YargsInstance_shim, "f")), "f");
|
81084
|
+
__classPrivateFieldSet2(this, _YargsInstance_command, __classPrivateFieldGet4(this, _YargsInstance_command, "f") ? __classPrivateFieldGet4(this, _YargsInstance_command, "f").reset() : command(__classPrivateFieldGet4(this, _YargsInstance_usage, "f"), __classPrivateFieldGet4(this, _YargsInstance_validation, "f"), __classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f"), __classPrivateFieldGet4(this, _YargsInstance_shim, "f")), "f");
|
81085
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_completion, "f"))
|
81086
|
+
__classPrivateFieldSet2(this, _YargsInstance_completion, completion(this, __classPrivateFieldGet4(this, _YargsInstance_usage, "f"), __classPrivateFieldGet4(this, _YargsInstance_command, "f"), __classPrivateFieldGet4(this, _YargsInstance_shim, "f")), "f");
|
81087
|
+
__classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").reset();
|
79963
81088
|
__classPrivateFieldSet2(this, _YargsInstance_completionCommand, null, "f");
|
79964
81089
|
__classPrivateFieldSet2(this, _YargsInstance_output, "", "f");
|
79965
81090
|
__classPrivateFieldSet2(this, _YargsInstance_exitError, null, "f");
|
@@ -79968,113 +81093,113 @@ var init_yargs_factory = __esm({
|
|
79968
81093
|
return this;
|
79969
81094
|
}
|
79970
81095
|
[kRebase](base, dir) {
|
79971
|
-
return
|
81096
|
+
return __classPrivateFieldGet4(this, _YargsInstance_shim, "f").path.relative(base, dir);
|
79972
81097
|
}
|
79973
81098
|
[kRunYargsParserAndExecuteCommands](args, shortCircuit, calledFromCommand, commandIndex = 0, helpOnly = false) {
|
79974
81099
|
let skipValidation = !!calledFromCommand || helpOnly;
|
79975
|
-
args = args ||
|
79976
|
-
|
79977
|
-
|
79978
|
-
const populateDoubleDash = !!
|
79979
|
-
const config = Object.assign({},
|
81100
|
+
args = args || __classPrivateFieldGet4(this, _YargsInstance_processArgs, "f");
|
81101
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").__ = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").y18n.__;
|
81102
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").configuration = this[kGetParserConfiguration]();
|
81103
|
+
const populateDoubleDash = !!__classPrivateFieldGet4(this, _YargsInstance_options, "f").configuration["populate--"];
|
81104
|
+
const config = Object.assign({}, __classPrivateFieldGet4(this, _YargsInstance_options, "f").configuration, {
|
79980
81105
|
"populate--": true
|
79981
81106
|
});
|
79982
|
-
const parsed =
|
81107
|
+
const parsed = __classPrivateFieldGet4(this, _YargsInstance_shim, "f").Parser.detailed(args, Object.assign({}, __classPrivateFieldGet4(this, _YargsInstance_options, "f"), {
|
79983
81108
|
configuration: { "parse-positional-numbers": false, ...config }
|
79984
81109
|
}));
|
79985
|
-
const argv = Object.assign(parsed.argv,
|
81110
|
+
const argv = Object.assign(parsed.argv, __classPrivateFieldGet4(this, _YargsInstance_parseContext, "f"));
|
79986
81111
|
let argvPromise = void 0;
|
79987
81112
|
const aliases2 = parsed.aliases;
|
79988
81113
|
let helpOptSet = false;
|
79989
81114
|
let versionOptSet = false;
|
79990
81115
|
Object.keys(argv).forEach((key) => {
|
79991
|
-
if (key ===
|
81116
|
+
if (key === __classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f") && argv[key]) {
|
79992
81117
|
helpOptSet = true;
|
79993
|
-
} else if (key ===
|
81118
|
+
} else if (key === __classPrivateFieldGet4(this, _YargsInstance_versionOpt, "f") && argv[key]) {
|
79994
81119
|
versionOptSet = true;
|
79995
81120
|
}
|
79996
81121
|
});
|
79997
81122
|
argv.$0 = this.$0;
|
79998
81123
|
this.parsed = parsed;
|
79999
81124
|
if (commandIndex === 0) {
|
80000
|
-
|
81125
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").clearCachedHelpMessage();
|
80001
81126
|
}
|
80002
81127
|
try {
|
80003
81128
|
this[kGuessLocale]();
|
80004
81129
|
if (shortCircuit) {
|
80005
81130
|
return this[kPostProcess](argv, populateDoubleDash, !!calledFromCommand, false);
|
80006
81131
|
}
|
80007
|
-
if (
|
80008
|
-
const helpCmds = [
|
81132
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f")) {
|
81133
|
+
const helpCmds = [__classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f")].concat(aliases2[__classPrivateFieldGet4(this, _YargsInstance_helpOpt, "f")] || []).filter((k6) => k6.length > 1);
|
80009
81134
|
if (helpCmds.includes("" + argv._[argv._.length - 1])) {
|
80010
81135
|
argv._.pop();
|
80011
81136
|
helpOptSet = true;
|
80012
81137
|
}
|
80013
81138
|
}
|
80014
81139
|
__classPrivateFieldSet2(this, _YargsInstance_isGlobalContext, false, "f");
|
80015
|
-
const handlerKeys =
|
80016
|
-
const requestCompletions =
|
81140
|
+
const handlerKeys = __classPrivateFieldGet4(this, _YargsInstance_command, "f").getCommands();
|
81141
|
+
const requestCompletions = __classPrivateFieldGet4(this, _YargsInstance_completion, "f").completionKey in argv;
|
80017
81142
|
const skipRecommendation = helpOptSet || requestCompletions || helpOnly;
|
80018
81143
|
if (argv._.length) {
|
80019
81144
|
if (handlerKeys.length) {
|
80020
81145
|
let firstUnknownCommand;
|
80021
81146
|
for (let i5 = commandIndex || 0, cmd; argv._[i5] !== void 0; i5++) {
|
80022
81147
|
cmd = String(argv._[i5]);
|
80023
|
-
if (handlerKeys.includes(cmd) && cmd !==
|
80024
|
-
const innerArgv =
|
81148
|
+
if (handlerKeys.includes(cmd) && cmd !== __classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f")) {
|
81149
|
+
const innerArgv = __classPrivateFieldGet4(this, _YargsInstance_command, "f").runCommand(cmd, this, parsed, i5 + 1, helpOnly, helpOptSet || versionOptSet || helpOnly);
|
80025
81150
|
return this[kPostProcess](innerArgv, populateDoubleDash, !!calledFromCommand, false);
|
80026
|
-
} else if (!firstUnknownCommand && cmd !==
|
81151
|
+
} else if (!firstUnknownCommand && cmd !== __classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f")) {
|
80027
81152
|
firstUnknownCommand = cmd;
|
80028
81153
|
break;
|
80029
81154
|
}
|
80030
81155
|
}
|
80031
|
-
if (!
|
80032
|
-
|
81156
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_command, "f").hasDefaultCommand() && __classPrivateFieldGet4(this, _YargsInstance_recommendCommands, "f") && firstUnknownCommand && !skipRecommendation) {
|
81157
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").recommendCommands(firstUnknownCommand, handlerKeys);
|
80033
81158
|
}
|
80034
81159
|
}
|
80035
|
-
if (
|
80036
|
-
if (
|
81160
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f") && argv._.includes(__classPrivateFieldGet4(this, _YargsInstance_completionCommand, "f")) && !requestCompletions) {
|
81161
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_exitProcess, "f"))
|
80037
81162
|
setBlocking(true);
|
80038
81163
|
this.showCompletionScript();
|
80039
81164
|
this.exit(0);
|
80040
81165
|
}
|
80041
81166
|
}
|
80042
|
-
if (
|
80043
|
-
const innerArgv =
|
81167
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_command, "f").hasDefaultCommand() && !skipRecommendation) {
|
81168
|
+
const innerArgv = __classPrivateFieldGet4(this, _YargsInstance_command, "f").runCommand(null, this, parsed, 0, helpOnly, helpOptSet || versionOptSet || helpOnly);
|
80044
81169
|
return this[kPostProcess](innerArgv, populateDoubleDash, !!calledFromCommand, false);
|
80045
81170
|
}
|
80046
81171
|
if (requestCompletions) {
|
80047
|
-
if (
|
81172
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_exitProcess, "f"))
|
80048
81173
|
setBlocking(true);
|
80049
81174
|
args = [].concat(args);
|
80050
|
-
const completionArgs = args.slice(args.indexOf(`--${
|
80051
|
-
|
81175
|
+
const completionArgs = args.slice(args.indexOf(`--${__classPrivateFieldGet4(this, _YargsInstance_completion, "f").completionKey}`) + 1);
|
81176
|
+
__classPrivateFieldGet4(this, _YargsInstance_completion, "f").getCompletion(completionArgs, (err, completions) => {
|
80052
81177
|
if (err)
|
80053
81178
|
throw new YError(err.message);
|
80054
81179
|
(completions || []).forEach((completion2) => {
|
80055
|
-
|
81180
|
+
__classPrivateFieldGet4(this, _YargsInstance_logger, "f").log(completion2);
|
80056
81181
|
});
|
80057
81182
|
this.exit(0);
|
80058
81183
|
});
|
80059
81184
|
return this[kPostProcess](argv, !populateDoubleDash, !!calledFromCommand, false);
|
80060
81185
|
}
|
80061
|
-
if (!
|
81186
|
+
if (!__classPrivateFieldGet4(this, _YargsInstance_hasOutput, "f")) {
|
80062
81187
|
if (helpOptSet) {
|
80063
|
-
if (
|
81188
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_exitProcess, "f"))
|
80064
81189
|
setBlocking(true);
|
80065
81190
|
skipValidation = true;
|
80066
81191
|
this.showHelp("log");
|
80067
81192
|
this.exit(0);
|
80068
81193
|
} else if (versionOptSet) {
|
80069
|
-
if (
|
81194
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_exitProcess, "f"))
|
80070
81195
|
setBlocking(true);
|
80071
81196
|
skipValidation = true;
|
80072
|
-
|
81197
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").showVersion("log");
|
80073
81198
|
this.exit(0);
|
80074
81199
|
}
|
80075
81200
|
}
|
80076
|
-
if (!skipValidation &&
|
80077
|
-
skipValidation = Object.keys(argv).some((key) =>
|
81201
|
+
if (!skipValidation && __classPrivateFieldGet4(this, _YargsInstance_options, "f").skipValidation.length > 0) {
|
81202
|
+
skipValidation = Object.keys(argv).some((key) => __classPrivateFieldGet4(this, _YargsInstance_options, "f").skipValidation.indexOf(key) >= 0 && argv[key] === true);
|
80078
81203
|
}
|
80079
81204
|
if (!skipValidation) {
|
80080
81205
|
if (parsed.error)
|
@@ -80082,19 +81207,19 @@ var init_yargs_factory = __esm({
|
|
80082
81207
|
if (!requestCompletions) {
|
80083
81208
|
const validation2 = this[kRunValidation](aliases2, {}, parsed.error);
|
80084
81209
|
if (!calledFromCommand) {
|
80085
|
-
argvPromise = applyMiddleware(argv, this,
|
81210
|
+
argvPromise = applyMiddleware(argv, this, __classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").getMiddleware(), true);
|
80086
81211
|
}
|
80087
81212
|
argvPromise = this[kValidateAsync](validation2, argvPromise !== null && argvPromise !== void 0 ? argvPromise : argv);
|
80088
81213
|
if (isPromise(argvPromise) && !calledFromCommand) {
|
80089
81214
|
argvPromise = argvPromise.then(() => {
|
80090
|
-
return applyMiddleware(argv, this,
|
81215
|
+
return applyMiddleware(argv, this, __classPrivateFieldGet4(this, _YargsInstance_globalMiddleware, "f").getMiddleware(), false);
|
80091
81216
|
});
|
80092
81217
|
}
|
80093
81218
|
}
|
80094
81219
|
}
|
80095
81220
|
} catch (err) {
|
80096
81221
|
if (err instanceof YError)
|
80097
|
-
|
81222
|
+
__classPrivateFieldGet4(this, _YargsInstance_usage, "f").fail(err.message, err);
|
80098
81223
|
else
|
80099
81224
|
throw err;
|
80100
81225
|
}
|
@@ -80105,20 +81230,20 @@ var init_yargs_factory = __esm({
|
|
80105
81230
|
return (argv) => {
|
80106
81231
|
if (parseErrors)
|
80107
81232
|
throw new YError(parseErrors.message);
|
80108
|
-
|
80109
|
-
|
81233
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").nonOptionCount(argv);
|
81234
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").requiredArguments(argv, demandedOptions);
|
80110
81235
|
let failedStrictCommands = false;
|
80111
|
-
if (
|
80112
|
-
failedStrictCommands =
|
81236
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_strictCommands, "f")) {
|
81237
|
+
failedStrictCommands = __classPrivateFieldGet4(this, _YargsInstance_validation, "f").unknownCommands(argv);
|
80113
81238
|
}
|
80114
|
-
if (
|
80115
|
-
|
80116
|
-
} else if (
|
80117
|
-
|
81239
|
+
if (__classPrivateFieldGet4(this, _YargsInstance_strict, "f") && !failedStrictCommands) {
|
81240
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").unknownArguments(argv, aliases2, positionalMap, !!isDefaultCommand);
|
81241
|
+
} else if (__classPrivateFieldGet4(this, _YargsInstance_strictOptions, "f")) {
|
81242
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").unknownArguments(argv, aliases2, {}, false, false);
|
80118
81243
|
}
|
80119
|
-
|
80120
|
-
|
80121
|
-
|
81244
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").limitedChoices(argv);
|
81245
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").implications(argv);
|
81246
|
+
__classPrivateFieldGet4(this, _YargsInstance_validation, "f").conflicting(argv);
|
80122
81247
|
};
|
80123
81248
|
}
|
80124
81249
|
[kSetHasOutput]() {
|
@@ -80126,10 +81251,10 @@ var init_yargs_factory = __esm({
|
|
80126
81251
|
}
|
80127
81252
|
[kTrackManuallySetKeys](keys) {
|
80128
81253
|
if (typeof keys === "string") {
|
80129
|
-
|
81254
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").key[keys] = true;
|
80130
81255
|
} else {
|
80131
81256
|
for (const k6 of keys) {
|
80132
|
-
|
81257
|
+
__classPrivateFieldGet4(this, _YargsInstance_options, "f").key[k6] = true;
|
80133
81258
|
}
|
80134
81259
|
}
|
80135
81260
|
}
|
@@ -80464,7 +81589,7 @@ var init_build3 = __esm({
|
|
80464
81589
|
"src/build/index.ts"() {
|
80465
81590
|
init_import_meta_url();
|
80466
81591
|
init_create_command();
|
80467
|
-
|
81592
|
+
init_src2();
|
80468
81593
|
buildCommand2 = createCommand({
|
80469
81594
|
metadata: {
|
80470
81595
|
description: "\u{1F528} Build a Worker",
|
@@ -83830,7 +84955,13 @@ function loadDotEnv(envPaths, { includeProcessEnv, silent }) {
|
|
83830
84955
|
override: true
|
83831
84956
|
});
|
83832
84957
|
if (error3) {
|
83833
|
-
|
84958
|
+
if ("code" in error3 && error3.code === "ENOENT") {
|
84959
|
+
logger.debug(
|
84960
|
+
`.env file not found at "${envPath}". Continuing... For more details, refer to https://developers.cloudflare.com/workers/wrangler/system-environment-variables/`
|
84961
|
+
);
|
84962
|
+
} else {
|
84963
|
+
logger.debug(`Failed to load .env file "${envPath}":`, error3);
|
84964
|
+
}
|
83834
84965
|
} else if (parsed && !silent) {
|
83835
84966
|
const relativePath = import_path12.default.relative(process.cwd(), envPath);
|
83836
84967
|
logger.log(`Using vars defined in ${relativePath}`);
|
@@ -91186,6 +92317,88 @@ var init_build_env = __esm({
|
|
91186
92317
|
}
|
91187
92318
|
});
|
91188
92319
|
|
92320
|
+
// ../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/Mime.js
|
92321
|
+
var require_Mime = __commonJS({
|
92322
|
+
"../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/Mime.js"(exports2, module3) {
|
92323
|
+
"use strict";
|
92324
|
+
init_import_meta_url();
|
92325
|
+
function Mime2() {
|
92326
|
+
this._types = /* @__PURE__ */ Object.create(null);
|
92327
|
+
this._extensions = /* @__PURE__ */ Object.create(null);
|
92328
|
+
for (let i5 = 0; i5 < arguments.length; i5++) {
|
92329
|
+
this.define(arguments[i5]);
|
92330
|
+
}
|
92331
|
+
this.define = this.define.bind(this);
|
92332
|
+
this.getType = this.getType.bind(this);
|
92333
|
+
this.getExtension = this.getExtension.bind(this);
|
92334
|
+
}
|
92335
|
+
__name(Mime2, "Mime");
|
92336
|
+
Mime2.prototype.define = function(typeMap, force) {
|
92337
|
+
for (let type in typeMap) {
|
92338
|
+
let extensions = typeMap[type].map(function(t7) {
|
92339
|
+
return t7.toLowerCase();
|
92340
|
+
});
|
92341
|
+
type = type.toLowerCase();
|
92342
|
+
for (let i5 = 0; i5 < extensions.length; i5++) {
|
92343
|
+
const ext = extensions[i5];
|
92344
|
+
if (ext[0] === "*") {
|
92345
|
+
continue;
|
92346
|
+
}
|
92347
|
+
if (!force && ext in this._types) {
|
92348
|
+
throw new Error(
|
92349
|
+
'Attempt to change mapping for "' + ext + '" extension from "' + this._types[ext] + '" to "' + type + '". Pass `force=true` to allow this, otherwise remove "' + ext + '" from the list of extensions for "' + type + '".'
|
92350
|
+
);
|
92351
|
+
}
|
92352
|
+
this._types[ext] = type;
|
92353
|
+
}
|
92354
|
+
if (force || !this._extensions[type]) {
|
92355
|
+
const ext = extensions[0];
|
92356
|
+
this._extensions[type] = ext[0] !== "*" ? ext : ext.substr(1);
|
92357
|
+
}
|
92358
|
+
}
|
92359
|
+
};
|
92360
|
+
Mime2.prototype.getType = function(path72) {
|
92361
|
+
path72 = String(path72);
|
92362
|
+
let last = path72.replace(/^.*[/\\]/, "").toLowerCase();
|
92363
|
+
let ext = last.replace(/^.*\./, "").toLowerCase();
|
92364
|
+
let hasPath = last.length < path72.length;
|
92365
|
+
let hasDot = ext.length < last.length - 1;
|
92366
|
+
return (hasDot || !hasPath) && this._types[ext] || null;
|
92367
|
+
};
|
92368
|
+
Mime2.prototype.getExtension = function(type) {
|
92369
|
+
type = /^\s*([^;\s]*)/.test(type) && RegExp.$1;
|
92370
|
+
return type && this._extensions[type.toLowerCase()] || null;
|
92371
|
+
};
|
92372
|
+
module3.exports = Mime2;
|
92373
|
+
}
|
92374
|
+
});
|
92375
|
+
|
92376
|
+
// ../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/standard.js
|
92377
|
+
var require_standard = __commonJS({
|
92378
|
+
"../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/standard.js"(exports2, module3) {
|
92379
|
+
init_import_meta_url();
|
92380
|
+
module3.exports = { "application/andrew-inset": ["ez"], "application/applixware": ["aw"], "application/atom+xml": ["atom"], "application/atomcat+xml": ["atomcat"], "application/atomdeleted+xml": ["atomdeleted"], "application/atomsvc+xml": ["atomsvc"], "application/atsc-dwd+xml": ["dwd"], "application/atsc-held+xml": ["held"], "application/atsc-rsat+xml": ["rsat"], "application/bdoc": ["bdoc"], "application/calendar+xml": ["xcs"], "application/ccxml+xml": ["ccxml"], "application/cdfx+xml": ["cdfx"], "application/cdmi-capability": ["cdmia"], "application/cdmi-container": ["cdmic"], "application/cdmi-domain": ["cdmid"], "application/cdmi-object": ["cdmio"], "application/cdmi-queue": ["cdmiq"], "application/cu-seeme": ["cu"], "application/dash+xml": ["mpd"], "application/davmount+xml": ["davmount"], "application/docbook+xml": ["dbk"], "application/dssc+der": ["dssc"], "application/dssc+xml": ["xdssc"], "application/ecmascript": ["es", "ecma"], "application/emma+xml": ["emma"], "application/emotionml+xml": ["emotionml"], "application/epub+zip": ["epub"], "application/exi": ["exi"], "application/express": ["exp"], "application/fdt+xml": ["fdt"], "application/font-tdpfr": ["pfr"], "application/geo+json": ["geojson"], "application/gml+xml": ["gml"], "application/gpx+xml": ["gpx"], "application/gxf": ["gxf"], "application/gzip": ["gz"], "application/hjson": ["hjson"], "application/hyperstudio": ["stk"], "application/inkml+xml": ["ink", "inkml"], "application/ipfix": ["ipfix"], "application/its+xml": ["its"], "application/java-archive": ["jar", "war", "ear"], "application/java-serialized-object": ["ser"], "application/java-vm": ["class"], "application/javascript": ["js", "mjs"], "application/json": ["json", "map"], "application/json5": ["json5"], "application/jsonml+json": ["jsonml"], "application/ld+json": ["jsonld"], "application/lgr+xml": ["lgr"], "application/lost+xml": ["lostxml"], "application/mac-binhex40": ["hqx"], "application/mac-compactpro": ["cpt"], "application/mads+xml": ["mads"], "application/manifest+json": ["webmanifest"], "application/marc": ["mrc"], "application/marcxml+xml": ["mrcx"], "application/mathematica": ["ma", "nb", "mb"], "application/mathml+xml": ["mathml"], "application/mbox": ["mbox"], "application/mediaservercontrol+xml": ["mscml"], "application/metalink+xml": ["metalink"], "application/metalink4+xml": ["meta4"], "application/mets+xml": ["mets"], "application/mmt-aei+xml": ["maei"], "application/mmt-usd+xml": ["musd"], "application/mods+xml": ["mods"], "application/mp21": ["m21", "mp21"], "application/mp4": ["mp4s", "m4p"], "application/msword": ["doc", "dot"], "application/mxf": ["mxf"], "application/n-quads": ["nq"], "application/n-triples": ["nt"], "application/node": ["cjs"], "application/octet-stream": ["bin", "dms", "lrf", "mar", "so", "dist", "distz", "pkg", "bpk", "dump", "elc", "deploy", "exe", "dll", "deb", "dmg", "iso", "img", "msi", "msp", "msm", "buffer"], "application/oda": ["oda"], "application/oebps-package+xml": ["opf"], "application/ogg": ["ogx"], "application/omdoc+xml": ["omdoc"], "application/onenote": ["onetoc", "onetoc2", "onetmp", "onepkg"], "application/oxps": ["oxps"], "application/p2p-overlay+xml": ["relo"], "application/patch-ops-error+xml": ["xer"], "application/pdf": ["pdf"], "application/pgp-encrypted": ["pgp"], "application/pgp-signature": ["asc", "sig"], "application/pics-rules": ["prf"], "application/pkcs10": ["p10"], "application/pkcs7-mime": ["p7m", "p7c"], "application/pkcs7-signature": ["p7s"], "application/pkcs8": ["p8"], "application/pkix-attr-cert": ["ac"], "application/pkix-cert": ["cer"], "application/pkix-crl": ["crl"], "application/pkix-pkipath": ["pkipath"], "application/pkixcmp": ["pki"], "application/pls+xml": ["pls"], "application/postscript": ["ai", "eps", "ps"], "application/provenance+xml": ["provx"], "application/pskc+xml": ["pskcxml"], "application/raml+yaml": ["raml"], "application/rdf+xml": ["rdf", "owl"], "application/reginfo+xml": ["rif"], "application/relax-ng-compact-syntax": ["rnc"], "application/resource-lists+xml": ["rl"], "application/resource-lists-diff+xml": ["rld"], "application/rls-services+xml": ["rs"], "application/route-apd+xml": ["rapd"], "application/route-s-tsid+xml": ["sls"], "application/route-usd+xml": ["rusd"], "application/rpki-ghostbusters": ["gbr"], "application/rpki-manifest": ["mft"], "application/rpki-roa": ["roa"], "application/rsd+xml": ["rsd"], "application/rss+xml": ["rss"], "application/rtf": ["rtf"], "application/sbml+xml": ["sbml"], "application/scvp-cv-request": ["scq"], "application/scvp-cv-response": ["scs"], "application/scvp-vp-request": ["spq"], "application/scvp-vp-response": ["spp"], "application/sdp": ["sdp"], "application/senml+xml": ["senmlx"], "application/sensml+xml": ["sensmlx"], "application/set-payment-initiation": ["setpay"], "application/set-registration-initiation": ["setreg"], "application/shf+xml": ["shf"], "application/sieve": ["siv", "sieve"], "application/smil+xml": ["smi", "smil"], "application/sparql-query": ["rq"], "application/sparql-results+xml": ["srx"], "application/srgs": ["gram"], "application/srgs+xml": ["grxml"], "application/sru+xml": ["sru"], "application/ssdl+xml": ["ssdl"], "application/ssml+xml": ["ssml"], "application/swid+xml": ["swidtag"], "application/tei+xml": ["tei", "teicorpus"], "application/thraud+xml": ["tfi"], "application/timestamped-data": ["tsd"], "application/toml": ["toml"], "application/trig": ["trig"], "application/ttml+xml": ["ttml"], "application/ubjson": ["ubj"], "application/urc-ressheet+xml": ["rsheet"], "application/urc-targetdesc+xml": ["td"], "application/voicexml+xml": ["vxml"], "application/wasm": ["wasm"], "application/widget": ["wgt"], "application/winhlp": ["hlp"], "application/wsdl+xml": ["wsdl"], "application/wspolicy+xml": ["wspolicy"], "application/xaml+xml": ["xaml"], "application/xcap-att+xml": ["xav"], "application/xcap-caps+xml": ["xca"], "application/xcap-diff+xml": ["xdf"], "application/xcap-el+xml": ["xel"], "application/xcap-ns+xml": ["xns"], "application/xenc+xml": ["xenc"], "application/xhtml+xml": ["xhtml", "xht"], "application/xliff+xml": ["xlf"], "application/xml": ["xml", "xsl", "xsd", "rng"], "application/xml-dtd": ["dtd"], "application/xop+xml": ["xop"], "application/xproc+xml": ["xpl"], "application/xslt+xml": ["*xsl", "xslt"], "application/xspf+xml": ["xspf"], "application/xv+xml": ["mxml", "xhvml", "xvml", "xvm"], "application/yang": ["yang"], "application/yin+xml": ["yin"], "application/zip": ["zip"], "audio/3gpp": ["*3gpp"], "audio/adpcm": ["adp"], "audio/amr": ["amr"], "audio/basic": ["au", "snd"], "audio/midi": ["mid", "midi", "kar", "rmi"], "audio/mobile-xmf": ["mxmf"], "audio/mp3": ["*mp3"], "audio/mp4": ["m4a", "mp4a"], "audio/mpeg": ["mpga", "mp2", "mp2a", "mp3", "m2a", "m3a"], "audio/ogg": ["oga", "ogg", "spx", "opus"], "audio/s3m": ["s3m"], "audio/silk": ["sil"], "audio/wav": ["wav"], "audio/wave": ["*wav"], "audio/webm": ["weba"], "audio/xm": ["xm"], "font/collection": ["ttc"], "font/otf": ["otf"], "font/ttf": ["ttf"], "font/woff": ["woff"], "font/woff2": ["woff2"], "image/aces": ["exr"], "image/apng": ["apng"], "image/avif": ["avif"], "image/bmp": ["bmp"], "image/cgm": ["cgm"], "image/dicom-rle": ["drle"], "image/emf": ["emf"], "image/fits": ["fits"], "image/g3fax": ["g3"], "image/gif": ["gif"], "image/heic": ["heic"], "image/heic-sequence": ["heics"], "image/heif": ["heif"], "image/heif-sequence": ["heifs"], "image/hej2k": ["hej2"], "image/hsj2": ["hsj2"], "image/ief": ["ief"], "image/jls": ["jls"], "image/jp2": ["jp2", "jpg2"], "image/jpeg": ["jpeg", "jpg", "jpe"], "image/jph": ["jph"], "image/jphc": ["jhc"], "image/jpm": ["jpm"], "image/jpx": ["jpx", "jpf"], "image/jxr": ["jxr"], "image/jxra": ["jxra"], "image/jxrs": ["jxrs"], "image/jxs": ["jxs"], "image/jxsc": ["jxsc"], "image/jxsi": ["jxsi"], "image/jxss": ["jxss"], "image/ktx": ["ktx"], "image/ktx2": ["ktx2"], "image/png": ["png"], "image/sgi": ["sgi"], "image/svg+xml": ["svg", "svgz"], "image/t38": ["t38"], "image/tiff": ["tif", "tiff"], "image/tiff-fx": ["tfx"], "image/webp": ["webp"], "image/wmf": ["wmf"], "message/disposition-notification": ["disposition-notification"], "message/global": ["u8msg"], "message/global-delivery-status": ["u8dsn"], "message/global-disposition-notification": ["u8mdn"], "message/global-headers": ["u8hdr"], "message/rfc822": ["eml", "mime"], "model/3mf": ["3mf"], "model/gltf+json": ["gltf"], "model/gltf-binary": ["glb"], "model/iges": ["igs", "iges"], "model/mesh": ["msh", "mesh", "silo"], "model/mtl": ["mtl"], "model/obj": ["obj"], "model/step+xml": ["stpx"], "model/step+zip": ["stpz"], "model/step-xml+zip": ["stpxz"], "model/stl": ["stl"], "model/vrml": ["wrl", "vrml"], "model/x3d+binary": ["*x3db", "x3dbz"], "model/x3d+fastinfoset": ["x3db"], "model/x3d+vrml": ["*x3dv", "x3dvz"], "model/x3d+xml": ["x3d", "x3dz"], "model/x3d-vrml": ["x3dv"], "text/cache-manifest": ["appcache", "manifest"], "text/calendar": ["ics", "ifb"], "text/coffeescript": ["coffee", "litcoffee"], "text/css": ["css"], "text/csv": ["csv"], "text/html": ["html", "htm", "shtml"], "text/jade": ["jade"], "text/jsx": ["jsx"], "text/less": ["less"], "text/markdown": ["markdown", "md"], "text/mathml": ["mml"], "text/mdx": ["mdx"], "text/n3": ["n3"], "text/plain": ["txt", "text", "conf", "def", "list", "log", "in", "ini"], "text/richtext": ["rtx"], "text/rtf": ["*rtf"], "text/sgml": ["sgml", "sgm"], "text/shex": ["shex"], "text/slim": ["slim", "slm"], "text/spdx": ["spdx"], "text/stylus": ["stylus", "styl"], "text/tab-separated-values": ["tsv"], "text/troff": ["t", "tr", "roff", "man", "me", "ms"], "text/turtle": ["ttl"], "text/uri-list": ["uri", "uris", "urls"], "text/vcard": ["vcard"], "text/vtt": ["vtt"], "text/xml": ["*xml"], "text/yaml": ["yaml", "yml"], "video/3gpp": ["3gp", "3gpp"], "video/3gpp2": ["3g2"], "video/h261": ["h261"], "video/h263": ["h263"], "video/h264": ["h264"], "video/iso.segment": ["m4s"], "video/jpeg": ["jpgv"], "video/jpm": ["*jpm", "jpgm"], "video/mj2": ["mj2", "mjp2"], "video/mp2t": ["ts"], "video/mp4": ["mp4", "mp4v", "mpg4"], "video/mpeg": ["mpeg", "mpg", "mpe", "m1v", "m2v"], "video/ogg": ["ogv"], "video/quicktime": ["qt", "mov"], "video/webm": ["webm"] };
|
92381
|
+
}
|
92382
|
+
});
|
92383
|
+
|
92384
|
+
// ../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/other.js
|
92385
|
+
var require_other = __commonJS({
|
92386
|
+
"../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/types/other.js"(exports2, module3) {
|
92387
|
+
init_import_meta_url();
|
92388
|
+
module3.exports = { "application/prs.cww": ["cww"], "application/vnd.1000minds.decision-model+xml": ["1km"], "application/vnd.3gpp.pic-bw-large": ["plb"], "application/vnd.3gpp.pic-bw-small": ["psb"], "application/vnd.3gpp.pic-bw-var": ["pvb"], "application/vnd.3gpp2.tcap": ["tcap"], "application/vnd.3m.post-it-notes": ["pwn"], "application/vnd.accpac.simply.aso": ["aso"], "application/vnd.accpac.simply.imp": ["imp"], "application/vnd.acucobol": ["acu"], "application/vnd.acucorp": ["atc", "acutc"], "application/vnd.adobe.air-application-installer-package+zip": ["air"], "application/vnd.adobe.formscentral.fcdt": ["fcdt"], "application/vnd.adobe.fxp": ["fxp", "fxpl"], "application/vnd.adobe.xdp+xml": ["xdp"], "application/vnd.adobe.xfdf": ["xfdf"], "application/vnd.ahead.space": ["ahead"], "application/vnd.airzip.filesecure.azf": ["azf"], "application/vnd.airzip.filesecure.azs": ["azs"], "application/vnd.amazon.ebook": ["azw"], "application/vnd.americandynamics.acc": ["acc"], "application/vnd.amiga.ami": ["ami"], "application/vnd.android.package-archive": ["apk"], "application/vnd.anser-web-certificate-issue-initiation": ["cii"], "application/vnd.anser-web-funds-transfer-initiation": ["fti"], "application/vnd.antix.game-component": ["atx"], "application/vnd.apple.installer+xml": ["mpkg"], "application/vnd.apple.keynote": ["key"], "application/vnd.apple.mpegurl": ["m3u8"], "application/vnd.apple.numbers": ["numbers"], "application/vnd.apple.pages": ["pages"], "application/vnd.apple.pkpass": ["pkpass"], "application/vnd.aristanetworks.swi": ["swi"], "application/vnd.astraea-software.iota": ["iota"], "application/vnd.audiograph": ["aep"], "application/vnd.balsamiq.bmml+xml": ["bmml"], "application/vnd.blueice.multipass": ["mpm"], "application/vnd.bmi": ["bmi"], "application/vnd.businessobjects": ["rep"], "application/vnd.chemdraw+xml": ["cdxml"], "application/vnd.chipnuts.karaoke-mmd": ["mmd"], "application/vnd.cinderella": ["cdy"], "application/vnd.citationstyles.style+xml": ["csl"], "application/vnd.claymore": ["cla"], "application/vnd.cloanto.rp9": ["rp9"], "application/vnd.clonk.c4group": ["c4g", "c4d", "c4f", "c4p", "c4u"], "application/vnd.cluetrust.cartomobile-config": ["c11amc"], "application/vnd.cluetrust.cartomobile-config-pkg": ["c11amz"], "application/vnd.commonspace": ["csp"], "application/vnd.contact.cmsg": ["cdbcmsg"], "application/vnd.cosmocaller": ["cmc"], "application/vnd.crick.clicker": ["clkx"], "application/vnd.crick.clicker.keyboard": ["clkk"], "application/vnd.crick.clicker.palette": ["clkp"], "application/vnd.crick.clicker.template": ["clkt"], "application/vnd.crick.clicker.wordbank": ["clkw"], "application/vnd.criticaltools.wbs+xml": ["wbs"], "application/vnd.ctc-posml": ["pml"], "application/vnd.cups-ppd": ["ppd"], "application/vnd.curl.car": ["car"], "application/vnd.curl.pcurl": ["pcurl"], "application/vnd.dart": ["dart"], "application/vnd.data-vision.rdz": ["rdz"], "application/vnd.dbf": ["dbf"], "application/vnd.dece.data": ["uvf", "uvvf", "uvd", "uvvd"], "application/vnd.dece.ttml+xml": ["uvt", "uvvt"], "application/vnd.dece.unspecified": ["uvx", "uvvx"], "application/vnd.dece.zip": ["uvz", "uvvz"], "application/vnd.denovo.fcselayout-link": ["fe_launch"], "application/vnd.dna": ["dna"], "application/vnd.dolby.mlp": ["mlp"], "application/vnd.dpgraph": ["dpg"], "application/vnd.dreamfactory": ["dfac"], "application/vnd.ds-keypoint": ["kpxx"], "application/vnd.dvb.ait": ["ait"], "application/vnd.dvb.service": ["svc"], "application/vnd.dynageo": ["geo"], "application/vnd.ecowin.chart": ["mag"], "application/vnd.enliven": ["nml"], "application/vnd.epson.esf": ["esf"], "application/vnd.epson.msf": ["msf"], "application/vnd.epson.quickanime": ["qam"], "application/vnd.epson.salt": ["slt"], "application/vnd.epson.ssf": ["ssf"], "application/vnd.eszigno3+xml": ["es3", "et3"], "application/vnd.ezpix-album": ["ez2"], "application/vnd.ezpix-package": ["ez3"], "application/vnd.fdf": ["fdf"], "application/vnd.fdsn.mseed": ["mseed"], "application/vnd.fdsn.seed": ["seed", "dataless"], "application/vnd.flographit": ["gph"], "application/vnd.fluxtime.clip": ["ftc"], "application/vnd.framemaker": ["fm", "frame", "maker", "book"], "application/vnd.frogans.fnc": ["fnc"], "application/vnd.frogans.ltf": ["ltf"], "application/vnd.fsc.weblaunch": ["fsc"], "application/vnd.fujitsu.oasys": ["oas"], "application/vnd.fujitsu.oasys2": ["oa2"], "application/vnd.fujitsu.oasys3": ["oa3"], "application/vnd.fujitsu.oasysgp": ["fg5"], "application/vnd.fujitsu.oasysprs": ["bh2"], "application/vnd.fujixerox.ddd": ["ddd"], "application/vnd.fujixerox.docuworks": ["xdw"], "application/vnd.fujixerox.docuworks.binder": ["xbd"], "application/vnd.fuzzysheet": ["fzs"], "application/vnd.genomatix.tuxedo": ["txd"], "application/vnd.geogebra.file": ["ggb"], "application/vnd.geogebra.tool": ["ggt"], "application/vnd.geometry-explorer": ["gex", "gre"], "application/vnd.geonext": ["gxt"], "application/vnd.geoplan": ["g2w"], "application/vnd.geospace": ["g3w"], "application/vnd.gmx": ["gmx"], "application/vnd.google-apps.document": ["gdoc"], "application/vnd.google-apps.presentation": ["gslides"], "application/vnd.google-apps.spreadsheet": ["gsheet"], "application/vnd.google-earth.kml+xml": ["kml"], "application/vnd.google-earth.kmz": ["kmz"], "application/vnd.grafeq": ["gqf", "gqs"], "application/vnd.groove-account": ["gac"], "application/vnd.groove-help": ["ghf"], "application/vnd.groove-identity-message": ["gim"], "application/vnd.groove-injector": ["grv"], "application/vnd.groove-tool-message": ["gtm"], "application/vnd.groove-tool-template": ["tpl"], "application/vnd.groove-vcard": ["vcg"], "application/vnd.hal+xml": ["hal"], "application/vnd.handheld-entertainment+xml": ["zmm"], "application/vnd.hbci": ["hbci"], "application/vnd.hhe.lesson-player": ["les"], "application/vnd.hp-hpgl": ["hpgl"], "application/vnd.hp-hpid": ["hpid"], "application/vnd.hp-hps": ["hps"], "application/vnd.hp-jlyt": ["jlt"], "application/vnd.hp-pcl": ["pcl"], "application/vnd.hp-pclxl": ["pclxl"], "application/vnd.hydrostatix.sof-data": ["sfd-hdstx"], "application/vnd.ibm.minipay": ["mpy"], "application/vnd.ibm.modcap": ["afp", "listafp", "list3820"], "application/vnd.ibm.rights-management": ["irm"], "application/vnd.ibm.secure-container": ["sc"], "application/vnd.iccprofile": ["icc", "icm"], "application/vnd.igloader": ["igl"], "application/vnd.immervision-ivp": ["ivp"], "application/vnd.immervision-ivu": ["ivu"], "application/vnd.insors.igm": ["igm"], "application/vnd.intercon.formnet": ["xpw", "xpx"], "application/vnd.intergeo": ["i2g"], "application/vnd.intu.qbo": ["qbo"], "application/vnd.intu.qfx": ["qfx"], "application/vnd.ipunplugged.rcprofile": ["rcprofile"], "application/vnd.irepository.package+xml": ["irp"], "application/vnd.is-xpr": ["xpr"], "application/vnd.isac.fcs": ["fcs"], "application/vnd.jam": ["jam"], "application/vnd.jcp.javame.midlet-rms": ["rms"], "application/vnd.jisp": ["jisp"], "application/vnd.joost.joda-archive": ["joda"], "application/vnd.kahootz": ["ktz", "ktr"], "application/vnd.kde.karbon": ["karbon"], "application/vnd.kde.kchart": ["chrt"], "application/vnd.kde.kformula": ["kfo"], "application/vnd.kde.kivio": ["flw"], "application/vnd.kde.kontour": ["kon"], "application/vnd.kde.kpresenter": ["kpr", "kpt"], "application/vnd.kde.kspread": ["ksp"], "application/vnd.kde.kword": ["kwd", "kwt"], "application/vnd.kenameaapp": ["htke"], "application/vnd.kidspiration": ["kia"], "application/vnd.kinar": ["kne", "knp"], "application/vnd.koan": ["skp", "skd", "skt", "skm"], "application/vnd.kodak-descriptor": ["sse"], "application/vnd.las.las+xml": ["lasxml"], "application/vnd.llamagraphics.life-balance.desktop": ["lbd"], "application/vnd.llamagraphics.life-balance.exchange+xml": ["lbe"], "application/vnd.lotus-1-2-3": ["123"], "application/vnd.lotus-approach": ["apr"], "application/vnd.lotus-freelance": ["pre"], "application/vnd.lotus-notes": ["nsf"], "application/vnd.lotus-organizer": ["org"], "application/vnd.lotus-screencam": ["scm"], "application/vnd.lotus-wordpro": ["lwp"], "application/vnd.macports.portpkg": ["portpkg"], "application/vnd.mapbox-vector-tile": ["mvt"], "application/vnd.mcd": ["mcd"], "application/vnd.medcalcdata": ["mc1"], "application/vnd.mediastation.cdkey": ["cdkey"], "application/vnd.mfer": ["mwf"], "application/vnd.mfmp": ["mfm"], "application/vnd.micrografx.flo": ["flo"], "application/vnd.micrografx.igx": ["igx"], "application/vnd.mif": ["mif"], "application/vnd.mobius.daf": ["daf"], "application/vnd.mobius.dis": ["dis"], "application/vnd.mobius.mbk": ["mbk"], "application/vnd.mobius.mqy": ["mqy"], "application/vnd.mobius.msl": ["msl"], "application/vnd.mobius.plc": ["plc"], "application/vnd.mobius.txf": ["txf"], "application/vnd.mophun.application": ["mpn"], "application/vnd.mophun.certificate": ["mpc"], "application/vnd.mozilla.xul+xml": ["xul"], "application/vnd.ms-artgalry": ["cil"], "application/vnd.ms-cab-compressed": ["cab"], "application/vnd.ms-excel": ["xls", "xlm", "xla", "xlc", "xlt", "xlw"], "application/vnd.ms-excel.addin.macroenabled.12": ["xlam"], "application/vnd.ms-excel.sheet.binary.macroenabled.12": ["xlsb"], "application/vnd.ms-excel.sheet.macroenabled.12": ["xlsm"], "application/vnd.ms-excel.template.macroenabled.12": ["xltm"], "application/vnd.ms-fontobject": ["eot"], "application/vnd.ms-htmlhelp": ["chm"], "application/vnd.ms-ims": ["ims"], "application/vnd.ms-lrm": ["lrm"], "application/vnd.ms-officetheme": ["thmx"], "application/vnd.ms-outlook": ["msg"], "application/vnd.ms-pki.seccat": ["cat"], "application/vnd.ms-pki.stl": ["*stl"], "application/vnd.ms-powerpoint": ["ppt", "pps", "pot"], "application/vnd.ms-powerpoint.addin.macroenabled.12": ["ppam"], "application/vnd.ms-powerpoint.presentation.macroenabled.12": ["pptm"], "application/vnd.ms-powerpoint.slide.macroenabled.12": ["sldm"], "application/vnd.ms-powerpoint.slideshow.macroenabled.12": ["ppsm"], "application/vnd.ms-powerpoint.template.macroenabled.12": ["potm"], "application/vnd.ms-project": ["mpp", "mpt"], "application/vnd.ms-word.document.macroenabled.12": ["docm"], "application/vnd.ms-word.template.macroenabled.12": ["dotm"], "application/vnd.ms-works": ["wps", "wks", "wcm", "wdb"], "application/vnd.ms-wpl": ["wpl"], "application/vnd.ms-xpsdocument": ["xps"], "application/vnd.mseq": ["mseq"], "application/vnd.musician": ["mus"], "application/vnd.muvee.style": ["msty"], "application/vnd.mynfc": ["taglet"], "application/vnd.neurolanguage.nlu": ["nlu"], "application/vnd.nitf": ["ntf", "nitf"], "application/vnd.noblenet-directory": ["nnd"], "application/vnd.noblenet-sealer": ["nns"], "application/vnd.noblenet-web": ["nnw"], "application/vnd.nokia.n-gage.ac+xml": ["*ac"], "application/vnd.nokia.n-gage.data": ["ngdat"], "application/vnd.nokia.n-gage.symbian.install": ["n-gage"], "application/vnd.nokia.radio-preset": ["rpst"], "application/vnd.nokia.radio-presets": ["rpss"], "application/vnd.novadigm.edm": ["edm"], "application/vnd.novadigm.edx": ["edx"], "application/vnd.novadigm.ext": ["ext"], "application/vnd.oasis.opendocument.chart": ["odc"], "application/vnd.oasis.opendocument.chart-template": ["otc"], "application/vnd.oasis.opendocument.database": ["odb"], "application/vnd.oasis.opendocument.formula": ["odf"], "application/vnd.oasis.opendocument.formula-template": ["odft"], "application/vnd.oasis.opendocument.graphics": ["odg"], "application/vnd.oasis.opendocument.graphics-template": ["otg"], "application/vnd.oasis.opendocument.image": ["odi"], "application/vnd.oasis.opendocument.image-template": ["oti"], "application/vnd.oasis.opendocument.presentation": ["odp"], "application/vnd.oasis.opendocument.presentation-template": ["otp"], "application/vnd.oasis.opendocument.spreadsheet": ["ods"], "application/vnd.oasis.opendocument.spreadsheet-template": ["ots"], "application/vnd.oasis.opendocument.text": ["odt"], "application/vnd.oasis.opendocument.text-master": ["odm"], "application/vnd.oasis.opendocument.text-template": ["ott"], "application/vnd.oasis.opendocument.text-web": ["oth"], "application/vnd.olpc-sugar": ["xo"], "application/vnd.oma.dd2+xml": ["dd2"], "application/vnd.openblox.game+xml": ["obgx"], "application/vnd.openofficeorg.extension": ["oxt"], "application/vnd.openstreetmap.data+xml": ["osm"], "application/vnd.openxmlformats-officedocument.presentationml.presentation": ["pptx"], "application/vnd.openxmlformats-officedocument.presentationml.slide": ["sldx"], "application/vnd.openxmlformats-officedocument.presentationml.slideshow": ["ppsx"], "application/vnd.openxmlformats-officedocument.presentationml.template": ["potx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": ["xlsx"], "application/vnd.openxmlformats-officedocument.spreadsheetml.template": ["xltx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.document": ["docx"], "application/vnd.openxmlformats-officedocument.wordprocessingml.template": ["dotx"], "application/vnd.osgeo.mapguide.package": ["mgp"], "application/vnd.osgi.dp": ["dp"], "application/vnd.osgi.subsystem": ["esa"], "application/vnd.palm": ["pdb", "pqa", "oprc"], "application/vnd.pawaafile": ["paw"], "application/vnd.pg.format": ["str"], "application/vnd.pg.osasli": ["ei6"], "application/vnd.picsel": ["efif"], "application/vnd.pmi.widget": ["wg"], "application/vnd.pocketlearn": ["plf"], "application/vnd.powerbuilder6": ["pbd"], "application/vnd.previewsystems.box": ["box"], "application/vnd.proteus.magazine": ["mgz"], "application/vnd.publishare-delta-tree": ["qps"], "application/vnd.pvi.ptid1": ["ptid"], "application/vnd.quark.quarkxpress": ["qxd", "qxt", "qwd", "qwt", "qxl", "qxb"], "application/vnd.rar": ["rar"], "application/vnd.realvnc.bed": ["bed"], "application/vnd.recordare.musicxml": ["mxl"], "application/vnd.recordare.musicxml+xml": ["musicxml"], "application/vnd.rig.cryptonote": ["cryptonote"], "application/vnd.rim.cod": ["cod"], "application/vnd.rn-realmedia": ["rm"], "application/vnd.rn-realmedia-vbr": ["rmvb"], "application/vnd.route66.link66+xml": ["link66"], "application/vnd.sailingtracker.track": ["st"], "application/vnd.seemail": ["see"], "application/vnd.sema": ["sema"], "application/vnd.semd": ["semd"], "application/vnd.semf": ["semf"], "application/vnd.shana.informed.formdata": ["ifm"], "application/vnd.shana.informed.formtemplate": ["itp"], "application/vnd.shana.informed.interchange": ["iif"], "application/vnd.shana.informed.package": ["ipk"], "application/vnd.simtech-mindmapper": ["twd", "twds"], "application/vnd.smaf": ["mmf"], "application/vnd.smart.teacher": ["teacher"], "application/vnd.software602.filler.form+xml": ["fo"], "application/vnd.solent.sdkm+xml": ["sdkm", "sdkd"], "application/vnd.spotfire.dxp": ["dxp"], "application/vnd.spotfire.sfs": ["sfs"], "application/vnd.stardivision.calc": ["sdc"], "application/vnd.stardivision.draw": ["sda"], "application/vnd.stardivision.impress": ["sdd"], "application/vnd.stardivision.math": ["smf"], "application/vnd.stardivision.writer": ["sdw", "vor"], "application/vnd.stardivision.writer-global": ["sgl"], "application/vnd.stepmania.package": ["smzip"], "application/vnd.stepmania.stepchart": ["sm"], "application/vnd.sun.wadl+xml": ["wadl"], "application/vnd.sun.xml.calc": ["sxc"], "application/vnd.sun.xml.calc.template": ["stc"], "application/vnd.sun.xml.draw": ["sxd"], "application/vnd.sun.xml.draw.template": ["std"], "application/vnd.sun.xml.impress": ["sxi"], "application/vnd.sun.xml.impress.template": ["sti"], "application/vnd.sun.xml.math": ["sxm"], "application/vnd.sun.xml.writer": ["sxw"], "application/vnd.sun.xml.writer.global": ["sxg"], "application/vnd.sun.xml.writer.template": ["stw"], "application/vnd.sus-calendar": ["sus", "susp"], "application/vnd.svd": ["svd"], "application/vnd.symbian.install": ["sis", "sisx"], "application/vnd.syncml+xml": ["xsm"], "application/vnd.syncml.dm+wbxml": ["bdm"], "application/vnd.syncml.dm+xml": ["xdm"], "application/vnd.syncml.dmddf+xml": ["ddf"], "application/vnd.tao.intent-module-archive": ["tao"], "application/vnd.tcpdump.pcap": ["pcap", "cap", "dmp"], "application/vnd.tmobile-livetv": ["tmo"], "application/vnd.trid.tpt": ["tpt"], "application/vnd.triscape.mxs": ["mxs"], "application/vnd.trueapp": ["tra"], "application/vnd.ufdl": ["ufd", "ufdl"], "application/vnd.uiq.theme": ["utz"], "application/vnd.umajin": ["umj"], "application/vnd.unity": ["unityweb"], "application/vnd.uoml+xml": ["uoml"], "application/vnd.vcx": ["vcx"], "application/vnd.visio": ["vsd", "vst", "vss", "vsw"], "application/vnd.visionary": ["vis"], "application/vnd.vsf": ["vsf"], "application/vnd.wap.wbxml": ["wbxml"], "application/vnd.wap.wmlc": ["wmlc"], "application/vnd.wap.wmlscriptc": ["wmlsc"], "application/vnd.webturbo": ["wtb"], "application/vnd.wolfram.player": ["nbp"], "application/vnd.wordperfect": ["wpd"], "application/vnd.wqd": ["wqd"], "application/vnd.wt.stf": ["stf"], "application/vnd.xara": ["xar"], "application/vnd.xfdl": ["xfdl"], "application/vnd.yamaha.hv-dic": ["hvd"], "application/vnd.yamaha.hv-script": ["hvs"], "application/vnd.yamaha.hv-voice": ["hvp"], "application/vnd.yamaha.openscoreformat": ["osf"], "application/vnd.yamaha.openscoreformat.osfpvg+xml": ["osfpvg"], "application/vnd.yamaha.smaf-audio": ["saf"], "application/vnd.yamaha.smaf-phrase": ["spf"], "application/vnd.yellowriver-custom-menu": ["cmp"], "application/vnd.zul": ["zir", "zirz"], "application/vnd.zzazz.deck+xml": ["zaz"], "application/x-7z-compressed": ["7z"], "application/x-abiword": ["abw"], "application/x-ace-compressed": ["ace"], "application/x-apple-diskimage": ["*dmg"], "application/x-arj": ["arj"], "application/x-authorware-bin": ["aab", "x32", "u32", "vox"], "application/x-authorware-map": ["aam"], "application/x-authorware-seg": ["aas"], "application/x-bcpio": ["bcpio"], "application/x-bdoc": ["*bdoc"], "application/x-bittorrent": ["torrent"], "application/x-blorb": ["blb", "blorb"], "application/x-bzip": ["bz"], "application/x-bzip2": ["bz2", "boz"], "application/x-cbr": ["cbr", "cba", "cbt", "cbz", "cb7"], "application/x-cdlink": ["vcd"], "application/x-cfs-compressed": ["cfs"], "application/x-chat": ["chat"], "application/x-chess-pgn": ["pgn"], "application/x-chrome-extension": ["crx"], "application/x-cocoa": ["cco"], "application/x-conference": ["nsc"], "application/x-cpio": ["cpio"], "application/x-csh": ["csh"], "application/x-debian-package": ["*deb", "udeb"], "application/x-dgc-compressed": ["dgc"], "application/x-director": ["dir", "dcr", "dxr", "cst", "cct", "cxt", "w3d", "fgd", "swa"], "application/x-doom": ["wad"], "application/x-dtbncx+xml": ["ncx"], "application/x-dtbook+xml": ["dtb"], "application/x-dtbresource+xml": ["res"], "application/x-dvi": ["dvi"], "application/x-envoy": ["evy"], "application/x-eva": ["eva"], "application/x-font-bdf": ["bdf"], "application/x-font-ghostscript": ["gsf"], "application/x-font-linux-psf": ["psf"], "application/x-font-pcf": ["pcf"], "application/x-font-snf": ["snf"], "application/x-font-type1": ["pfa", "pfb", "pfm", "afm"], "application/x-freearc": ["arc"], "application/x-futuresplash": ["spl"], "application/x-gca-compressed": ["gca"], "application/x-glulx": ["ulx"], "application/x-gnumeric": ["gnumeric"], "application/x-gramps-xml": ["gramps"], "application/x-gtar": ["gtar"], "application/x-hdf": ["hdf"], "application/x-httpd-php": ["php"], "application/x-install-instructions": ["install"], "application/x-iso9660-image": ["*iso"], "application/x-iwork-keynote-sffkey": ["*key"], "application/x-iwork-numbers-sffnumbers": ["*numbers"], "application/x-iwork-pages-sffpages": ["*pages"], "application/x-java-archive-diff": ["jardiff"], "application/x-java-jnlp-file": ["jnlp"], "application/x-keepass2": ["kdbx"], "application/x-latex": ["latex"], "application/x-lua-bytecode": ["luac"], "application/x-lzh-compressed": ["lzh", "lha"], "application/x-makeself": ["run"], "application/x-mie": ["mie"], "application/x-mobipocket-ebook": ["prc", "mobi"], "application/x-ms-application": ["application"], "application/x-ms-shortcut": ["lnk"], "application/x-ms-wmd": ["wmd"], "application/x-ms-wmz": ["wmz"], "application/x-ms-xbap": ["xbap"], "application/x-msaccess": ["mdb"], "application/x-msbinder": ["obd"], "application/x-mscardfile": ["crd"], "application/x-msclip": ["clp"], "application/x-msdos-program": ["*exe"], "application/x-msdownload": ["*exe", "*dll", "com", "bat", "*msi"], "application/x-msmediaview": ["mvb", "m13", "m14"], "application/x-msmetafile": ["*wmf", "*wmz", "*emf", "emz"], "application/x-msmoney": ["mny"], "application/x-mspublisher": ["pub"], "application/x-msschedule": ["scd"], "application/x-msterminal": ["trm"], "application/x-mswrite": ["wri"], "application/x-netcdf": ["nc", "cdf"], "application/x-ns-proxy-autoconfig": ["pac"], "application/x-nzb": ["nzb"], "application/x-perl": ["pl", "pm"], "application/x-pilot": ["*prc", "*pdb"], "application/x-pkcs12": ["p12", "pfx"], "application/x-pkcs7-certificates": ["p7b", "spc"], "application/x-pkcs7-certreqresp": ["p7r"], "application/x-rar-compressed": ["*rar"], "application/x-redhat-package-manager": ["rpm"], "application/x-research-info-systems": ["ris"], "application/x-sea": ["sea"], "application/x-sh": ["sh"], "application/x-shar": ["shar"], "application/x-shockwave-flash": ["swf"], "application/x-silverlight-app": ["xap"], "application/x-sql": ["sql"], "application/x-stuffit": ["sit"], "application/x-stuffitx": ["sitx"], "application/x-subrip": ["srt"], "application/x-sv4cpio": ["sv4cpio"], "application/x-sv4crc": ["sv4crc"], "application/x-t3vm-image": ["t3"], "application/x-tads": ["gam"], "application/x-tar": ["tar"], "application/x-tcl": ["tcl", "tk"], "application/x-tex": ["tex"], "application/x-tex-tfm": ["tfm"], "application/x-texinfo": ["texinfo", "texi"], "application/x-tgif": ["*obj"], "application/x-ustar": ["ustar"], "application/x-virtualbox-hdd": ["hdd"], "application/x-virtualbox-ova": ["ova"], "application/x-virtualbox-ovf": ["ovf"], "application/x-virtualbox-vbox": ["vbox"], "application/x-virtualbox-vbox-extpack": ["vbox-extpack"], "application/x-virtualbox-vdi": ["vdi"], "application/x-virtualbox-vhd": ["vhd"], "application/x-virtualbox-vmdk": ["vmdk"], "application/x-wais-source": ["src"], "application/x-web-app-manifest+json": ["webapp"], "application/x-x509-ca-cert": ["der", "crt", "pem"], "application/x-xfig": ["fig"], "application/x-xliff+xml": ["*xlf"], "application/x-xpinstall": ["xpi"], "application/x-xz": ["xz"], "application/x-zmachine": ["z1", "z2", "z3", "z4", "z5", "z6", "z7", "z8"], "audio/vnd.dece.audio": ["uva", "uvva"], "audio/vnd.digital-winds": ["eol"], "audio/vnd.dra": ["dra"], "audio/vnd.dts": ["dts"], "audio/vnd.dts.hd": ["dtshd"], "audio/vnd.lucent.voice": ["lvp"], "audio/vnd.ms-playready.media.pya": ["pya"], "audio/vnd.nuera.ecelp4800": ["ecelp4800"], "audio/vnd.nuera.ecelp7470": ["ecelp7470"], "audio/vnd.nuera.ecelp9600": ["ecelp9600"], "audio/vnd.rip": ["rip"], "audio/x-aac": ["aac"], "audio/x-aiff": ["aif", "aiff", "aifc"], "audio/x-caf": ["caf"], "audio/x-flac": ["flac"], "audio/x-m4a": ["*m4a"], "audio/x-matroska": ["mka"], "audio/x-mpegurl": ["m3u"], "audio/x-ms-wax": ["wax"], "audio/x-ms-wma": ["wma"], "audio/x-pn-realaudio": ["ram", "ra"], "audio/x-pn-realaudio-plugin": ["rmp"], "audio/x-realaudio": ["*ra"], "audio/x-wav": ["*wav"], "chemical/x-cdx": ["cdx"], "chemical/x-cif": ["cif"], "chemical/x-cmdf": ["cmdf"], "chemical/x-cml": ["cml"], "chemical/x-csml": ["csml"], "chemical/x-xyz": ["xyz"], "image/prs.btif": ["btif"], "image/prs.pti": ["pti"], "image/vnd.adobe.photoshop": ["psd"], "image/vnd.airzip.accelerator.azv": ["azv"], "image/vnd.dece.graphic": ["uvi", "uvvi", "uvg", "uvvg"], "image/vnd.djvu": ["djvu", "djv"], "image/vnd.dvb.subtitle": ["*sub"], "image/vnd.dwg": ["dwg"], "image/vnd.dxf": ["dxf"], "image/vnd.fastbidsheet": ["fbs"], "image/vnd.fpx": ["fpx"], "image/vnd.fst": ["fst"], "image/vnd.fujixerox.edmics-mmr": ["mmr"], "image/vnd.fujixerox.edmics-rlc": ["rlc"], "image/vnd.microsoft.icon": ["ico"], "image/vnd.ms-dds": ["dds"], "image/vnd.ms-modi": ["mdi"], "image/vnd.ms-photo": ["wdp"], "image/vnd.net-fpx": ["npx"], "image/vnd.pco.b16": ["b16"], "image/vnd.tencent.tap": ["tap"], "image/vnd.valve.source.texture": ["vtf"], "image/vnd.wap.wbmp": ["wbmp"], "image/vnd.xiff": ["xif"], "image/vnd.zbrush.pcx": ["pcx"], "image/x-3ds": ["3ds"], "image/x-cmu-raster": ["ras"], "image/x-cmx": ["cmx"], "image/x-freehand": ["fh", "fhc", "fh4", "fh5", "fh7"], "image/x-icon": ["*ico"], "image/x-jng": ["jng"], "image/x-mrsid-image": ["sid"], "image/x-ms-bmp": ["*bmp"], "image/x-pcx": ["*pcx"], "image/x-pict": ["pic", "pct"], "image/x-portable-anymap": ["pnm"], "image/x-portable-bitmap": ["pbm"], "image/x-portable-graymap": ["pgm"], "image/x-portable-pixmap": ["ppm"], "image/x-rgb": ["rgb"], "image/x-tga": ["tga"], "image/x-xbitmap": ["xbm"], "image/x-xpixmap": ["xpm"], "image/x-xwindowdump": ["xwd"], "message/vnd.wfa.wsc": ["wsc"], "model/vnd.collada+xml": ["dae"], "model/vnd.dwf": ["dwf"], "model/vnd.gdl": ["gdl"], "model/vnd.gtw": ["gtw"], "model/vnd.mts": ["mts"], "model/vnd.opengex": ["ogex"], "model/vnd.parasolid.transmit.binary": ["x_b"], "model/vnd.parasolid.transmit.text": ["x_t"], "model/vnd.sap.vds": ["vds"], "model/vnd.usdz+zip": ["usdz"], "model/vnd.valve.source.compiled-map": ["bsp"], "model/vnd.vtu": ["vtu"], "text/prs.lines.tag": ["dsc"], "text/vnd.curl": ["curl"], "text/vnd.curl.dcurl": ["dcurl"], "text/vnd.curl.mcurl": ["mcurl"], "text/vnd.curl.scurl": ["scurl"], "text/vnd.dvb.subtitle": ["sub"], "text/vnd.fly": ["fly"], "text/vnd.fmi.flexstor": ["flx"], "text/vnd.graphviz": ["gv"], "text/vnd.in3d.3dml": ["3dml"], "text/vnd.in3d.spot": ["spot"], "text/vnd.sun.j2me.app-descriptor": ["jad"], "text/vnd.wap.wml": ["wml"], "text/vnd.wap.wmlscript": ["wmls"], "text/x-asm": ["s", "asm"], "text/x-c": ["c", "cc", "cxx", "cpp", "h", "hh", "dic"], "text/x-component": ["htc"], "text/x-fortran": ["f", "for", "f77", "f90"], "text/x-handlebars-template": ["hbs"], "text/x-java-source": ["java"], "text/x-lua": ["lua"], "text/x-markdown": ["mkd"], "text/x-nfo": ["nfo"], "text/x-opml": ["opml"], "text/x-org": ["*org"], "text/x-pascal": ["p", "pas"], "text/x-processing": ["pde"], "text/x-sass": ["sass"], "text/x-scss": ["scss"], "text/x-setext": ["etx"], "text/x-sfv": ["sfv"], "text/x-suse-ymp": ["ymp"], "text/x-uuencode": ["uu"], "text/x-vcalendar": ["vcs"], "text/x-vcard": ["vcf"], "video/vnd.dece.hd": ["uvh", "uvvh"], "video/vnd.dece.mobile": ["uvm", "uvvm"], "video/vnd.dece.pd": ["uvp", "uvvp"], "video/vnd.dece.sd": ["uvs", "uvvs"], "video/vnd.dece.video": ["uvv", "uvvv"], "video/vnd.dvb.file": ["dvb"], "video/vnd.fvt": ["fvt"], "video/vnd.mpegurl": ["mxu", "m4u"], "video/vnd.ms-playready.media.pyv": ["pyv"], "video/vnd.uvvu.mp4": ["uvu", "uvvu"], "video/vnd.vivo": ["viv"], "video/x-f4v": ["f4v"], "video/x-fli": ["fli"], "video/x-flv": ["flv"], "video/x-m4v": ["m4v"], "video/x-matroska": ["mkv", "mk3d", "mks"], "video/x-mng": ["mng"], "video/x-ms-asf": ["asf", "asx"], "video/x-ms-vob": ["vob"], "video/x-ms-wm": ["wm"], "video/x-ms-wmv": ["wmv"], "video/x-ms-wmx": ["wmx"], "video/x-ms-wvx": ["wvx"], "video/x-msvideo": ["avi"], "video/x-sgi-movie": ["movie"], "video/x-smv": ["smv"], "x-conference/x-cooltalk": ["ice"] };
|
92389
|
+
}
|
92390
|
+
});
|
92391
|
+
|
92392
|
+
// ../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/index.js
|
92393
|
+
var require_mime = __commonJS({
|
92394
|
+
"../../node_modules/.pnpm/mime@3.0.0/node_modules/mime/index.js"(exports2, module3) {
|
92395
|
+
"use strict";
|
92396
|
+
init_import_meta_url();
|
92397
|
+
var Mime2 = require_Mime();
|
92398
|
+
module3.exports = new Mime2(require_standard(), require_other());
|
92399
|
+
}
|
92400
|
+
});
|
92401
|
+
|
91189
92402
|
// ../../node_modules/.pnpm/minimatch@5.1.6/node_modules/minimatch/lib/path.js
|
91190
92403
|
var require_path = __commonJS({
|
91191
92404
|
"../../node_modules/.pnpm/minimatch@5.1.6/node_modules/minimatch/lib/path.js"(exports2, module3) {
|
@@ -147520,14 +148733,14 @@ async function generateRuntimeTypes({
|
|
147520
148733
|
throw e7;
|
147521
148734
|
}
|
147522
148735
|
}
|
147523
|
-
const
|
148736
|
+
const types3 = await generate({
|
147524
148737
|
compatibilityDate: compatibility_date,
|
147525
148738
|
// Ignore nodejs compat flags as there is currently no mechanism to generate these dynamically.
|
147526
148739
|
compatibilityFlags: compatibility_flags.filter(
|
147527
148740
|
(flag) => !flag.includes("nodejs_compat")
|
147528
148741
|
)
|
147529
148742
|
});
|
147530
|
-
return { runtimeHeader: header, runtimeTypes:
|
148743
|
+
return { runtimeHeader: header, runtimeTypes: types3 };
|
147531
148744
|
}
|
147532
148745
|
async function generate({
|
147533
148746
|
compatibilityDate,
|
@@ -157575,7 +158788,7 @@ ${tryRunningItIn}${oneOfThese}`
|
|
157575
158788
|
}
|
157576
158789
|
}
|
157577
158790
|
var import_node_assert23, import_node_os8, import_node_path56, import_promises31, import_undici20;
|
157578
|
-
var
|
158791
|
+
var init_src2 = __esm({
|
157579
158792
|
"src/index.ts"() {
|
157580
158793
|
init_import_meta_url();
|
157581
158794
|
import_node_assert23 = __toESM(require("assert"));
|
@@ -157923,7 +159136,7 @@ var init_commands9 = __esm({
|
|
157923
159136
|
init_source();
|
157924
159137
|
import_miniflare21 = require("miniflare");
|
157925
159138
|
init_wrapper();
|
157926
|
-
|
159139
|
+
init_src2();
|
157927
159140
|
init_create_command();
|
157928
159141
|
init_create_worker_upload_form();
|
157929
159142
|
init_module_collection();
|
@@ -184929,7 +186142,7 @@ init_esm();
|
|
184929
186142
|
// src/cli.ts
|
184930
186143
|
init_api3();
|
184931
186144
|
init_errors();
|
184932
|
-
|
186145
|
+
init_src2();
|
184933
186146
|
init_integrations4();
|
184934
186147
|
init_splitter();
|
184935
186148
|
init_config2();
|
@@ -184938,7 +186151,7 @@ init_api3();
|
|
184938
186151
|
|
184939
186152
|
// src/experimental-commands-api.ts
|
184940
186153
|
init_import_meta_url();
|
184941
|
-
|
186154
|
+
init_src2();
|
184942
186155
|
function experimental_getWranglerCommands() {
|
184943
186156
|
const { registry, globalFlags } = createCLIParser([]);
|
184944
186157
|
return { registry: registry.getDefinitionTreeRoot(), globalFlags };
|