| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100 |
- // node_modules/.pnpm/tsup@8.2.4_jiti@1.21.6_typescript@5.5.4/node_modules/tsup/assets/esm_shims.js
- import { fileURLToPath } from "url";
- import path from "path";
- var getFilename = () => fileURLToPath(import.meta.url);
- var getDirname = () => path.dirname(getFilename());
- var __dirname = /* @__PURE__ */ getDirname();
- // src/esbuild/index.ts
- import fs2 from "fs";
- import path3 from "path";
- // src/esbuild/utils.ts
- import fs from "fs";
- import path2 from "path";
- import { Buffer as Buffer2 } from "buffer";
- // node_modules/.pnpm/@jridgewell+sourcemap-codec@1.5.0/node_modules/@jridgewell/sourcemap-codec/dist/sourcemap-codec.mjs
- var comma = ",".charCodeAt(0);
- var semicolon = ";".charCodeAt(0);
- var chars = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
- var intToChar = new Uint8Array(64);
- var charToInt = new Uint8Array(128);
- for (let i = 0; i < chars.length; i++) {
- const c = chars.charCodeAt(i);
- intToChar[i] = c;
- charToInt[c] = i;
- }
- function decodeInteger(reader, relative) {
- let value = 0;
- let shift = 0;
- let integer = 0;
- do {
- const c = reader.next();
- integer = charToInt[c];
- value |= (integer & 31) << shift;
- shift += 5;
- } while (integer & 32);
- const shouldNegate = value & 1;
- value >>>= 1;
- if (shouldNegate) {
- value = -2147483648 | -value;
- }
- return relative + value;
- }
- function encodeInteger(builder, num, relative) {
- let delta = num - relative;
- delta = delta < 0 ? -delta << 1 | 1 : delta << 1;
- do {
- let clamped = delta & 31;
- delta >>>= 5;
- if (delta > 0)
- clamped |= 32;
- builder.write(intToChar[clamped]);
- } while (delta > 0);
- return num;
- }
- function hasMoreVlq(reader, max) {
- if (reader.pos >= max)
- return false;
- return reader.peek() !== comma;
- }
- var bufLength = 1024 * 16;
- var td = typeof TextDecoder !== "undefined" ? /* @__PURE__ */ new TextDecoder() : typeof Buffer !== "undefined" ? {
- decode(buf) {
- const out = Buffer.from(buf.buffer, buf.byteOffset, buf.byteLength);
- return out.toString();
- }
- } : {
- decode(buf) {
- let out = "";
- for (let i = 0; i < buf.length; i++) {
- out += String.fromCharCode(buf[i]);
- }
- return out;
- }
- };
- var StringWriter = class {
- constructor() {
- this.pos = 0;
- this.out = "";
- this.buffer = new Uint8Array(bufLength);
- }
- write(v) {
- const { buffer } = this;
- buffer[this.pos++] = v;
- if (this.pos === bufLength) {
- this.out += td.decode(buffer);
- this.pos = 0;
- }
- }
- flush() {
- const { buffer, out, pos } = this;
- return pos > 0 ? out + td.decode(buffer.subarray(0, pos)) : out;
- }
- };
- var StringReader = class {
- constructor(buffer) {
- this.pos = 0;
- this.buffer = buffer;
- }
- next() {
- return this.buffer.charCodeAt(this.pos++);
- }
- peek() {
- return this.buffer.charCodeAt(this.pos);
- }
- indexOf(char) {
- const { buffer, pos } = this;
- const idx = buffer.indexOf(char, pos);
- return idx === -1 ? buffer.length : idx;
- }
- };
- function decode(mappings) {
- const { length } = mappings;
- const reader = new StringReader(mappings);
- const decoded = [];
- let genColumn = 0;
- let sourcesIndex = 0;
- let sourceLine = 0;
- let sourceColumn = 0;
- let namesIndex = 0;
- do {
- const semi = reader.indexOf(";");
- const line = [];
- let sorted = true;
- let lastCol = 0;
- genColumn = 0;
- while (reader.pos < semi) {
- let seg;
- genColumn = decodeInteger(reader, genColumn);
- if (genColumn < lastCol)
- sorted = false;
- lastCol = genColumn;
- if (hasMoreVlq(reader, semi)) {
- sourcesIndex = decodeInteger(reader, sourcesIndex);
- sourceLine = decodeInteger(reader, sourceLine);
- sourceColumn = decodeInteger(reader, sourceColumn);
- if (hasMoreVlq(reader, semi)) {
- namesIndex = decodeInteger(reader, namesIndex);
- seg = [genColumn, sourcesIndex, sourceLine, sourceColumn, namesIndex];
- } else {
- seg = [genColumn, sourcesIndex, sourceLine, sourceColumn];
- }
- } else {
- seg = [genColumn];
- }
- line.push(seg);
- reader.pos++;
- }
- if (!sorted)
- sort(line);
- decoded.push(line);
- reader.pos = semi + 1;
- } while (reader.pos <= length);
- return decoded;
- }
- function sort(line) {
- line.sort(sortComparator);
- }
- function sortComparator(a, b) {
- return a[0] - b[0];
- }
- function encode(decoded) {
- const writer = new StringWriter();
- let sourcesIndex = 0;
- let sourceLine = 0;
- let sourceColumn = 0;
- let namesIndex = 0;
- for (let i = 0; i < decoded.length; i++) {
- const line = decoded[i];
- if (i > 0)
- writer.write(semicolon);
- if (line.length === 0)
- continue;
- let genColumn = 0;
- for (let j = 0; j < line.length; j++) {
- const segment = line[j];
- if (j > 0)
- writer.write(comma);
- genColumn = encodeInteger(writer, segment[0], genColumn);
- if (segment.length === 1)
- continue;
- sourcesIndex = encodeInteger(writer, segment[1], sourcesIndex);
- sourceLine = encodeInteger(writer, segment[2], sourceLine);
- sourceColumn = encodeInteger(writer, segment[3], sourceColumn);
- if (segment.length === 4)
- continue;
- namesIndex = encodeInteger(writer, segment[4], namesIndex);
- }
- }
- return writer.flush();
- }
- // node_modules/.pnpm/@jridgewell+resolve-uri@3.1.2/node_modules/@jridgewell/resolve-uri/dist/resolve-uri.mjs
- var schemeRegex = /^[\w+.-]+:\/\//;
- var urlRegex = /^([\w+.-]+:)\/\/([^@/#?]*@)?([^:/#?]*)(:\d+)?(\/[^#?]*)?(\?[^#]*)?(#.*)?/;
- var fileRegex = /^file:(?:\/\/((?![a-z]:)[^/#?]*)?)?(\/?[^#?]*)(\?[^#]*)?(#.*)?/i;
- function isAbsoluteUrl(input) {
- return schemeRegex.test(input);
- }
- function isSchemeRelativeUrl(input) {
- return input.startsWith("//");
- }
- function isAbsolutePath(input) {
- return input.startsWith("/");
- }
- function isFileUrl(input) {
- return input.startsWith("file:");
- }
- function isRelative(input) {
- return /^[.?#]/.test(input);
- }
- function parseAbsoluteUrl(input) {
- const match = urlRegex.exec(input);
- return makeUrl(match[1], match[2] || "", match[3], match[4] || "", match[5] || "/", match[6] || "", match[7] || "");
- }
- function parseFileUrl(input) {
- const match = fileRegex.exec(input);
- const path6 = match[2];
- return makeUrl("file:", "", match[1] || "", "", isAbsolutePath(path6) ? path6 : "/" + path6, match[3] || "", match[4] || "");
- }
- function makeUrl(scheme, user, host, port, path6, query, hash) {
- return {
- scheme,
- user,
- host,
- port,
- path: path6,
- query,
- hash,
- type: 7
- };
- }
- function parseUrl(input) {
- if (isSchemeRelativeUrl(input)) {
- const url2 = parseAbsoluteUrl("http:" + input);
- url2.scheme = "";
- url2.type = 6;
- return url2;
- }
- if (isAbsolutePath(input)) {
- const url2 = parseAbsoluteUrl("http://foo.com" + input);
- url2.scheme = "";
- url2.host = "";
- url2.type = 5;
- return url2;
- }
- if (isFileUrl(input))
- return parseFileUrl(input);
- if (isAbsoluteUrl(input))
- return parseAbsoluteUrl(input);
- const url = parseAbsoluteUrl("http://foo.com/" + input);
- url.scheme = "";
- url.host = "";
- url.type = input ? input.startsWith("?") ? 3 : input.startsWith("#") ? 2 : 4 : 1;
- return url;
- }
- function stripPathFilename(path6) {
- if (path6.endsWith("/.."))
- return path6;
- const index = path6.lastIndexOf("/");
- return path6.slice(0, index + 1);
- }
- function mergePaths(url, base) {
- normalizePath(base, base.type);
- if (url.path === "/") {
- url.path = base.path;
- } else {
- url.path = stripPathFilename(base.path) + url.path;
- }
- }
- function normalizePath(url, type) {
- const rel = type <= 4;
- const pieces = url.path.split("/");
- let pointer = 1;
- let positive = 0;
- let addTrailingSlash = false;
- for (let i = 1; i < pieces.length; i++) {
- const piece = pieces[i];
- if (!piece) {
- addTrailingSlash = true;
- continue;
- }
- addTrailingSlash = false;
- if (piece === ".")
- continue;
- if (piece === "..") {
- if (positive) {
- addTrailingSlash = true;
- positive--;
- pointer--;
- } else if (rel) {
- pieces[pointer++] = piece;
- }
- continue;
- }
- pieces[pointer++] = piece;
- positive++;
- }
- let path6 = "";
- for (let i = 1; i < pointer; i++) {
- path6 += "/" + pieces[i];
- }
- if (!path6 || addTrailingSlash && !path6.endsWith("/..")) {
- path6 += "/";
- }
- url.path = path6;
- }
- function resolve(input, base) {
- if (!input && !base)
- return "";
- const url = parseUrl(input);
- let inputType = url.type;
- if (base && inputType !== 7) {
- const baseUrl = parseUrl(base);
- const baseType = baseUrl.type;
- switch (inputType) {
- case 1:
- url.hash = baseUrl.hash;
- case 2:
- url.query = baseUrl.query;
- case 3:
- case 4:
- mergePaths(url, baseUrl);
- case 5:
- url.user = baseUrl.user;
- url.host = baseUrl.host;
- url.port = baseUrl.port;
- case 6:
- url.scheme = baseUrl.scheme;
- }
- if (baseType > inputType)
- inputType = baseType;
- }
- normalizePath(url, inputType);
- const queryHash = url.query + url.hash;
- switch (inputType) {
- case 2:
- case 3:
- return queryHash;
- case 4: {
- const path6 = url.path.slice(1);
- if (!path6)
- return queryHash || ".";
- if (isRelative(base || input) && !isRelative(path6)) {
- return "./" + path6 + queryHash;
- }
- return path6 + queryHash;
- }
- case 5:
- return url.path + queryHash;
- default:
- return url.scheme + "//" + url.user + url.host + url.port + url.path + queryHash;
- }
- }
- // node_modules/.pnpm/@jridgewell+trace-mapping@0.3.25/node_modules/@jridgewell/trace-mapping/dist/trace-mapping.mjs
- function resolve2(input, base) {
- if (base && !base.endsWith("/"))
- base += "/";
- return resolve(input, base);
- }
- function stripFilename(path6) {
- if (!path6)
- return "";
- const index = path6.lastIndexOf("/");
- return path6.slice(0, index + 1);
- }
- var COLUMN = 0;
- function maybeSort(mappings, owned) {
- const unsortedIndex = nextUnsortedSegmentLine(mappings, 0);
- if (unsortedIndex === mappings.length)
- return mappings;
- if (!owned)
- mappings = mappings.slice();
- for (let i = unsortedIndex; i < mappings.length; i = nextUnsortedSegmentLine(mappings, i + 1)) {
- mappings[i] = sortSegments(mappings[i], owned);
- }
- return mappings;
- }
- function nextUnsortedSegmentLine(mappings, start) {
- for (let i = start; i < mappings.length; i++) {
- if (!isSorted(mappings[i]))
- return i;
- }
- return mappings.length;
- }
- function isSorted(line) {
- for (let j = 1; j < line.length; j++) {
- if (line[j][COLUMN] < line[j - 1][COLUMN]) {
- return false;
- }
- }
- return true;
- }
- function sortSegments(line, owned) {
- if (!owned)
- line = line.slice();
- return line.sort(sortComparator2);
- }
- function sortComparator2(a, b) {
- return a[COLUMN] - b[COLUMN];
- }
- var found = false;
- function binarySearch(haystack, needle, low, high) {
- while (low <= high) {
- const mid = low + (high - low >> 1);
- const cmp = haystack[mid][COLUMN] - needle;
- if (cmp === 0) {
- found = true;
- return mid;
- }
- if (cmp < 0) {
- low = mid + 1;
- } else {
- high = mid - 1;
- }
- }
- found = false;
- return low - 1;
- }
- function upperBound(haystack, needle, index) {
- for (let i = index + 1; i < haystack.length; index = i++) {
- if (haystack[i][COLUMN] !== needle)
- break;
- }
- return index;
- }
- function lowerBound(haystack, needle, index) {
- for (let i = index - 1; i >= 0; index = i--) {
- if (haystack[i][COLUMN] !== needle)
- break;
- }
- return index;
- }
- function memoizedState() {
- return {
- lastKey: -1,
- lastNeedle: -1,
- lastIndex: -1
- };
- }
- function memoizedBinarySearch(haystack, needle, state, key) {
- const { lastKey, lastNeedle, lastIndex } = state;
- let low = 0;
- let high = haystack.length - 1;
- if (key === lastKey) {
- if (needle === lastNeedle) {
- found = lastIndex !== -1 && haystack[lastIndex][COLUMN] === needle;
- return lastIndex;
- }
- if (needle >= lastNeedle) {
- low = lastIndex === -1 ? 0 : lastIndex;
- } else {
- high = lastIndex;
- }
- }
- state.lastKey = key;
- state.lastNeedle = needle;
- return state.lastIndex = binarySearch(haystack, needle, low, high);
- }
- var LEAST_UPPER_BOUND = -1;
- var GREATEST_LOWER_BOUND = 1;
- var TraceMap = class {
- constructor(map, mapUrl) {
- const isString2 = typeof map === "string";
- if (!isString2 && map._decodedMemo)
- return map;
- const parsed = isString2 ? JSON.parse(map) : map;
- const { version, file, names, sourceRoot, sources, sourcesContent } = parsed;
- this.version = version;
- this.file = file;
- this.names = names || [];
- this.sourceRoot = sourceRoot;
- this.sources = sources;
- this.sourcesContent = sourcesContent;
- this.ignoreList = parsed.ignoreList || parsed.x_google_ignoreList || void 0;
- const from = resolve2(sourceRoot || "", stripFilename(mapUrl));
- this.resolvedSources = sources.map((s) => resolve2(s || "", from));
- const { mappings } = parsed;
- if (typeof mappings === "string") {
- this._encoded = mappings;
- this._decoded = void 0;
- } else {
- this._encoded = void 0;
- this._decoded = maybeSort(mappings, isString2);
- }
- this._decodedMemo = memoizedState();
- this._bySources = void 0;
- this._bySourceMemos = void 0;
- }
- };
- function cast(map) {
- return map;
- }
- function decodedMappings(map) {
- var _a;
- return (_a = cast(map))._decoded || (_a._decoded = decode(cast(map)._encoded));
- }
- function traceSegment(map, line, column) {
- const decoded = decodedMappings(map);
- if (line >= decoded.length)
- return null;
- const segments = decoded[line];
- const index = traceSegmentInternal(segments, cast(map)._decodedMemo, line, column, GREATEST_LOWER_BOUND);
- return index === -1 ? null : segments[index];
- }
- function traceSegmentInternal(segments, memo, line, column, bias) {
- let index = memoizedBinarySearch(segments, column, memo, line);
- if (found) {
- index = (bias === LEAST_UPPER_BOUND ? upperBound : lowerBound)(segments, column, index);
- } else if (bias === LEAST_UPPER_BOUND)
- index++;
- if (index === -1 || index === segments.length)
- return -1;
- return index;
- }
- // node_modules/.pnpm/@jridgewell+set-array@1.2.1/node_modules/@jridgewell/set-array/dist/set-array.mjs
- var SetArray = class {
- constructor() {
- this._indexes = { __proto__: null };
- this.array = [];
- }
- };
- function cast2(set) {
- return set;
- }
- function get(setarr, key) {
- return cast2(setarr)._indexes[key];
- }
- function put(setarr, key) {
- const index = get(setarr, key);
- if (index !== void 0)
- return index;
- const { array, _indexes: indexes } = cast2(setarr);
- const length = array.push(key);
- return indexes[key] = length - 1;
- }
- function remove(setarr, key) {
- const index = get(setarr, key);
- if (index === void 0)
- return;
- const { array, _indexes: indexes } = cast2(setarr);
- for (let i = index + 1; i < array.length; i++) {
- const k = array[i];
- array[i - 1] = k;
- indexes[k]--;
- }
- indexes[key] = void 0;
- array.pop();
- }
- // node_modules/.pnpm/@jridgewell+gen-mapping@0.3.5/node_modules/@jridgewell/gen-mapping/dist/gen-mapping.mjs
- var COLUMN2 = 0;
- var SOURCES_INDEX = 1;
- var SOURCE_LINE = 2;
- var SOURCE_COLUMN = 3;
- var NAMES_INDEX = 4;
- var NO_NAME = -1;
- var GenMapping = class {
- constructor({ file, sourceRoot } = {}) {
- this._names = new SetArray();
- this._sources = new SetArray();
- this._sourcesContent = [];
- this._mappings = [];
- this.file = file;
- this.sourceRoot = sourceRoot;
- this._ignoreList = new SetArray();
- }
- };
- function cast3(map) {
- return map;
- }
- var maybeAddSegment = (map, genLine, genColumn, source, sourceLine, sourceColumn, name, content) => {
- return addSegmentInternal(true, map, genLine, genColumn, source, sourceLine, sourceColumn, name, content);
- };
- function setSourceContent(map, source, content) {
- const { _sources: sources, _sourcesContent: sourcesContent } = cast3(map);
- const index = put(sources, source);
- sourcesContent[index] = content;
- }
- function setIgnore(map, source, ignore = true) {
- const { _sources: sources, _sourcesContent: sourcesContent, _ignoreList: ignoreList } = cast3(map);
- const index = put(sources, source);
- if (index === sourcesContent.length)
- sourcesContent[index] = null;
- if (ignore)
- put(ignoreList, index);
- else
- remove(ignoreList, index);
- }
- function toDecodedMap(map) {
- const { _mappings: mappings, _sources: sources, _sourcesContent: sourcesContent, _names: names, _ignoreList: ignoreList } = cast3(map);
- removeEmptyFinalLines(mappings);
- return {
- version: 3,
- file: map.file || void 0,
- names: names.array,
- sourceRoot: map.sourceRoot || void 0,
- sources: sources.array,
- sourcesContent,
- mappings,
- ignoreList: ignoreList.array
- };
- }
- function toEncodedMap(map) {
- const decoded = toDecodedMap(map);
- return Object.assign(Object.assign({}, decoded), { mappings: encode(decoded.mappings) });
- }
- function addSegmentInternal(skipable, map, genLine, genColumn, source, sourceLine, sourceColumn, name, content) {
- const { _mappings: mappings, _sources: sources, _sourcesContent: sourcesContent, _names: names } = cast3(map);
- const line = getLine(mappings, genLine);
- const index = getColumnIndex(line, genColumn);
- if (!source) {
- if (skipable && skipSourceless(line, index))
- return;
- return insert(line, index, [genColumn]);
- }
- const sourcesIndex = put(sources, source);
- const namesIndex = name ? put(names, name) : NO_NAME;
- if (sourcesIndex === sourcesContent.length)
- sourcesContent[sourcesIndex] = content !== null && content !== void 0 ? content : null;
- if (skipable && skipSource(line, index, sourcesIndex, sourceLine, sourceColumn, namesIndex)) {
- return;
- }
- return insert(line, index, name ? [genColumn, sourcesIndex, sourceLine, sourceColumn, namesIndex] : [genColumn, sourcesIndex, sourceLine, sourceColumn]);
- }
- function getLine(mappings, index) {
- for (let i = mappings.length; i <= index; i++) {
- mappings[i] = [];
- }
- return mappings[index];
- }
- function getColumnIndex(line, genColumn) {
- let index = line.length;
- for (let i = index - 1; i >= 0; index = i--) {
- const current = line[i];
- if (genColumn >= current[COLUMN2])
- break;
- }
- return index;
- }
- function insert(array, index, value) {
- for (let i = array.length; i > index; i--) {
- array[i] = array[i - 1];
- }
- array[index] = value;
- }
- function removeEmptyFinalLines(mappings) {
- const { length } = mappings;
- let len = length;
- for (let i = len - 1; i >= 0; len = i, i--) {
- if (mappings[i].length > 0)
- break;
- }
- if (len < length)
- mappings.length = len;
- }
- function skipSourceless(line, index) {
- if (index === 0)
- return true;
- const prev = line[index - 1];
- return prev.length === 1;
- }
- function skipSource(line, index, sourcesIndex, sourceLine, sourceColumn, namesIndex) {
- if (index === 0)
- return false;
- const prev = line[index - 1];
- if (prev.length === 1)
- return false;
- return sourcesIndex === prev[SOURCES_INDEX] && sourceLine === prev[SOURCE_LINE] && sourceColumn === prev[SOURCE_COLUMN] && namesIndex === (prev.length === 5 ? prev[NAMES_INDEX] : NO_NAME);
- }
- // node_modules/.pnpm/@ampproject+remapping@2.3.0/node_modules/@ampproject/remapping/dist/remapping.mjs
- var SOURCELESS_MAPPING = /* @__PURE__ */ SegmentObject("", -1, -1, "", null, false);
- var EMPTY_SOURCES = [];
- function SegmentObject(source, line, column, name, content, ignore) {
- return { source, line, column, name, content, ignore };
- }
- function Source(map, sources, source, content, ignore) {
- return {
- map,
- sources,
- source,
- content,
- ignore
- };
- }
- function MapSource(map, sources) {
- return Source(map, sources, "", null, false);
- }
- function OriginalSource(source, content, ignore) {
- return Source(null, EMPTY_SOURCES, source, content, ignore);
- }
- function traceMappings(tree) {
- const gen = new GenMapping({ file: tree.map.file });
- const { sources: rootSources, map } = tree;
- const rootNames = map.names;
- const rootMappings = decodedMappings(map);
- for (let i = 0; i < rootMappings.length; i++) {
- const segments = rootMappings[i];
- for (let j = 0; j < segments.length; j++) {
- const segment = segments[j];
- const genCol = segment[0];
- let traced = SOURCELESS_MAPPING;
- if (segment.length !== 1) {
- const source2 = rootSources[segment[1]];
- traced = originalPositionFor(source2, segment[2], segment[3], segment.length === 5 ? rootNames[segment[4]] : "");
- if (traced == null)
- continue;
- }
- const { column, line, name, content, source, ignore } = traced;
- maybeAddSegment(gen, i, genCol, source, line, column, name);
- if (source && content != null)
- setSourceContent(gen, source, content);
- if (ignore)
- setIgnore(gen, source, true);
- }
- }
- return gen;
- }
- function originalPositionFor(source, line, column, name) {
- if (!source.map) {
- return SegmentObject(source.source, line, column, name, source.content, source.ignore);
- }
- const segment = traceSegment(source.map, line, column);
- if (segment == null)
- return null;
- if (segment.length === 1)
- return SOURCELESS_MAPPING;
- return originalPositionFor(source.sources[segment[1]], segment[2], segment[3], segment.length === 5 ? source.map.names[segment[4]] : name);
- }
- function asArray(value) {
- if (Array.isArray(value))
- return value;
- return [value];
- }
- function buildSourceMapTree(input, loader) {
- const maps = asArray(input).map((m) => new TraceMap(m, ""));
- const map = maps.pop();
- for (let i = 0; i < maps.length; i++) {
- if (maps[i].sources.length > 1) {
- throw new Error(`Transformation map ${i} must have exactly one source file.
- Did you specify these with the most recent transformation maps first?`);
- }
- }
- let tree = build(map, loader, "", 0);
- for (let i = maps.length - 1; i >= 0; i--) {
- tree = MapSource(maps[i], [tree]);
- }
- return tree;
- }
- function build(map, loader, importer, importerDepth) {
- const { resolvedSources, sourcesContent, ignoreList } = map;
- const depth = importerDepth + 1;
- const children = resolvedSources.map((sourceFile, i) => {
- const ctx = {
- importer,
- depth,
- source: sourceFile || "",
- content: void 0,
- ignore: void 0
- };
- const sourceMap = loader(ctx.source, ctx);
- const { source, content, ignore } = ctx;
- if (sourceMap)
- return build(new TraceMap(sourceMap, source), loader, source, depth);
- const sourceContent = content !== void 0 ? content : sourcesContent ? sourcesContent[i] : null;
- const ignored = ignore !== void 0 ? ignore : ignoreList ? ignoreList.includes(i) : false;
- return OriginalSource(source, sourceContent, ignored);
- });
- return MapSource(map, children);
- }
- var SourceMap = class {
- constructor(map, options) {
- const out = options.decodedMappings ? toDecodedMap(map) : toEncodedMap(map);
- this.version = out.version;
- this.file = out.file;
- this.mappings = out.mappings;
- this.names = out.names;
- this.ignoreList = out.ignoreList;
- this.sourceRoot = out.sourceRoot;
- this.sources = out.sources;
- if (!options.excludeContent) {
- this.sourcesContent = out.sourcesContent;
- }
- }
- toString() {
- return JSON.stringify(this);
- }
- };
- function remapping(input, loader, options) {
- const opts = typeof options === "object" ? options : { excludeContent: !!options, decodedMappings: false };
- const tree = buildSourceMapTree(input, loader);
- return new SourceMap(traceMappings(tree), opts);
- }
- // src/esbuild/utils.ts
- import { Parser } from "acorn";
- // src/utils.ts
- import { isAbsolute, normalize } from "path";
- function normalizeAbsolutePath(path6) {
- if (isAbsolute(path6))
- return normalize(path6);
- else
- return path6;
- }
- function toArray(array) {
- array = array || [];
- if (Array.isArray(array))
- return array;
- return [array];
- }
- function shouldLoad(id, plugin, externalModules) {
- if (id.startsWith(plugin.__virtualModulePrefix))
- id = decodeURIComponent(id.slice(plugin.__virtualModulePrefix.length));
- if (plugin.loadInclude && !plugin.loadInclude(id))
- return false;
- return !externalModules.has(id);
- }
- function transformUse(data, plugin, transformLoader) {
- if (data.resource == null)
- return [];
- const id = normalizeAbsolutePath(data.resource + (data.resourceQuery || ""));
- if (!plugin.transformInclude || plugin.transformInclude(id)) {
- return [{
- loader: `${transformLoader}?unpluginName=${encodeURIComponent(plugin.name)}`
- }];
- }
- return [];
- }
- // src/esbuild/utils.ts
- var ExtToLoader = {
- ".js": "js",
- ".mjs": "js",
- ".cjs": "js",
- ".jsx": "jsx",
- ".ts": "ts",
- ".cts": "ts",
- ".mts": "ts",
- ".tsx": "tsx",
- ".css": "css",
- ".less": "css",
- ".stylus": "css",
- ".scss": "css",
- ".sass": "css",
- ".json": "json",
- ".txt": "text"
- };
- function guessLoader(code, id) {
- return ExtToLoader[path2.extname(id).toLowerCase()] || "js";
- }
- function unwrapLoader(loader, code, id) {
- if (typeof loader === "function")
- return loader(code, id);
- return loader;
- }
- function fixSourceMap(map) {
- if (!Object.prototype.hasOwnProperty.call(map, "toString")) {
- Object.defineProperty(map, "toString", {
- enumerable: false,
- value: function toString() {
- return JSON.stringify(this);
- }
- });
- }
- if (!Object.prototype.hasOwnProperty.call(map, "toUrl")) {
- Object.defineProperty(map, "toUrl", {
- enumerable: false,
- value: function toUrl() {
- return `data:application/json;charset=utf-8;base64,${Buffer2.from(this.toString()).toString("base64")}`;
- }
- });
- }
- return map;
- }
- var nullSourceMap = {
- names: [],
- sources: [],
- mappings: "",
- version: 3
- };
- function combineSourcemaps(filename, sourcemapList) {
- sourcemapList = sourcemapList.filter((m) => m.sources);
- if (sourcemapList.length === 0 || sourcemapList.every((m) => m.sources.length === 0)) {
- return { ...nullSourceMap };
- }
- let map;
- let mapIndex = 1;
- const useArrayInterface = sourcemapList.slice(0, -1).find((m) => m.sources.length !== 1) === void 0;
- if (useArrayInterface) {
- map = remapping(sourcemapList, () => null, true);
- } else {
- map = remapping(
- sourcemapList[0],
- (sourcefile) => {
- if (sourcefile === filename && sourcemapList[mapIndex])
- return sourcemapList[mapIndex++];
- else
- return { ...nullSourceMap };
- },
- true
- );
- }
- if (!map.file)
- delete map.file;
- return map;
- }
- function createBuildContext(build2) {
- const watchFiles = [];
- const { initialOptions } = build2;
- return {
- parse(code, opts = {}) {
- return Parser.parse(code, {
- sourceType: "module",
- ecmaVersion: "latest",
- locations: true,
- ...opts
- });
- },
- addWatchFile() {
- throw new Error("unplugin/esbuild: addWatchFile outside supported hooks (resolveId, load, transform)");
- },
- emitFile(emittedFile) {
- const outFileName = emittedFile.fileName || emittedFile.name;
- if (initialOptions.outdir && emittedFile.source && outFileName) {
- const outPath = path2.resolve(initialOptions.outdir, outFileName);
- const outDir = path2.dirname(outPath);
- if (!fs.existsSync(outDir))
- fs.mkdirSync(outDir, { recursive: true });
- fs.writeFileSync(outPath, emittedFile.source);
- }
- },
- getWatchFiles() {
- return watchFiles;
- },
- getNativeBuildContext() {
- return { framework: "esbuild", build: build2 };
- }
- };
- }
- function createPluginContext(context) {
- const errors = [];
- const warnings = [];
- const pluginContext = {
- error(message) {
- errors.push(normalizeMessage(message));
- },
- warn(message) {
- warnings.push(normalizeMessage(message));
- }
- };
- const mixedContext = {
- ...context,
- ...pluginContext,
- addWatchFile(id) {
- context.getWatchFiles().push(id);
- }
- };
- return {
- errors,
- warnings,
- mixedContext
- };
- }
- function normalizeMessage(message) {
- if (typeof message === "string")
- message = { message };
- return {
- id: message.id,
- pluginName: message.plugin,
- text: message.message,
- location: message.loc ? {
- file: message.loc.file,
- line: message.loc.line,
- column: message.loc.column
- } : null,
- detail: message.meta,
- notes: []
- };
- }
- function processCodeWithSourceMap(map, code) {
- if (map) {
- if (!map.sourcesContent || map.sourcesContent.length === 0)
- map.sourcesContent = [code];
- map = fixSourceMap(map);
- code += `
- //# sourceMappingURL=${map.toUrl()}`;
- }
- return code;
- }
- // src/esbuild/index.ts
- function getEsbuildPlugin(factory) {
- return (userOptions) => {
- const meta = {
- framework: "esbuild"
- };
- const plugins = toArray(factory(userOptions, meta));
- const setupPlugins = async (build2) => {
- const setup = buildSetup(meta);
- const loaders = [];
- for (const plugin of plugins) {
- const loader = {};
- await setup(plugin)({
- ...build2,
- onLoad(_options, callback) {
- loader.options = _options;
- loader.onLoadCb = callback;
- },
- onTransform(_options, callback) {
- loader.options || (loader.options = _options);
- loader.onTransformCb = callback;
- }
- });
- if (loader.onLoadCb || loader.onTransformCb)
- loaders.push(loader);
- }
- if (loaders.length) {
- build2.onLoad(loaders.length === 1 ? loaders[0].options : { filter: /.*/ }, async (args) => {
- function checkFilter(options) {
- return loaders.length === 1 || !(options == null ? void 0 : options.filter) || options.filter.test(args.path);
- }
- let result;
- for (const { options, onLoadCb } of loaders) {
- if (!checkFilter(options))
- continue;
- if (onLoadCb)
- result = await onLoadCb(args);
- if (result == null ? void 0 : result.contents)
- break;
- }
- let fsContentsCache;
- for (const { options, onTransformCb } of loaders) {
- if (!checkFilter(options))
- continue;
- if (onTransformCb) {
- const newArgs = {
- ...result,
- ...args,
- async getContents() {
- if (result == null ? void 0 : result.contents)
- return result.contents;
- if (fsContentsCache)
- return fsContentsCache;
- return fsContentsCache = await fs2.promises.readFile(args.path, "utf8");
- }
- };
- const _result = await onTransformCb(newArgs);
- if (_result == null ? void 0 : _result.contents)
- result = _result;
- }
- }
- if (result == null ? void 0 : result.contents)
- return result;
- });
- }
- };
- return {
- name: (plugins.length === 1 ? plugins[0].name : meta.esbuildHostName) ?? `unplugin-host:${plugins.map((p) => p.name).join(":")}`,
- setup: setupPlugins
- };
- };
- }
- function buildSetup(meta) {
- return (plugin) => {
- return (_build) => {
- var _a, _b, _c, _d, _e;
- const build2 = meta.build = _build;
- const context = createBuildContext(build2);
- const { onStart, onEnd, onResolve, onLoad, onTransform, initialOptions } = build2;
- const onResolveFilter = ((_a = plugin.esbuild) == null ? void 0 : _a.onResolveFilter) ?? /.*/;
- const onLoadFilter = ((_b = plugin.esbuild) == null ? void 0 : _b.onLoadFilter) ?? /.*/;
- const loader = ((_c = plugin.esbuild) == null ? void 0 : _c.loader) ?? guessLoader;
- if ((_d = plugin.esbuild) == null ? void 0 : _d.config)
- plugin.esbuild.config.call(context, initialOptions);
- if (plugin.buildStart)
- onStart(() => plugin.buildStart.call(context));
- if (plugin.buildEnd || plugin.writeBundle) {
- onEnd(async () => {
- if (plugin.buildEnd)
- await plugin.buildEnd.call(context);
- if (plugin.writeBundle)
- await plugin.writeBundle();
- });
- }
- if (plugin.resolveId) {
- onResolve({ filter: onResolveFilter }, async (args) => {
- var _a2;
- if ((_a2 = initialOptions.external) == null ? void 0 : _a2.includes(args.path)) {
- return void 0;
- }
- const { errors, warnings, mixedContext } = createPluginContext(context);
- const isEntry = args.kind === "entry-point";
- const result = await plugin.resolveId.call(
- mixedContext,
- args.path,
- // We explicitly have this if statement here for consistency with
- // the integration of other bundlers.
- // Here, `args.importer` is just an empty string on entry files
- // whereas the equivalent on other bundlers is`undefined.`
- isEntry ? void 0 : args.importer,
- { isEntry }
- );
- if (typeof result === "string") {
- return {
- path: result,
- namespace: plugin.name,
- errors,
- warnings,
- watchFiles: mixedContext.getWatchFiles()
- };
- } else if (typeof result === "object" && result !== null) {
- return {
- path: result.id,
- external: result.external,
- namespace: plugin.name,
- errors,
- warnings,
- watchFiles: mixedContext.getWatchFiles()
- };
- }
- });
- }
- if (plugin.load) {
- onLoad({ filter: onLoadFilter }, async (args) => {
- const id = args.path + args.suffix;
- const { errors, warnings, mixedContext } = createPluginContext(context);
- const resolveDir = path3.dirname(args.path);
- let code, map;
- if (plugin.load && (!plugin.loadInclude || plugin.loadInclude(id))) {
- const result = await plugin.load.call(mixedContext, id);
- if (typeof result === "string") {
- code = result;
- } else if (typeof result === "object" && result !== null) {
- code = result.code;
- map = result.map;
- }
- }
- if (code === void 0)
- return null;
- if (map)
- code = processCodeWithSourceMap(map, code);
- return {
- contents: code,
- errors,
- warnings,
- watchFiles: mixedContext.getWatchFiles(),
- loader: unwrapLoader(loader, code, args.path),
- resolveDir
- };
- });
- }
- if (plugin.transform) {
- onTransform({ filter: onLoadFilter }, async (args) => {
- const id = args.path + args.suffix;
- if (plugin.transformInclude && !plugin.transformInclude(id))
- return;
- const { mixedContext, errors, warnings } = createPluginContext(context);
- const resolveDir = path3.dirname(args.path);
- let code = await args.getContents();
- let map;
- const result = await plugin.transform.call(mixedContext, code, id);
- if (typeof result === "string") {
- code = result;
- } else if (typeof result === "object" && result !== null) {
- code = result.code;
- if (map && result.map) {
- map = combineSourcemaps(args.path, [
- result.map === "string" ? JSON.parse(result.map) : result.map,
- map
- ]);
- } else {
- if (typeof result.map === "string") {
- map = JSON.parse(result.map);
- } else {
- map = result.map;
- }
- }
- }
- if (code) {
- if (map)
- code = processCodeWithSourceMap(map, code);
- return {
- contents: code,
- errors,
- warnings,
- watchFiles: mixedContext.getWatchFiles(),
- loader: unwrapLoader(loader, code, args.path),
- resolveDir
- };
- }
- });
- }
- if ((_e = plugin.esbuild) == null ? void 0 : _e.setup)
- return plugin.esbuild.setup(meta.build);
- };
- };
- }
- // src/farm/index.ts
- import path5 from "path";
- // src/farm/context.ts
- import { Buffer as Buffer3 } from "buffer";
- import { extname } from "path";
- import { Parser as Parser2 } from "acorn";
- function createFarmContext(context, currentResolveId) {
- return {
- parse(code, opts = {}) {
- return Parser2.parse(code, {
- sourceType: "module",
- ecmaVersion: "latest",
- locations: true,
- ...opts
- });
- },
- addWatchFile(id) {
- context.addWatchFile(currentResolveId || id, id);
- },
- emitFile(emittedFile) {
- const outFileName = emittedFile.fileName || emittedFile.name;
- if (emittedFile.source && outFileName) {
- context.emitFile({
- resolvedPath: outFileName,
- name: outFileName,
- content: [...Buffer3.from(emittedFile.source)],
- resourceType: extname(outFileName)
- });
- }
- },
- getWatchFiles() {
- return context.getWatchFiles();
- },
- getNativeBuildContext() {
- return { framework: "farm", context };
- }
- };
- }
- function unpluginContext(context) {
- return {
- error: (error) => context.error(
- typeof error === "string" ? new Error(error) : error
- ),
- warn: (error) => context.warn(typeof error === "string" ? new Error(error) : error)
- };
- }
- // src/farm/utils.ts
- import path4 from "path";
- import * as querystring from "querystring";
- var ExtToLoader2 = {
- ".js": "js",
- ".mjs": "js",
- ".cjs": "js",
- ".jsx": "jsx",
- ".ts": "ts",
- ".cts": "ts",
- ".mts": "ts",
- ".tsx": "tsx",
- ".json": "json",
- ".toml": "toml",
- ".text": "text",
- ".wasm": "wasm",
- ".napi": "napi",
- ".node": "napi"
- };
- function guessIdLoader(id) {
- return ExtToLoader2[path4.extname(id).toLowerCase()] || "js";
- }
- function transformQuery(context) {
- const queryParamsObject = {};
- context.query.forEach(([param, value]) => {
- queryParamsObject[param] = value;
- });
- const transformQuery2 = querystring.stringify(queryParamsObject);
- context.resolvedPath = `${context.resolvedPath}?${transformQuery2}`;
- }
- function convertEnforceToPriority(value) {
- const defaultPriority = 100;
- const enforceToPriority = {
- pre: 101,
- post: 99
- };
- return enforceToPriority[value] !== void 0 ? enforceToPriority[value] : defaultPriority;
- }
- function convertWatchEventChange(value) {
- const watchEventChange = {
- Added: "create",
- Updated: "update",
- Removed: "delete"
- };
- return watchEventChange[value];
- }
- function getContentValue(content) {
- return typeof content === "string" ? content : content.code;
- }
- function isString(variable) {
- return typeof variable === "string";
- }
- function isObject(variable) {
- return typeof variable === "object" && variable !== null;
- }
- function customParseQueryString(url) {
- if (!url)
- return [];
- const queryString = url.split("?")[1];
- const parsedParams = querystring.parse(queryString);
- const paramsArray = [];
- for (const key in parsedParams)
- paramsArray.push([key, parsedParams[key]]);
- return paramsArray;
- }
- // src/farm/index.ts
- function getFarmPlugin(factory) {
- return (userOptions) => {
- const meta = {
- framework: "farm"
- };
- const rawPlugins = toArray(factory(userOptions, meta));
- const plugins = rawPlugins.map((rawPlugin) => {
- const plugin = toFarmPlugin(rawPlugin, userOptions);
- if (rawPlugin.farm)
- Object.assign(plugin, rawPlugin.farm);
- return plugin;
- });
- return plugins.length === 1 ? plugins[0] : plugins;
- };
- }
- function toFarmPlugin(plugin, options) {
- const farmPlugin = {
- name: plugin.name,
- priority: convertEnforceToPriority(plugin.enforce)
- };
- if (plugin.farm) {
- Object.keys(plugin.farm).forEach((key) => {
- const value = plugin.farm[key];
- if (value)
- Reflect.set(farmPlugin, key, value);
- });
- }
- if (plugin.buildStart) {
- const _buildStart = plugin.buildStart;
- farmPlugin.buildStart = {
- async executor(_, context) {
- await _buildStart.call(createFarmContext(context));
- }
- };
- }
- if (plugin.resolveId) {
- const _resolveId = plugin.resolveId;
- let filters = [];
- if (options)
- filters = (options == null ? void 0 : options.filters) ?? [];
- farmPlugin.resolve = {
- filters: { sources: [".*", ...filters], importers: [".*"] },
- async executor(params, context) {
- const resolvedIdPath = path5.resolve(
- process.cwd(),
- params.importer ?? ""
- );
- let isEntry = false;
- if (isObject(params.kind) && "entry" in params.kind) {
- const kindWithEntry = params.kind;
- isEntry = kindWithEntry.entry === "index";
- }
- const farmContext = createFarmContext(context, resolvedIdPath);
- const resolveIdResult = await _resolveId.call(
- Object.assign(unpluginContext(context), farmContext),
- params.source,
- resolvedIdPath ?? null,
- { isEntry }
- );
- if (isString(resolveIdResult)) {
- return {
- resolvedPath: resolveIdResult,
- query: customParseQueryString(resolveIdResult),
- sideEffects: false,
- external: false,
- meta: {}
- };
- } else if (isObject(resolveIdResult)) {
- return {
- resolvedPath: resolveIdResult == null ? void 0 : resolveIdResult.id,
- query: customParseQueryString(resolveIdResult.id),
- sideEffects: false,
- external: resolveIdResult == null ? void 0 : resolveIdResult.external,
- meta: {}
- };
- }
- return null;
- }
- };
- }
- if (plugin.load) {
- const _load = plugin.load;
- farmPlugin.load = {
- filters: {
- resolvedPaths: [".*"]
- },
- async executor(id, context) {
- if (plugin.loadInclude && !plugin.loadInclude(id.resolvedPath))
- return null;
- const loader = guessIdLoader(id.resolvedPath);
- const shouldLoadInclude = plugin.loadInclude && plugin.loadInclude(id.resolvedPath);
- const farmContext = createFarmContext(context, id.resolvedPath);
- const content = await _load.call(
- Object.assign(unpluginContext(context), farmContext),
- id.resolvedPath
- );
- const loadFarmResult = {
- content: getContentValue(content),
- moduleType: loader
- };
- if (shouldLoadInclude)
- return loadFarmResult;
- return null;
- }
- };
- }
- if (plugin.transform) {
- const _transform = plugin.transform;
- farmPlugin.transform = {
- filters: { resolvedPaths: [".*"], moduleTypes: [".*"] },
- async executor(params, context) {
- if (params.query.length)
- transformQuery(params);
- if (plugin.transformInclude && !plugin.transformInclude(params.resolvedPath)) {
- return null;
- }
- const loader = params.moduleType ?? guessIdLoader(params.resolvedPath);
- const shouldTransformInclude = plugin.transformInclude && plugin.transformInclude(params.resolvedPath);
- const farmContext = createFarmContext(context, params.resolvedPath);
- const resource = await _transform.call(
- Object.assign(unpluginContext(context), farmContext),
- params.content,
- params.resolvedPath
- );
- if (resource && typeof resource !== "string") {
- const transformFarmResult = {
- content: getContentValue(resource),
- moduleType: loader,
- sourceMap: JSON.stringify(resource.map)
- };
- if (shouldTransformInclude)
- return transformFarmResult;
- return transformFarmResult;
- }
- }
- };
- }
- if (plugin.watchChange) {
- const _watchChange = plugin.watchChange;
- farmPlugin.updateModules = {
- async executor(param, context) {
- const updatePathContent = param.paths[0];
- const ModifiedPath = updatePathContent[0];
- const eventChange = convertWatchEventChange(
- updatePathContent[1]
- );
- await _watchChange.call(createFarmContext(context), ModifiedPath, {
- event: eventChange
- });
- }
- };
- }
- if (plugin.buildEnd) {
- const _buildEnd = plugin.buildEnd;
- farmPlugin.buildEnd = {
- async executor(_, context) {
- await _buildEnd.call(createFarmContext(context));
- }
- };
- }
- if (plugin.writeBundle) {
- const _writeBundle = plugin.writeBundle;
- farmPlugin.finish = {
- async executor() {
- await _writeBundle();
- }
- };
- }
- return farmPlugin;
- }
- // src/rollup/index.ts
- function getRollupPlugin(factory) {
- return (userOptions) => {
- const meta = {
- framework: "rollup"
- };
- const rawPlugins = toArray(factory(userOptions, meta));
- const plugins = rawPlugins.map((plugin) => toRollupPlugin(plugin));
- return plugins.length === 1 ? plugins[0] : plugins;
- };
- }
- function toRollupPlugin(plugin, containRollupOptions = true) {
- if (plugin.transform && plugin.transformInclude) {
- const _transform = plugin.transform;
- plugin.transform = function(code, id) {
- if (plugin.transformInclude && !plugin.transformInclude(id))
- return null;
- return _transform.call(this, code, id);
- };
- }
- if (plugin.load && plugin.loadInclude) {
- const _load = plugin.load;
- plugin.load = function(id) {
- if (plugin.loadInclude && !plugin.loadInclude(id))
- return null;
- return _load.call(this, id);
- };
- }
- if (plugin.rollup && containRollupOptions)
- Object.assign(plugin, plugin.rollup);
- return plugin;
- }
- // src/rolldown/index.ts
- function getRolldownPlugin(factory) {
- return (userOptions) => {
- const meta = {
- framework: "rolldown"
- };
- const rawPlugins = toArray(factory(userOptions, meta));
- const plugins = rawPlugins.map((rawPlugin) => {
- const plugin = toRollupPlugin(rawPlugin, false);
- if (rawPlugin.rolldown)
- Object.assign(plugin, rawPlugin.rolldown);
- return plugin;
- });
- return plugins.length === 1 ? plugins[0] : plugins;
- };
- }
- // src/rspack/index.ts
- import fs4 from "fs";
- import { resolve as resolve5 } from "path";
- // src/rspack/context.ts
- import { resolve as resolve3 } from "path";
- import { Buffer as Buffer4 } from "buffer";
- import { Parser as Parser3 } from "acorn";
- function createBuildContext2(compiler, compilation, loaderContext) {
- return {
- getNativeBuildContext() {
- return {
- framework: "rspack",
- compiler,
- compilation,
- loaderContext
- };
- },
- addWatchFile(file) {
- compilation.fileDependencies.add(resolve3(process.cwd(), file));
- },
- getWatchFiles() {
- return Array.from(compilation.fileDependencies);
- },
- parse(code, opts = {}) {
- return Parser3.parse(code, {
- sourceType: "module",
- ecmaVersion: "latest",
- locations: true,
- ...opts
- });
- },
- emitFile(emittedFile) {
- const outFileName = emittedFile.fileName || emittedFile.name;
- if (emittedFile.source && outFileName) {
- const { sources } = compilation.compiler.webpack;
- compilation.emitAsset(
- outFileName,
- new sources.RawSource(
- typeof emittedFile.source === "string" ? emittedFile.source : Buffer4.from(emittedFile.source)
- )
- );
- }
- }
- };
- }
- function normalizeMessage2(error) {
- const err = new Error(typeof error === "string" ? error : error.message);
- if (typeof error === "object") {
- err.stack = error.stack;
- err.cause = error.meta;
- }
- return err;
- }
- // src/rspack/utils.ts
- import fs3 from "fs";
- import { basename, dirname, resolve as resolve4 } from "path";
- function encodeVirtualModuleId(id, plugin) {
- return resolve4(plugin.__virtualModulePrefix, encodeURIComponent(id));
- }
- function decodeVirtualModuleId(encoded, _plugin) {
- return decodeURIComponent(basename(encoded));
- }
- function isVirtualModuleId(encoded, plugin) {
- return dirname(encoded) === plugin.__virtualModulePrefix;
- }
- var FakeVirtualModulesPlugin = class {
- constructor(plugin) {
- this.plugin = plugin;
- }
- name = "FakeVirtualModulesPlugin";
- apply(compiler) {
- const dir = this.plugin.__virtualModulePrefix;
- if (!fs3.existsSync(dir)) {
- fs3.mkdirSync(dir, { recursive: true });
- }
- compiler.hooks.shutdown.tap(this.name, () => {
- if (fs3.existsSync(dir)) {
- fs3.rmdirSync(dir, { recursive: true });
- }
- });
- }
- async writeModule(file) {
- const path6 = encodeVirtualModuleId(file, this.plugin);
- await fs3.promises.writeFile(path6, "");
- return path6;
- }
- };
- // src/rspack/index.ts
- var TRANSFORM_LOADER = resolve5(
- __dirname,
- false ? "../../dist/rspack/loaders/transform.js" : "rspack/loaders/transform"
- );
- var LOAD_LOADER = resolve5(
- __dirname,
- false ? "../../dist/rspack/loaders/load.js" : "rspack/loaders/load"
- );
- function getRspackPlugin(factory) {
- return (userOptions) => {
- return {
- apply(compiler) {
- const VIRTUAL_MODULE_PREFIX = resolve5(compiler.options.context ?? process.cwd(), "node_modules/.virtual");
- const injected = compiler.$unpluginContext || {};
- compiler.$unpluginContext = injected;
- const meta = {
- framework: "rspack",
- rspack: {
- compiler
- }
- };
- const rawPlugins = toArray(factory(userOptions, meta));
- for (const rawPlugin of rawPlugins) {
- const plugin = Object.assign(
- rawPlugin,
- {
- __unpluginMeta: meta,
- __virtualModulePrefix: VIRTUAL_MODULE_PREFIX
- }
- );
- injected[plugin.name] = plugin;
- compiler.hooks.thisCompilation.tap(plugin.name, (compilation) => {
- if (typeof compilation.hooks.childCompiler === "undefined")
- throw new Error("`compilation.hooks.childCompiler` only support by @rspack/core>=0.4.1");
- compilation.hooks.childCompiler.tap(plugin.name, (childCompiler) => {
- childCompiler.$unpluginContext = injected;
- });
- });
- const externalModules = /* @__PURE__ */ new Set();
- if (plugin.resolveId) {
- const vfs = new FakeVirtualModulesPlugin(plugin);
- vfs.apply(compiler);
- plugin.__vfsModules = /* @__PURE__ */ new Set();
- compiler.hooks.compilation.tap(plugin.name, (compilation, { normalModuleFactory }) => {
- normalModuleFactory.hooks.resolve.tapPromise(plugin.name, async (resolveData) => {
- const id = normalizeAbsolutePath(resolveData.request);
- const requestContext = resolveData.contextInfo;
- const importer = requestContext.issuer !== "" ? requestContext.issuer : void 0;
- const isEntry = requestContext.issuer === "";
- const context = createBuildContext2(compiler, compilation);
- let error;
- const pluginContext = {
- error(msg) {
- if (error == null)
- error = normalizeMessage2(msg);
- else
- console.error(`unplugin/rspack: multiple errors returned from resolveId hook: ${msg}`);
- },
- warn(msg) {
- console.warn(`unplugin/rspack: warning from resolveId hook: ${msg}`);
- }
- };
- const resolveIdResult = await plugin.resolveId.call({ ...context, ...pluginContext }, id, importer, { isEntry });
- if (error != null)
- throw error;
- if (resolveIdResult == null)
- return;
- let resolved = typeof resolveIdResult === "string" ? resolveIdResult : resolveIdResult.id;
- const isExternal = typeof resolveIdResult === "string" ? false : resolveIdResult.external === true;
- if (isExternal)
- externalModules.add(resolved);
- if (!fs4.existsSync(resolved)) {
- if (!plugin.__vfsModules.has(resolved)) {
- plugin.__vfsModules.add(resolved);
- await vfs.writeModule(resolved);
- }
- resolved = encodeVirtualModuleId(resolved, plugin);
- }
- resolveData.request = resolved;
- });
- });
- }
- if (plugin.load) {
- compiler.options.module.rules.unshift({
- enforce: plugin.enforce,
- include(id) {
- if (isVirtualModuleId(id, plugin))
- id = decodeVirtualModuleId(id, plugin);
- if (plugin.loadInclude && !plugin.loadInclude(id))
- return false;
- return !externalModules.has(id);
- },
- use: [{
- loader: LOAD_LOADER,
- options: {
- unpluginName: plugin.name
- }
- }],
- type: "javascript/auto"
- });
- }
- if (plugin.transform) {
- compiler.options.module.rules.unshift({
- enforce: plugin.enforce,
- use(data) {
- return transformUse(data, plugin, TRANSFORM_LOADER);
- }
- });
- }
- if (plugin.rspack)
- plugin.rspack(compiler);
- if (plugin.watchChange || plugin.buildStart) {
- compiler.hooks.make.tapPromise(plugin.name, async (compilation) => {
- const context = createBuildContext2(compiler, compilation);
- if (plugin.watchChange && (compiler.modifiedFiles || compiler.removedFiles)) {
- const promises = [];
- if (compiler.modifiedFiles) {
- compiler.modifiedFiles.forEach(
- (file) => promises.push(Promise.resolve(plugin.watchChange.call(context, file, { event: "update" })))
- );
- }
- if (compiler.removedFiles) {
- compiler.removedFiles.forEach(
- (file) => promises.push(Promise.resolve(plugin.watchChange.call(context, file, { event: "delete" })))
- );
- }
- await Promise.all(promises);
- }
- if (plugin.buildStart)
- return await plugin.buildStart.call(context);
- });
- }
- if (plugin.buildEnd) {
- compiler.hooks.emit.tapPromise(plugin.name, async (compilation) => {
- await plugin.buildEnd.call(createBuildContext2(compiler, compilation));
- });
- }
- if (plugin.writeBundle) {
- compiler.hooks.afterEmit.tapPromise(plugin.name, async () => {
- await plugin.writeBundle();
- });
- }
- }
- }
- };
- };
- }
- // src/vite/index.ts
- function getVitePlugin(factory) {
- return (userOptions) => {
- const meta = {
- framework: "vite"
- };
- const rawPlugins = toArray(factory(userOptions, meta));
- const plugins = rawPlugins.map((rawPlugin) => {
- const plugin = toRollupPlugin(rawPlugin, false);
- if (rawPlugin.vite)
- Object.assign(plugin, rawPlugin.vite);
- return plugin;
- });
- return plugins.length === 1 ? plugins[0] : plugins;
- };
- }
- // src/webpack/index.ts
- import fs5 from "fs";
- import { resolve as resolve7 } from "path";
- import process3 from "process";
- import VirtualModulesPlugin from "webpack-virtual-modules";
- // src/webpack/context.ts
- import { resolve as resolve6 } from "path";
- import { Buffer as Buffer5 } from "buffer";
- import process2 from "process";
- import { createRequire } from "module";
- import { Parser as Parser4 } from "acorn";
- function contextOptionsFromCompilation(compilation) {
- return {
- addWatchFile(file) {
- (compilation.fileDependencies ?? compilation.compilationDependencies).add(file);
- },
- getWatchFiles() {
- return Array.from(compilation.fileDependencies ?? compilation.compilationDependencies);
- }
- };
- }
- function createBuildContext3(options, compiler, compilation, loaderContext) {
- const require2 = createRequire(import.meta.url);
- const sources = require2("webpack-sources");
- return {
- parse(code, opts = {}) {
- return Parser4.parse(code, {
- sourceType: "module",
- ecmaVersion: "latest",
- locations: true,
- ...opts
- });
- },
- addWatchFile(id) {
- options.addWatchFile(resolve6(process2.cwd(), id));
- },
- emitFile(emittedFile) {
- const outFileName = emittedFile.fileName || emittedFile.name;
- if (emittedFile.source && outFileName) {
- if (!compilation)
- throw new Error("unplugin/webpack: emitFile outside supported hooks (buildStart, buildEnd, load, transform, watchChange)");
- compilation.emitAsset(
- outFileName,
- sources ? new sources.RawSource(
- // @ts-expect-error types mismatch
- typeof emittedFile.source === "string" ? emittedFile.source : Buffer5.from(emittedFile.source)
- ) : {
- source: () => emittedFile.source,
- size: () => emittedFile.source.length
- }
- );
- }
- },
- getWatchFiles() {
- return options.getWatchFiles();
- },
- getNativeBuildContext() {
- return { framework: "webpack", compiler, compilation, loaderContext };
- }
- };
- }
- function normalizeMessage3(error) {
- const err = new Error(typeof error === "string" ? error : error.message);
- if (typeof error === "object") {
- err.stack = error.stack;
- err.cause = error.meta;
- }
- return err;
- }
- // src/webpack/index.ts
- var TRANSFORM_LOADER2 = resolve7(
- __dirname,
- false ? "../../dist/webpack/loaders/transform" : "webpack/loaders/transform"
- );
- var LOAD_LOADER2 = resolve7(
- __dirname,
- false ? "../../dist/webpack/loaders/load" : "webpack/loaders/load"
- );
- function getWebpackPlugin(factory) {
- return (userOptions) => {
- return {
- apply(compiler) {
- const VIRTUAL_MODULE_PREFIX = resolve7(compiler.options.context ?? process3.cwd(), "_virtual_");
- const injected = compiler.$unpluginContext || {};
- compiler.$unpluginContext = injected;
- const meta = {
- framework: "webpack",
- webpack: {
- compiler
- }
- };
- const rawPlugins = toArray(factory(userOptions, meta));
- for (const rawPlugin of rawPlugins) {
- const plugin = Object.assign(
- rawPlugin,
- {
- __unpluginMeta: meta,
- __virtualModulePrefix: VIRTUAL_MODULE_PREFIX
- }
- );
- injected[plugin.name] = plugin;
- compiler.hooks.thisCompilation.tap(plugin.name, (compilation) => {
- compilation.hooks.childCompiler.tap(plugin.name, (childCompiler) => {
- childCompiler.$unpluginContext = injected;
- });
- });
- const externalModules = /* @__PURE__ */ new Set();
- if (plugin.resolveId) {
- let vfs = compiler.options.plugins.find((i) => i instanceof VirtualModulesPlugin);
- if (!vfs) {
- vfs = new VirtualModulesPlugin();
- compiler.options.plugins.push(vfs);
- }
- plugin.__vfsModules = /* @__PURE__ */ new Set();
- plugin.__vfs = vfs;
- const resolverPlugin = {
- apply(resolver) {
- const target = resolver.ensureHook("resolve");
- resolver.getHook("resolve").tapAsync(plugin.name, async (request, resolveContext, callback) => {
- if (!request.request)
- return callback();
- if (normalizeAbsolutePath(request.request).startsWith(plugin.__virtualModulePrefix))
- return callback();
- const id = normalizeAbsolutePath(request.request);
- const requestContext = request.context;
- const importer = requestContext.issuer !== "" ? requestContext.issuer : void 0;
- const isEntry = requestContext.issuer === "";
- const fileDependencies = /* @__PURE__ */ new Set();
- const context = createBuildContext3({
- addWatchFile(file) {
- var _a;
- fileDependencies.add(file);
- (_a = resolveContext.fileDependencies) == null ? void 0 : _a.add(file);
- },
- getWatchFiles() {
- return Array.from(fileDependencies);
- }
- }, compiler);
- let error;
- const pluginContext = {
- error(msg) {
- if (error == null)
- error = normalizeMessage3(msg);
- else
- console.error(`unplugin/webpack: multiple errors returned from resolveId hook: ${msg}`);
- },
- warn(msg) {
- console.warn(`unplugin/webpack: warning from resolveId hook: ${msg}`);
- }
- };
- const resolveIdResult = await plugin.resolveId.call({ ...context, ...pluginContext }, id, importer, { isEntry });
- if (error != null)
- return callback(error);
- if (resolveIdResult == null)
- return callback();
- let resolved = typeof resolveIdResult === "string" ? resolveIdResult : resolveIdResult.id;
- const isExternal = typeof resolveIdResult === "string" ? false : resolveIdResult.external === true;
- if (isExternal)
- externalModules.add(resolved);
- if (!fs5.existsSync(resolved)) {
- resolved = normalizeAbsolutePath(
- plugin.__virtualModulePrefix + encodeURIComponent(resolved)
- // URI encode id so webpack doesn't think it's part of the path
- );
- if (!plugin.__vfsModules.has(resolved)) {
- plugin.__vfs.writeModule(resolved, "");
- plugin.__vfsModules.add(resolved);
- }
- }
- const newRequest = {
- ...request,
- request: resolved
- };
- resolver.doResolve(target, newRequest, null, resolveContext, callback);
- });
- }
- };
- compiler.options.resolve.plugins = compiler.options.resolve.plugins || [];
- compiler.options.resolve.plugins.push(resolverPlugin);
- }
- if (plugin.load) {
- compiler.options.module.rules.unshift({
- include(id) {
- return shouldLoad(id, plugin, externalModules);
- },
- enforce: plugin.enforce,
- use: [{
- loader: LOAD_LOADER2,
- options: {
- unpluginName: plugin.name
- }
- }],
- type: "javascript/auto"
- });
- }
- if (plugin.transform) {
- compiler.options.module.rules.unshift({
- enforce: plugin.enforce,
- use(data) {
- return transformUse(data, plugin, TRANSFORM_LOADER2);
- }
- });
- }
- if (plugin.webpack)
- plugin.webpack(compiler);
- if (plugin.watchChange || plugin.buildStart) {
- compiler.hooks.make.tapPromise(plugin.name, async (compilation) => {
- const context = createBuildContext3(contextOptionsFromCompilation(compilation), compiler, compilation);
- if (plugin.watchChange && (compiler.modifiedFiles || compiler.removedFiles)) {
- const promises = [];
- if (compiler.modifiedFiles) {
- compiler.modifiedFiles.forEach(
- (file) => promises.push(Promise.resolve(plugin.watchChange.call(context, file, { event: "update" })))
- );
- }
- if (compiler.removedFiles) {
- compiler.removedFiles.forEach(
- (file) => promises.push(Promise.resolve(plugin.watchChange.call(context, file, { event: "delete" })))
- );
- }
- await Promise.all(promises);
- }
- if (plugin.buildStart)
- return await plugin.buildStart.call(context);
- });
- }
- if (plugin.buildEnd) {
- compiler.hooks.emit.tapPromise(plugin.name, async (compilation) => {
- await plugin.buildEnd.call(createBuildContext3(contextOptionsFromCompilation(compilation), compiler, compilation));
- });
- }
- if (plugin.writeBundle) {
- compiler.hooks.afterEmit.tapPromise(plugin.name, async () => {
- await plugin.writeBundle();
- });
- }
- }
- }
- };
- };
- }
- // src/define.ts
- function createUnplugin(factory) {
- return {
- get esbuild() {
- return getEsbuildPlugin(factory);
- },
- get rollup() {
- return getRollupPlugin(factory);
- },
- get vite() {
- return getVitePlugin(factory);
- },
- /** @experimental do not use it in production */
- get rolldown() {
- return getRolldownPlugin(factory);
- },
- get webpack() {
- return getWebpackPlugin(factory);
- },
- get rspack() {
- return getRspackPlugin(factory);
- },
- get farm() {
- return getFarmPlugin(factory);
- },
- get raw() {
- return factory;
- }
- };
- }
- function createEsbuildPlugin(factory) {
- return getEsbuildPlugin(factory);
- }
- function createRollupPlugin(factory) {
- return getRollupPlugin(factory);
- }
- function createVitePlugin(factory) {
- return getVitePlugin(factory);
- }
- function createRolldownPlugin(factory) {
- return getRolldownPlugin(factory);
- }
- function createWebpackPlugin(factory) {
- return getWebpackPlugin(factory);
- }
- function createRspackPlugin(factory) {
- return getRspackPlugin(factory);
- }
- function createFarmPlugin(factory) {
- return getFarmPlugin(factory);
- }
- export {
- createEsbuildPlugin,
- createFarmPlugin,
- createRolldownPlugin,
- createRollupPlugin,
- createRspackPlugin,
- createUnplugin,
- createVitePlugin,
- createWebpackPlugin
- };
|