File size: 82,896 Bytes
5de1c56 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 |
"use strict";
var __create = Object.create;
var __defProp = Object.defineProperty;
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
var __getOwnPropNames = Object.getOwnPropertyNames;
var __getProtoOf = Object.getPrototypeOf;
var __hasOwnProp = Object.prototype.hasOwnProperty;
var __export = (target, all) => {
for (var name in all)
__defProp(target, name, { get: all[name], enumerable: true });
};
var __copyProps = (to, from, except, desc) => {
if (from && typeof from === "object" || typeof from === "function") {
for (let key of __getOwnPropNames(from))
if (!__hasOwnProp.call(to, key) && key !== except)
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
}
return to;
};
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
mod
));
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
// lib/npm/node.ts
var node_exports = {};
__export(node_exports, {
analyzeMetafile: () => analyzeMetafile,
analyzeMetafileSync: () => analyzeMetafileSync,
build: () => build,
buildSync: () => buildSync,
default: () => node_default,
formatMessages: () => formatMessages,
formatMessagesSync: () => formatMessagesSync,
initialize: () => initialize,
serve: () => serve,
transform: () => transform,
transformSync: () => transformSync,
version: () => version
});
module.exports = __toCommonJS(node_exports);
// lib/shared/stdio_protocol.ts
function encodePacket(packet) {
let visit = (value) => {
if (value === null) {
bb.write8(0);
} else if (typeof value === "boolean") {
bb.write8(1);
bb.write8(+value);
} else if (typeof value === "number") {
bb.write8(2);
bb.write32(value | 0);
} else if (typeof value === "string") {
bb.write8(3);
bb.write(encodeUTF8(value));
} else if (value instanceof Uint8Array) {
bb.write8(4);
bb.write(value);
} else if (value instanceof Array) {
bb.write8(5);
bb.write32(value.length);
for (let item of value) {
visit(item);
}
} else {
let keys = Object.keys(value);
bb.write8(6);
bb.write32(keys.length);
for (let key of keys) {
bb.write(encodeUTF8(key));
visit(value[key]);
}
}
};
let bb = new ByteBuffer();
bb.write32(0);
bb.write32(packet.id << 1 | +!packet.isRequest);
visit(packet.value);
writeUInt32LE(bb.buf, bb.len - 4, 0);
return bb.buf.subarray(0, bb.len);
}
function decodePacket(bytes) {
let visit = () => {
switch (bb.read8()) {
case 0:
return null;
case 1:
return !!bb.read8();
case 2:
return bb.read32();
case 3:
return decodeUTF8(bb.read());
case 4:
return bb.read();
case 5: {
let count = bb.read32();
let value2 = [];
for (let i = 0; i < count; i++) {
value2.push(visit());
}
return value2;
}
case 6: {
let count = bb.read32();
let value2 = {};
for (let i = 0; i < count; i++) {
value2[decodeUTF8(bb.read())] = visit();
}
return value2;
}
default:
throw new Error("Invalid packet");
}
};
let bb = new ByteBuffer(bytes);
let id = bb.read32();
let isRequest = (id & 1) === 0;
id >>>= 1;
let value = visit();
if (bb.ptr !== bytes.length) {
throw new Error("Invalid packet");
}
return { id, isRequest, value };
}
var ByteBuffer = class {
constructor(buf = new Uint8Array(1024)) {
this.buf = buf;
this.len = 0;
this.ptr = 0;
}
_write(delta) {
if (this.len + delta > this.buf.length) {
let clone = new Uint8Array((this.len + delta) * 2);
clone.set(this.buf);
this.buf = clone;
}
this.len += delta;
return this.len - delta;
}
write8(value) {
let offset = this._write(1);
this.buf[offset] = value;
}
write32(value) {
let offset = this._write(4);
writeUInt32LE(this.buf, value, offset);
}
write(bytes) {
let offset = this._write(4 + bytes.length);
writeUInt32LE(this.buf, bytes.length, offset);
this.buf.set(bytes, offset + 4);
}
_read(delta) {
if (this.ptr + delta > this.buf.length) {
throw new Error("Invalid packet");
}
this.ptr += delta;
return this.ptr - delta;
}
read8() {
return this.buf[this._read(1)];
}
read32() {
return readUInt32LE(this.buf, this._read(4));
}
read() {
let length = this.read32();
let bytes = new Uint8Array(length);
let ptr = this._read(bytes.length);
bytes.set(this.buf.subarray(ptr, ptr + length));
return bytes;
}
};
var encodeUTF8;
var decodeUTF8;
if (typeof TextEncoder !== "undefined" && typeof TextDecoder !== "undefined") {
let encoder = new TextEncoder();
let decoder = new TextDecoder();
encodeUTF8 = (text) => encoder.encode(text);
decodeUTF8 = (bytes) => decoder.decode(bytes);
} else if (typeof Buffer !== "undefined") {
encodeUTF8 = (text) => {
let buffer = Buffer.from(text);
if (!(buffer instanceof Uint8Array)) {
buffer = new Uint8Array(buffer);
}
return buffer;
};
decodeUTF8 = (bytes) => {
let { buffer, byteOffset, byteLength } = bytes;
return Buffer.from(buffer, byteOffset, byteLength).toString();
};
} else {
throw new Error("No UTF-8 codec found");
}
function readUInt32LE(buffer, offset) {
return buffer[offset++] | buffer[offset++] << 8 | buffer[offset++] << 16 | buffer[offset++] << 24;
}
function writeUInt32LE(buffer, value, offset) {
buffer[offset++] = value;
buffer[offset++] = value >> 8;
buffer[offset++] = value >> 16;
buffer[offset++] = value >> 24;
}
// lib/shared/common.ts
var buildLogLevelDefault = "warning";
var transformLogLevelDefault = "silent";
function validateTarget(target) {
target += "";
if (target.indexOf(",") >= 0)
throw new Error(`Invalid target: ${target}`);
return target;
}
var canBeAnything = () => null;
var mustBeBoolean = (value) => typeof value === "boolean" ? null : "a boolean";
var mustBeBooleanOrObject = (value) => typeof value === "boolean" || typeof value === "object" && !Array.isArray(value) ? null : "a boolean or an object";
var mustBeString = (value) => typeof value === "string" ? null : "a string";
var mustBeRegExp = (value) => value instanceof RegExp ? null : "a RegExp object";
var mustBeInteger = (value) => typeof value === "number" && value === (value | 0) ? null : "an integer";
var mustBeFunction = (value) => typeof value === "function" ? null : "a function";
var mustBeArray = (value) => Array.isArray(value) ? null : "an array";
var mustBeObject = (value) => typeof value === "object" && value !== null && !Array.isArray(value) ? null : "an object";
var mustBeWebAssemblyModule = (value) => value instanceof WebAssembly.Module ? null : "a WebAssembly.Module";
var mustBeArrayOrRecord = (value) => typeof value === "object" && value !== null ? null : "an array or an object";
var mustBeObjectOrNull = (value) => typeof value === "object" && !Array.isArray(value) ? null : "an object or null";
var mustBeStringOrBoolean = (value) => typeof value === "string" || typeof value === "boolean" ? null : "a string or a boolean";
var mustBeStringOrObject = (value) => typeof value === "string" || typeof value === "object" && value !== null && !Array.isArray(value) ? null : "a string or an object";
var mustBeStringOrArray = (value) => typeof value === "string" || Array.isArray(value) ? null : "a string or an array";
var mustBeStringOrUint8Array = (value) => typeof value === "string" || value instanceof Uint8Array ? null : "a string or a Uint8Array";
var mustBeStringOrURL = (value) => typeof value === "string" || value instanceof URL ? null : "a string or a URL";
function getFlag(object, keys, key, mustBeFn) {
let value = object[key];
keys[key + ""] = true;
if (value === void 0)
return void 0;
let mustBe = mustBeFn(value);
if (mustBe !== null)
throw new Error(`"${key}" must be ${mustBe}`);
return value;
}
function checkForInvalidFlags(object, keys, where) {
for (let key in object) {
if (!(key in keys)) {
throw new Error(`Invalid option ${where}: "${key}"`);
}
}
}
function validateInitializeOptions(options) {
let keys = /* @__PURE__ */ Object.create(null);
let wasmURL = getFlag(options, keys, "wasmURL", mustBeStringOrURL);
let wasmModule = getFlag(options, keys, "wasmModule", mustBeWebAssemblyModule);
let worker = getFlag(options, keys, "worker", mustBeBoolean);
checkForInvalidFlags(options, keys, "in initialize() call");
return {
wasmURL,
wasmModule,
worker
};
}
function validateMangleCache(mangleCache) {
let validated;
if (mangleCache !== void 0) {
validated = /* @__PURE__ */ Object.create(null);
for (let key of Object.keys(mangleCache)) {
let value = mangleCache[key];
if (typeof value === "string" || value === false) {
validated[key] = value;
} else {
throw new Error(`Expected ${JSON.stringify(key)} in mangle cache to map to either a string or false`);
}
}
}
return validated;
}
function pushLogFlags(flags, options, keys, isTTY2, logLevelDefault) {
let color = getFlag(options, keys, "color", mustBeBoolean);
let logLevel = getFlag(options, keys, "logLevel", mustBeString);
let logLimit = getFlag(options, keys, "logLimit", mustBeInteger);
if (color !== void 0)
flags.push(`--color=${color}`);
else if (isTTY2)
flags.push(`--color=true`);
flags.push(`--log-level=${logLevel || logLevelDefault}`);
flags.push(`--log-limit=${logLimit || 0}`);
}
function pushCommonFlags(flags, options, keys) {
let legalComments = getFlag(options, keys, "legalComments", mustBeString);
let sourceRoot = getFlag(options, keys, "sourceRoot", mustBeString);
let sourcesContent = getFlag(options, keys, "sourcesContent", mustBeBoolean);
let target = getFlag(options, keys, "target", mustBeStringOrArray);
let format = getFlag(options, keys, "format", mustBeString);
let globalName = getFlag(options, keys, "globalName", mustBeString);
let mangleProps = getFlag(options, keys, "mangleProps", mustBeRegExp);
let reserveProps = getFlag(options, keys, "reserveProps", mustBeRegExp);
let mangleQuoted = getFlag(options, keys, "mangleQuoted", mustBeBoolean);
let minify = getFlag(options, keys, "minify", mustBeBoolean);
let minifySyntax = getFlag(options, keys, "minifySyntax", mustBeBoolean);
let minifyWhitespace = getFlag(options, keys, "minifyWhitespace", mustBeBoolean);
let minifyIdentifiers = getFlag(options, keys, "minifyIdentifiers", mustBeBoolean);
let drop = getFlag(options, keys, "drop", mustBeArray);
let charset = getFlag(options, keys, "charset", mustBeString);
let treeShaking = getFlag(options, keys, "treeShaking", mustBeBoolean);
let ignoreAnnotations = getFlag(options, keys, "ignoreAnnotations", mustBeBoolean);
let jsx = getFlag(options, keys, "jsx", mustBeString);
let jsxFactory = getFlag(options, keys, "jsxFactory", mustBeString);
let jsxFragment = getFlag(options, keys, "jsxFragment", mustBeString);
let jsxImportSource = getFlag(options, keys, "jsxImportSource", mustBeString);
let jsxDev = getFlag(options, keys, "jsxDev", mustBeBoolean);
let jsxSideEffects = getFlag(options, keys, "jsxSideEffects", mustBeBoolean);
let define = getFlag(options, keys, "define", mustBeObject);
let logOverride = getFlag(options, keys, "logOverride", mustBeObject);
let supported = getFlag(options, keys, "supported", mustBeObject);
let pure = getFlag(options, keys, "pure", mustBeArray);
let keepNames = getFlag(options, keys, "keepNames", mustBeBoolean);
let platform = getFlag(options, keys, "platform", mustBeString);
if (legalComments)
flags.push(`--legal-comments=${legalComments}`);
if (sourceRoot !== void 0)
flags.push(`--source-root=${sourceRoot}`);
if (sourcesContent !== void 0)
flags.push(`--sources-content=${sourcesContent}`);
if (target) {
if (Array.isArray(target))
flags.push(`--target=${Array.from(target).map(validateTarget).join(",")}`);
else
flags.push(`--target=${validateTarget(target)}`);
}
if (format)
flags.push(`--format=${format}`);
if (globalName)
flags.push(`--global-name=${globalName}`);
if (platform)
flags.push(`--platform=${platform}`);
if (minify)
flags.push("--minify");
if (minifySyntax)
flags.push("--minify-syntax");
if (minifyWhitespace)
flags.push("--minify-whitespace");
if (minifyIdentifiers)
flags.push("--minify-identifiers");
if (charset)
flags.push(`--charset=${charset}`);
if (treeShaking !== void 0)
flags.push(`--tree-shaking=${treeShaking}`);
if (ignoreAnnotations)
flags.push(`--ignore-annotations`);
if (drop)
for (let what of drop)
flags.push(`--drop:${what}`);
if (mangleProps)
flags.push(`--mangle-props=${mangleProps.source}`);
if (reserveProps)
flags.push(`--reserve-props=${reserveProps.source}`);
if (mangleQuoted !== void 0)
flags.push(`--mangle-quoted=${mangleQuoted}`);
if (jsx)
flags.push(`--jsx=${jsx}`);
if (jsxFactory)
flags.push(`--jsx-factory=${jsxFactory}`);
if (jsxFragment)
flags.push(`--jsx-fragment=${jsxFragment}`);
if (jsxImportSource)
flags.push(`--jsx-import-source=${jsxImportSource}`);
if (jsxDev)
flags.push(`--jsx-dev`);
if (jsxSideEffects)
flags.push(`--jsx-side-effects`);
if (define) {
for (let key in define) {
if (key.indexOf("=") >= 0)
throw new Error(`Invalid define: ${key}`);
flags.push(`--define:${key}=${define[key]}`);
}
}
if (logOverride) {
for (let key in logOverride) {
if (key.indexOf("=") >= 0)
throw new Error(`Invalid log override: ${key}`);
flags.push(`--log-override:${key}=${logOverride[key]}`);
}
}
if (supported) {
for (let key in supported) {
if (key.indexOf("=") >= 0)
throw new Error(`Invalid supported: ${key}`);
flags.push(`--supported:${key}=${supported[key]}`);
}
}
if (pure)
for (let fn of pure)
flags.push(`--pure:${fn}`);
if (keepNames)
flags.push(`--keep-names`);
}
function flagsForBuildOptions(callName, options, isTTY2, logLevelDefault, writeDefault) {
var _a2;
let flags = [];
let entries = [];
let keys = /* @__PURE__ */ Object.create(null);
let stdinContents = null;
let stdinResolveDir = null;
let watchMode = null;
pushLogFlags(flags, options, keys, isTTY2, logLevelDefault);
pushCommonFlags(flags, options, keys);
let sourcemap = getFlag(options, keys, "sourcemap", mustBeStringOrBoolean);
let bundle = getFlag(options, keys, "bundle", mustBeBoolean);
let watch = getFlag(options, keys, "watch", mustBeBooleanOrObject);
let splitting = getFlag(options, keys, "splitting", mustBeBoolean);
let preserveSymlinks = getFlag(options, keys, "preserveSymlinks", mustBeBoolean);
let metafile = getFlag(options, keys, "metafile", mustBeBoolean);
let outfile = getFlag(options, keys, "outfile", mustBeString);
let outdir = getFlag(options, keys, "outdir", mustBeString);
let outbase = getFlag(options, keys, "outbase", mustBeString);
let tsconfig = getFlag(options, keys, "tsconfig", mustBeString);
let resolveExtensions = getFlag(options, keys, "resolveExtensions", mustBeArray);
let nodePathsInput = getFlag(options, keys, "nodePaths", mustBeArray);
let mainFields = getFlag(options, keys, "mainFields", mustBeArray);
let conditions = getFlag(options, keys, "conditions", mustBeArray);
let external = getFlag(options, keys, "external", mustBeArray);
let alias = getFlag(options, keys, "alias", mustBeObject);
let loader = getFlag(options, keys, "loader", mustBeObject);
let outExtension = getFlag(options, keys, "outExtension", mustBeObject);
let publicPath = getFlag(options, keys, "publicPath", mustBeString);
let entryNames = getFlag(options, keys, "entryNames", mustBeString);
let chunkNames = getFlag(options, keys, "chunkNames", mustBeString);
let assetNames = getFlag(options, keys, "assetNames", mustBeString);
let inject = getFlag(options, keys, "inject", mustBeArray);
let banner = getFlag(options, keys, "banner", mustBeObject);
let footer = getFlag(options, keys, "footer", mustBeObject);
let entryPoints = getFlag(options, keys, "entryPoints", mustBeArrayOrRecord);
let absWorkingDir = getFlag(options, keys, "absWorkingDir", mustBeString);
let stdin = getFlag(options, keys, "stdin", mustBeObject);
let write = (_a2 = getFlag(options, keys, "write", mustBeBoolean)) != null ? _a2 : writeDefault;
let allowOverwrite = getFlag(options, keys, "allowOverwrite", mustBeBoolean);
let incremental = getFlag(options, keys, "incremental", mustBeBoolean) === true;
let mangleCache = getFlag(options, keys, "mangleCache", mustBeObject);
keys.plugins = true;
checkForInvalidFlags(options, keys, `in ${callName}() call`);
if (sourcemap)
flags.push(`--sourcemap${sourcemap === true ? "" : `=${sourcemap}`}`);
if (bundle)
flags.push("--bundle");
if (allowOverwrite)
flags.push("--allow-overwrite");
if (watch) {
flags.push("--watch");
if (typeof watch === "boolean") {
watchMode = {};
} else {
let watchKeys = /* @__PURE__ */ Object.create(null);
let onRebuild = getFlag(watch, watchKeys, "onRebuild", mustBeFunction);
checkForInvalidFlags(watch, watchKeys, `on "watch" in ${callName}() call`);
watchMode = { onRebuild };
}
}
if (splitting)
flags.push("--splitting");
if (preserveSymlinks)
flags.push("--preserve-symlinks");
if (metafile)
flags.push(`--metafile`);
if (outfile)
flags.push(`--outfile=${outfile}`);
if (outdir)
flags.push(`--outdir=${outdir}`);
if (outbase)
flags.push(`--outbase=${outbase}`);
if (tsconfig)
flags.push(`--tsconfig=${tsconfig}`);
if (resolveExtensions) {
let values = [];
for (let value of resolveExtensions) {
value += "";
if (value.indexOf(",") >= 0)
throw new Error(`Invalid resolve extension: ${value}`);
values.push(value);
}
flags.push(`--resolve-extensions=${values.join(",")}`);
}
if (publicPath)
flags.push(`--public-path=${publicPath}`);
if (entryNames)
flags.push(`--entry-names=${entryNames}`);
if (chunkNames)
flags.push(`--chunk-names=${chunkNames}`);
if (assetNames)
flags.push(`--asset-names=${assetNames}`);
if (mainFields) {
let values = [];
for (let value of mainFields) {
value += "";
if (value.indexOf(",") >= 0)
throw new Error(`Invalid main field: ${value}`);
values.push(value);
}
flags.push(`--main-fields=${values.join(",")}`);
}
if (conditions) {
let values = [];
for (let value of conditions) {
value += "";
if (value.indexOf(",") >= 0)
throw new Error(`Invalid condition: ${value}`);
values.push(value);
}
flags.push(`--conditions=${values.join(",")}`);
}
if (external)
for (let name of external)
flags.push(`--external:${name}`);
if (alias) {
for (let old in alias) {
if (old.indexOf("=") >= 0)
throw new Error(`Invalid package name in alias: ${old}`);
flags.push(`--alias:${old}=${alias[old]}`);
}
}
if (banner) {
for (let type in banner) {
if (type.indexOf("=") >= 0)
throw new Error(`Invalid banner file type: ${type}`);
flags.push(`--banner:${type}=${banner[type]}`);
}
}
if (footer) {
for (let type in footer) {
if (type.indexOf("=") >= 0)
throw new Error(`Invalid footer file type: ${type}`);
flags.push(`--footer:${type}=${footer[type]}`);
}
}
if (inject)
for (let path3 of inject)
flags.push(`--inject:${path3}`);
if (loader) {
for (let ext in loader) {
if (ext.indexOf("=") >= 0)
throw new Error(`Invalid loader extension: ${ext}`);
flags.push(`--loader:${ext}=${loader[ext]}`);
}
}
if (outExtension) {
for (let ext in outExtension) {
if (ext.indexOf("=") >= 0)
throw new Error(`Invalid out extension: ${ext}`);
flags.push(`--out-extension:${ext}=${outExtension[ext]}`);
}
}
if (entryPoints) {
if (Array.isArray(entryPoints)) {
for (let entryPoint of entryPoints) {
entries.push(["", entryPoint + ""]);
}
} else {
for (let [key, value] of Object.entries(entryPoints)) {
entries.push([key + "", value + ""]);
}
}
}
if (stdin) {
let stdinKeys = /* @__PURE__ */ Object.create(null);
let contents = getFlag(stdin, stdinKeys, "contents", mustBeStringOrUint8Array);
let resolveDir = getFlag(stdin, stdinKeys, "resolveDir", mustBeString);
let sourcefile = getFlag(stdin, stdinKeys, "sourcefile", mustBeString);
let loader2 = getFlag(stdin, stdinKeys, "loader", mustBeString);
checkForInvalidFlags(stdin, stdinKeys, 'in "stdin" object');
if (sourcefile)
flags.push(`--sourcefile=${sourcefile}`);
if (loader2)
flags.push(`--loader=${loader2}`);
if (resolveDir)
stdinResolveDir = resolveDir + "";
if (typeof contents === "string")
stdinContents = encodeUTF8(contents);
else if (contents instanceof Uint8Array)
stdinContents = contents;
}
let nodePaths = [];
if (nodePathsInput) {
for (let value of nodePathsInput) {
value += "";
nodePaths.push(value);
}
}
return {
entries,
flags,
write,
stdinContents,
stdinResolveDir,
absWorkingDir,
incremental,
nodePaths,
watch: watchMode,
mangleCache: validateMangleCache(mangleCache)
};
}
function flagsForTransformOptions(callName, options, isTTY2, logLevelDefault) {
let flags = [];
let keys = /* @__PURE__ */ Object.create(null);
pushLogFlags(flags, options, keys, isTTY2, logLevelDefault);
pushCommonFlags(flags, options, keys);
let sourcemap = getFlag(options, keys, "sourcemap", mustBeStringOrBoolean);
let tsconfigRaw = getFlag(options, keys, "tsconfigRaw", mustBeStringOrObject);
let sourcefile = getFlag(options, keys, "sourcefile", mustBeString);
let loader = getFlag(options, keys, "loader", mustBeString);
let banner = getFlag(options, keys, "banner", mustBeString);
let footer = getFlag(options, keys, "footer", mustBeString);
let mangleCache = getFlag(options, keys, "mangleCache", mustBeObject);
checkForInvalidFlags(options, keys, `in ${callName}() call`);
if (sourcemap)
flags.push(`--sourcemap=${sourcemap === true ? "external" : sourcemap}`);
if (tsconfigRaw)
flags.push(`--tsconfig-raw=${typeof tsconfigRaw === "string" ? tsconfigRaw : JSON.stringify(tsconfigRaw)}`);
if (sourcefile)
flags.push(`--sourcefile=${sourcefile}`);
if (loader)
flags.push(`--loader=${loader}`);
if (banner)
flags.push(`--banner=${banner}`);
if (footer)
flags.push(`--footer=${footer}`);
return {
flags,
mangleCache: validateMangleCache(mangleCache)
};
}
function createChannel(streamIn) {
const requestCallbacksByKey = {};
const closeData = { didClose: false, reason: "" };
let responseCallbacks = {};
let nextRequestID = 0;
let nextBuildKey = 0;
let stdout = new Uint8Array(16 * 1024);
let stdoutUsed = 0;
let readFromStdout = (chunk) => {
let limit = stdoutUsed + chunk.length;
if (limit > stdout.length) {
let swap = new Uint8Array(limit * 2);
swap.set(stdout);
stdout = swap;
}
stdout.set(chunk, stdoutUsed);
stdoutUsed += chunk.length;
let offset = 0;
while (offset + 4 <= stdoutUsed) {
let length = readUInt32LE(stdout, offset);
if (offset + 4 + length > stdoutUsed) {
break;
}
offset += 4;
handleIncomingPacket(stdout.subarray(offset, offset + length));
offset += length;
}
if (offset > 0) {
stdout.copyWithin(0, offset, stdoutUsed);
stdoutUsed -= offset;
}
};
let afterClose = (error) => {
closeData.didClose = true;
if (error)
closeData.reason = ": " + (error.message || error);
const text = "The service was stopped" + closeData.reason;
for (let id in responseCallbacks) {
responseCallbacks[id](text, null);
}
responseCallbacks = {};
};
let sendRequest = (refs, value, callback) => {
if (closeData.didClose)
return callback("The service is no longer running" + closeData.reason, null);
let id = nextRequestID++;
responseCallbacks[id] = (error, response) => {
try {
callback(error, response);
} finally {
if (refs)
refs.unref();
}
};
if (refs)
refs.ref();
streamIn.writeToStdin(encodePacket({ id, isRequest: true, value }));
};
let sendResponse = (id, value) => {
if (closeData.didClose)
throw new Error("The service is no longer running" + closeData.reason);
streamIn.writeToStdin(encodePacket({ id, isRequest: false, value }));
};
let handleRequest = async (id, request) => {
try {
if (request.command === "ping") {
sendResponse(id, {});
return;
}
if (typeof request.key === "number") {
const requestCallbacks = requestCallbacksByKey[request.key];
if (requestCallbacks) {
const callback = requestCallbacks[request.command];
if (callback) {
await callback(id, request);
return;
}
}
}
throw new Error(`Invalid command: ` + request.command);
} catch (e) {
sendResponse(id, { errors: [extractErrorMessageV8(e, streamIn, null, void 0, "")] });
}
};
let isFirstPacket = true;
let handleIncomingPacket = (bytes) => {
if (isFirstPacket) {
isFirstPacket = false;
let binaryVersion = String.fromCharCode(...bytes);
if (binaryVersion !== "0.15.18") {
throw new Error(`Cannot start service: Host version "${"0.15.18"}" does not match binary version ${JSON.stringify(binaryVersion)}`);
}
return;
}
let packet = decodePacket(bytes);
if (packet.isRequest) {
handleRequest(packet.id, packet.value);
} else {
let callback = responseCallbacks[packet.id];
delete responseCallbacks[packet.id];
if (packet.value.error)
callback(packet.value.error, {});
else
callback(null, packet.value);
}
};
let buildOrServe = ({ callName, refs, serveOptions, options, isTTY: isTTY2, defaultWD: defaultWD2, callback }) => {
let refCount = 0;
const buildKey = nextBuildKey++;
const requestCallbacks = {};
const buildRefs = {
ref() {
if (++refCount === 1) {
if (refs)
refs.ref();
}
},
unref() {
if (--refCount === 0) {
delete requestCallbacksByKey[buildKey];
if (refs)
refs.unref();
}
}
};
requestCallbacksByKey[buildKey] = requestCallbacks;
buildRefs.ref();
buildOrServeImpl(
callName,
buildKey,
sendRequest,
sendResponse,
buildRefs,
streamIn,
requestCallbacks,
options,
serveOptions,
isTTY2,
defaultWD2,
closeData,
(err, res) => {
try {
callback(err, res);
} finally {
buildRefs.unref();
}
}
);
};
let transform2 = ({ callName, refs, input, options, isTTY: isTTY2, fs: fs3, callback }) => {
const details = createObjectStash();
let start = (inputPath) => {
try {
if (typeof input !== "string" && !(input instanceof Uint8Array))
throw new Error('The input to "transform" must be a string or a Uint8Array');
let {
flags,
mangleCache
} = flagsForTransformOptions(callName, options, isTTY2, transformLogLevelDefault);
let request = {
command: "transform",
flags,
inputFS: inputPath !== null,
input: inputPath !== null ? encodeUTF8(inputPath) : typeof input === "string" ? encodeUTF8(input) : input
};
if (mangleCache)
request.mangleCache = mangleCache;
sendRequest(refs, request, (error, response) => {
if (error)
return callback(new Error(error), null);
let errors = replaceDetailsInMessages(response.errors, details);
let warnings = replaceDetailsInMessages(response.warnings, details);
let outstanding = 1;
let next = () => {
if (--outstanding === 0) {
let result = { warnings, code: response.code, map: response.map };
if (response.mangleCache)
result.mangleCache = response == null ? void 0 : response.mangleCache;
callback(null, result);
}
};
if (errors.length > 0)
return callback(failureErrorWithLog("Transform failed", errors, warnings), null);
if (response.codeFS) {
outstanding++;
fs3.readFile(response.code, (err, contents) => {
if (err !== null) {
callback(err, null);
} else {
response.code = contents;
next();
}
});
}
if (response.mapFS) {
outstanding++;
fs3.readFile(response.map, (err, contents) => {
if (err !== null) {
callback(err, null);
} else {
response.map = contents;
next();
}
});
}
next();
});
} catch (e) {
let flags = [];
try {
pushLogFlags(flags, options, {}, isTTY2, transformLogLevelDefault);
} catch {
}
const error = extractErrorMessageV8(e, streamIn, details, void 0, "");
sendRequest(refs, { command: "error", flags, error }, () => {
error.detail = details.load(error.detail);
callback(failureErrorWithLog("Transform failed", [error], []), null);
});
}
};
if ((typeof input === "string" || input instanceof Uint8Array) && input.length > 1024 * 1024) {
let next = start;
start = () => fs3.writeFile(input, next);
}
start(null);
};
let formatMessages2 = ({ callName, refs, messages, options, callback }) => {
let result = sanitizeMessages(messages, "messages", null, "");
if (!options)
throw new Error(`Missing second argument in ${callName}() call`);
let keys = {};
let kind = getFlag(options, keys, "kind", mustBeString);
let color = getFlag(options, keys, "color", mustBeBoolean);
let terminalWidth = getFlag(options, keys, "terminalWidth", mustBeInteger);
checkForInvalidFlags(options, keys, `in ${callName}() call`);
if (kind === void 0)
throw new Error(`Missing "kind" in ${callName}() call`);
if (kind !== "error" && kind !== "warning")
throw new Error(`Expected "kind" to be "error" or "warning" in ${callName}() call`);
let request = {
command: "format-msgs",
messages: result,
isWarning: kind === "warning"
};
if (color !== void 0)
request.color = color;
if (terminalWidth !== void 0)
request.terminalWidth = terminalWidth;
sendRequest(refs, request, (error, response) => {
if (error)
return callback(new Error(error), null);
callback(null, response.messages);
});
};
let analyzeMetafile2 = ({ callName, refs, metafile, options, callback }) => {
if (options === void 0)
options = {};
let keys = {};
let color = getFlag(options, keys, "color", mustBeBoolean);
let verbose = getFlag(options, keys, "verbose", mustBeBoolean);
checkForInvalidFlags(options, keys, `in ${callName}() call`);
let request = {
command: "analyze-metafile",
metafile
};
if (color !== void 0)
request.color = color;
if (verbose !== void 0)
request.verbose = verbose;
sendRequest(refs, request, (error, response) => {
if (error)
return callback(new Error(error), null);
callback(null, response.result);
});
};
return {
readFromStdout,
afterClose,
service: {
buildOrServe,
transform: transform2,
formatMessages: formatMessages2,
analyzeMetafile: analyzeMetafile2
}
};
}
function buildOrServeImpl(callName, buildKey, sendRequest, sendResponse, refs, streamIn, requestCallbacks, options, serveOptions, isTTY2, defaultWD2, closeData, callback) {
const details = createObjectStash();
const logPluginError = (e, pluginName, note, done) => {
const flags = [];
try {
pushLogFlags(flags, options, {}, isTTY2, buildLogLevelDefault);
} catch {
}
const message = extractErrorMessageV8(e, streamIn, details, note, pluginName);
sendRequest(refs, { command: "error", flags, error: message }, () => {
message.detail = details.load(message.detail);
done(message);
});
};
const handleError = (e, pluginName) => {
logPluginError(e, pluginName, void 0, (error) => {
callback(failureErrorWithLog("Build failed", [error], []), null);
});
};
let plugins;
if (typeof options === "object") {
const value = options.plugins;
if (value !== void 0) {
if (!Array.isArray(value))
throw new Error(`"plugins" must be an array`);
plugins = value;
}
}
if (plugins && plugins.length > 0) {
if (streamIn.isSync) {
handleError(new Error("Cannot use plugins in synchronous API calls"), "");
return;
}
handlePlugins(
buildKey,
sendRequest,
sendResponse,
refs,
streamIn,
requestCallbacks,
options,
plugins,
details
).then(
(result) => {
if (!result.ok) {
handleError(result.error, result.pluginName);
return;
}
try {
buildOrServeContinue(result.requestPlugins, result.runOnEndCallbacks);
} catch (e) {
handleError(e, "");
}
},
(e) => handleError(e, "")
);
return;
}
try {
buildOrServeContinue(null, (result, logPluginError2, done) => done());
} catch (e) {
handleError(e, "");
}
function buildOrServeContinue(requestPlugins, runOnEndCallbacks) {
let writeDefault = !streamIn.isWriteUnavailable;
let {
entries,
flags,
write,
stdinContents,
stdinResolveDir,
absWorkingDir,
incremental,
nodePaths,
watch,
mangleCache
} = flagsForBuildOptions(callName, options, isTTY2, buildLogLevelDefault, writeDefault);
let request = {
command: "build",
key: buildKey,
entries,
flags,
write,
stdinContents,
stdinResolveDir,
absWorkingDir: absWorkingDir || defaultWD2,
incremental,
nodePaths
};
if (requestPlugins)
request.plugins = requestPlugins;
if (mangleCache)
request.mangleCache = mangleCache;
let serve2 = serveOptions && buildServeData(buildKey, sendRequest, sendResponse, refs, requestCallbacks, serveOptions, request);
let rebuild;
let stop;
let copyResponseToResult = (response, result) => {
if (response.outputFiles)
result.outputFiles = response.outputFiles.map(convertOutputFiles);
if (response.metafile)
result.metafile = JSON.parse(response.metafile);
if (response.mangleCache)
result.mangleCache = response.mangleCache;
if (response.writeToStdout !== void 0)
console.log(decodeUTF8(response.writeToStdout).replace(/\n$/, ""));
};
let buildResponseToResult = (response, callback2) => {
let result = {
errors: replaceDetailsInMessages(response.errors, details),
warnings: replaceDetailsInMessages(response.warnings, details)
};
copyResponseToResult(response, result);
runOnEndCallbacks(result, logPluginError, () => {
if (result.errors.length > 0) {
return callback2(failureErrorWithLog("Build failed", result.errors, result.warnings), null);
}
if (response.rebuild) {
if (!rebuild) {
let isDisposed = false;
rebuild = () => new Promise((resolve, reject) => {
if (isDisposed || closeData.didClose)
throw new Error("Cannot rebuild");
sendRequest(
refs,
{ command: "rebuild", key: buildKey },
(error2, response2) => {
if (error2) {
const message = { id: "", pluginName: "", text: error2, location: null, notes: [], detail: void 0 };
return callback2(failureErrorWithLog("Build failed", [message], []), null);
}
buildResponseToResult(response2, (error3, result3) => {
if (error3)
reject(error3);
else
resolve(result3);
});
}
);
});
refs.ref();
rebuild.dispose = () => {
if (isDisposed)
return;
isDisposed = true;
sendRequest(refs, { command: "rebuild-dispose", key: buildKey }, () => {
});
refs.unref();
};
}
result.rebuild = rebuild;
}
if (response.watch) {
if (!stop) {
let isStopped = false;
refs.ref();
stop = () => {
if (isStopped)
return;
isStopped = true;
delete requestCallbacks["watch-rebuild"];
sendRequest(refs, { command: "watch-stop", key: buildKey }, () => {
});
refs.unref();
};
if (watch) {
requestCallbacks["watch-rebuild"] = (id, request2) => {
try {
let watchResponse = request2.args;
let result2 = {
errors: replaceDetailsInMessages(watchResponse.errors, details),
warnings: replaceDetailsInMessages(watchResponse.warnings, details)
};
copyResponseToResult(watchResponse, result2);
runOnEndCallbacks(result2, logPluginError, () => {
if (result2.errors.length > 0) {
if (watch.onRebuild)
watch.onRebuild(failureErrorWithLog("Build failed", result2.errors, result2.warnings), null);
return;
}
result2.stop = stop;
if (watch.onRebuild)
watch.onRebuild(null, result2);
});
} catch (err) {
console.error(err);
}
sendResponse(id, {});
};
}
}
result.stop = stop;
}
callback2(null, result);
});
};
if (write && streamIn.isWriteUnavailable)
throw new Error(`The "write" option is unavailable in this environment`);
if (incremental && streamIn.isSync)
throw new Error(`Cannot use "incremental" with a synchronous build`);
if (watch && streamIn.isSync)
throw new Error(`Cannot use "watch" with a synchronous build`);
sendRequest(refs, request, (error, response) => {
if (error)
return callback(new Error(error), null);
if (serve2) {
let serveResponse = response;
let isStopped = false;
refs.ref();
let result = {
port: serveResponse.port,
host: serveResponse.host,
wait: serve2.wait,
stop() {
if (isStopped)
return;
isStopped = true;
serve2.stop();
refs.unref();
}
};
refs.ref();
serve2.wait.then(refs.unref, refs.unref);
return callback(null, result);
}
return buildResponseToResult(response, callback);
});
}
}
var buildServeData = (buildKey, sendRequest, sendResponse, refs, requestCallbacks, options, request) => {
let keys = {};
let port = getFlag(options, keys, "port", mustBeInteger);
let host = getFlag(options, keys, "host", mustBeString);
let servedir = getFlag(options, keys, "servedir", mustBeString);
let onRequest = getFlag(options, keys, "onRequest", mustBeFunction);
let wait = new Promise((resolve, reject) => {
requestCallbacks["serve-wait"] = (id, request2) => {
if (request2.error !== null)
reject(new Error(request2.error));
else
resolve();
sendResponse(id, {});
};
});
request.serve = {};
checkForInvalidFlags(options, keys, `in serve() call`);
if (port !== void 0)
request.serve.port = port;
if (host !== void 0)
request.serve.host = host;
if (servedir !== void 0)
request.serve.servedir = servedir;
requestCallbacks["serve-request"] = (id, request2) => {
if (onRequest)
onRequest(request2.args);
sendResponse(id, {});
};
return {
wait,
stop() {
sendRequest(refs, { command: "serve-stop", key: buildKey }, () => {
});
}
};
};
var handlePlugins = async (buildKey, sendRequest, sendResponse, refs, streamIn, requestCallbacks, initialOptions, plugins, details) => {
let onStartCallbacks = [];
let onEndCallbacks = [];
let onResolveCallbacks = {};
let onLoadCallbacks = {};
let nextCallbackID = 0;
let i = 0;
let requestPlugins = [];
let isSetupDone = false;
plugins = [...plugins];
for (let item of plugins) {
let keys = {};
if (typeof item !== "object")
throw new Error(`Plugin at index ${i} must be an object`);
const name = getFlag(item, keys, "name", mustBeString);
if (typeof name !== "string" || name === "")
throw new Error(`Plugin at index ${i} is missing a name`);
try {
let setup = getFlag(item, keys, "setup", mustBeFunction);
if (typeof setup !== "function")
throw new Error(`Plugin is missing a setup function`);
checkForInvalidFlags(item, keys, `on plugin ${JSON.stringify(name)}`);
let plugin = {
name,
onResolve: [],
onLoad: []
};
i++;
let resolve = (path3, options = {}) => {
if (!isSetupDone)
throw new Error('Cannot call "resolve" before plugin setup has completed');
if (typeof path3 !== "string")
throw new Error(`The path to resolve must be a string`);
let keys2 = /* @__PURE__ */ Object.create(null);
let pluginName = getFlag(options, keys2, "pluginName", mustBeString);
let importer = getFlag(options, keys2, "importer", mustBeString);
let namespace = getFlag(options, keys2, "namespace", mustBeString);
let resolveDir = getFlag(options, keys2, "resolveDir", mustBeString);
let kind = getFlag(options, keys2, "kind", mustBeString);
let pluginData = getFlag(options, keys2, "pluginData", canBeAnything);
checkForInvalidFlags(options, keys2, "in resolve() call");
return new Promise((resolve2, reject) => {
const request = {
command: "resolve",
path: path3,
key: buildKey,
pluginName: name
};
if (pluginName != null)
request.pluginName = pluginName;
if (importer != null)
request.importer = importer;
if (namespace != null)
request.namespace = namespace;
if (resolveDir != null)
request.resolveDir = resolveDir;
if (kind != null)
request.kind = kind;
if (pluginData != null)
request.pluginData = details.store(pluginData);
sendRequest(refs, request, (error, response) => {
if (error !== null)
reject(new Error(error));
else
resolve2({
errors: replaceDetailsInMessages(response.errors, details),
warnings: replaceDetailsInMessages(response.warnings, details),
path: response.path,
external: response.external,
sideEffects: response.sideEffects,
namespace: response.namespace,
suffix: response.suffix,
pluginData: details.load(response.pluginData)
});
});
});
};
let promise = setup({
initialOptions,
resolve,
onStart(callback) {
let registeredText = `This error came from the "onStart" callback registered here:`;
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onStart");
onStartCallbacks.push({ name, callback, note: registeredNote });
},
onEnd(callback) {
let registeredText = `This error came from the "onEnd" callback registered here:`;
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onEnd");
onEndCallbacks.push({ name, callback, note: registeredNote });
},
onResolve(options, callback) {
let registeredText = `This error came from the "onResolve" callback registered here:`;
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onResolve");
let keys2 = {};
let filter = getFlag(options, keys2, "filter", mustBeRegExp);
let namespace = getFlag(options, keys2, "namespace", mustBeString);
checkForInvalidFlags(options, keys2, `in onResolve() call for plugin ${JSON.stringify(name)}`);
if (filter == null)
throw new Error(`onResolve() call is missing a filter`);
let id = nextCallbackID++;
onResolveCallbacks[id] = { name, callback, note: registeredNote };
plugin.onResolve.push({ id, filter: filter.source, namespace: namespace || "" });
},
onLoad(options, callback) {
let registeredText = `This error came from the "onLoad" callback registered here:`;
let registeredNote = extractCallerV8(new Error(registeredText), streamIn, "onLoad");
let keys2 = {};
let filter = getFlag(options, keys2, "filter", mustBeRegExp);
let namespace = getFlag(options, keys2, "namespace", mustBeString);
checkForInvalidFlags(options, keys2, `in onLoad() call for plugin ${JSON.stringify(name)}`);
if (filter == null)
throw new Error(`onLoad() call is missing a filter`);
let id = nextCallbackID++;
onLoadCallbacks[id] = { name, callback, note: registeredNote };
plugin.onLoad.push({ id, filter: filter.source, namespace: namespace || "" });
},
esbuild: streamIn.esbuild
});
if (promise)
await promise;
requestPlugins.push(plugin);
} catch (e) {
return { ok: false, error: e, pluginName: name };
}
}
requestCallbacks["on-start"] = async (id, request) => {
let response = { errors: [], warnings: [] };
await Promise.all(onStartCallbacks.map(async ({ name, callback, note }) => {
try {
let result = await callback();
if (result != null) {
if (typeof result !== "object")
throw new Error(`Expected onStart() callback in plugin ${JSON.stringify(name)} to return an object`);
let keys = {};
let errors = getFlag(result, keys, "errors", mustBeArray);
let warnings = getFlag(result, keys, "warnings", mustBeArray);
checkForInvalidFlags(result, keys, `from onStart() callback in plugin ${JSON.stringify(name)}`);
if (errors != null)
response.errors.push(...sanitizeMessages(errors, "errors", details, name));
if (warnings != null)
response.warnings.push(...sanitizeMessages(warnings, "warnings", details, name));
}
} catch (e) {
response.errors.push(extractErrorMessageV8(e, streamIn, details, note && note(), name));
}
}));
sendResponse(id, response);
};
requestCallbacks["on-resolve"] = async (id, request) => {
let response = {}, name = "", callback, note;
for (let id2 of request.ids) {
try {
({ name, callback, note } = onResolveCallbacks[id2]);
let result = await callback({
path: request.path,
importer: request.importer,
namespace: request.namespace,
resolveDir: request.resolveDir,
kind: request.kind,
pluginData: details.load(request.pluginData)
});
if (result != null) {
if (typeof result !== "object")
throw new Error(`Expected onResolve() callback in plugin ${JSON.stringify(name)} to return an object`);
let keys = {};
let pluginName = getFlag(result, keys, "pluginName", mustBeString);
let path3 = getFlag(result, keys, "path", mustBeString);
let namespace = getFlag(result, keys, "namespace", mustBeString);
let suffix = getFlag(result, keys, "suffix", mustBeString);
let external = getFlag(result, keys, "external", mustBeBoolean);
let sideEffects = getFlag(result, keys, "sideEffects", mustBeBoolean);
let pluginData = getFlag(result, keys, "pluginData", canBeAnything);
let errors = getFlag(result, keys, "errors", mustBeArray);
let warnings = getFlag(result, keys, "warnings", mustBeArray);
let watchFiles = getFlag(result, keys, "watchFiles", mustBeArray);
let watchDirs = getFlag(result, keys, "watchDirs", mustBeArray);
checkForInvalidFlags(result, keys, `from onResolve() callback in plugin ${JSON.stringify(name)}`);
response.id = id2;
if (pluginName != null)
response.pluginName = pluginName;
if (path3 != null)
response.path = path3;
if (namespace != null)
response.namespace = namespace;
if (suffix != null)
response.suffix = suffix;
if (external != null)
response.external = external;
if (sideEffects != null)
response.sideEffects = sideEffects;
if (pluginData != null)
response.pluginData = details.store(pluginData);
if (errors != null)
response.errors = sanitizeMessages(errors, "errors", details, name);
if (warnings != null)
response.warnings = sanitizeMessages(warnings, "warnings", details, name);
if (watchFiles != null)
response.watchFiles = sanitizeStringArray(watchFiles, "watchFiles");
if (watchDirs != null)
response.watchDirs = sanitizeStringArray(watchDirs, "watchDirs");
break;
}
} catch (e) {
response = { id: id2, errors: [extractErrorMessageV8(e, streamIn, details, note && note(), name)] };
break;
}
}
sendResponse(id, response);
};
requestCallbacks["on-load"] = async (id, request) => {
let response = {}, name = "", callback, note;
for (let id2 of request.ids) {
try {
({ name, callback, note } = onLoadCallbacks[id2]);
let result = await callback({
path: request.path,
namespace: request.namespace,
suffix: request.suffix,
pluginData: details.load(request.pluginData)
});
if (result != null) {
if (typeof result !== "object")
throw new Error(`Expected onLoad() callback in plugin ${JSON.stringify(name)} to return an object`);
let keys = {};
let pluginName = getFlag(result, keys, "pluginName", mustBeString);
let contents = getFlag(result, keys, "contents", mustBeStringOrUint8Array);
let resolveDir = getFlag(result, keys, "resolveDir", mustBeString);
let pluginData = getFlag(result, keys, "pluginData", canBeAnything);
let loader = getFlag(result, keys, "loader", mustBeString);
let errors = getFlag(result, keys, "errors", mustBeArray);
let warnings = getFlag(result, keys, "warnings", mustBeArray);
let watchFiles = getFlag(result, keys, "watchFiles", mustBeArray);
let watchDirs = getFlag(result, keys, "watchDirs", mustBeArray);
checkForInvalidFlags(result, keys, `from onLoad() callback in plugin ${JSON.stringify(name)}`);
response.id = id2;
if (pluginName != null)
response.pluginName = pluginName;
if (contents instanceof Uint8Array)
response.contents = contents;
else if (contents != null)
response.contents = encodeUTF8(contents);
if (resolveDir != null)
response.resolveDir = resolveDir;
if (pluginData != null)
response.pluginData = details.store(pluginData);
if (loader != null)
response.loader = loader;
if (errors != null)
response.errors = sanitizeMessages(errors, "errors", details, name);
if (warnings != null)
response.warnings = sanitizeMessages(warnings, "warnings", details, name);
if (watchFiles != null)
response.watchFiles = sanitizeStringArray(watchFiles, "watchFiles");
if (watchDirs != null)
response.watchDirs = sanitizeStringArray(watchDirs, "watchDirs");
break;
}
} catch (e) {
response = { id: id2, errors: [extractErrorMessageV8(e, streamIn, details, note && note(), name)] };
break;
}
}
sendResponse(id, response);
};
let runOnEndCallbacks = (result, logPluginError, done) => done();
if (onEndCallbacks.length > 0) {
runOnEndCallbacks = (result, logPluginError, done) => {
(async () => {
for (const { name, callback, note } of onEndCallbacks) {
try {
await callback(result);
} catch (e) {
result.errors.push(await new Promise((resolve) => logPluginError(e, name, note && note(), resolve)));
}
}
})().then(done);
};
}
isSetupDone = true;
return {
ok: true,
requestPlugins,
runOnEndCallbacks
};
};
function createObjectStash() {
const map = /* @__PURE__ */ new Map();
let nextID = 0;
return {
load(id) {
return map.get(id);
},
store(value) {
if (value === void 0)
return -1;
const id = nextID++;
map.set(id, value);
return id;
}
};
}
function extractCallerV8(e, streamIn, ident) {
let note;
let tried = false;
return () => {
if (tried)
return note;
tried = true;
try {
let lines = (e.stack + "").split("\n");
lines.splice(1, 1);
let location = parseStackLinesV8(streamIn, lines, ident);
if (location) {
note = { text: e.message, location };
return note;
}
} catch {
}
};
}
function extractErrorMessageV8(e, streamIn, stash, note, pluginName) {
let text = "Internal error";
let location = null;
try {
text = (e && e.message || e) + "";
} catch {
}
try {
location = parseStackLinesV8(streamIn, (e.stack + "").split("\n"), "");
} catch {
}
return { id: "", pluginName, text, location, notes: note ? [note] : [], detail: stash ? stash.store(e) : -1 };
}
function parseStackLinesV8(streamIn, lines, ident) {
let at = " at ";
if (streamIn.readFileSync && !lines[0].startsWith(at) && lines[1].startsWith(at)) {
for (let i = 1; i < lines.length; i++) {
let line = lines[i];
if (!line.startsWith(at))
continue;
line = line.slice(at.length);
while (true) {
let match = /^(?:new |async )?\S+ \((.*)\)$/.exec(line);
if (match) {
line = match[1];
continue;
}
match = /^eval at \S+ \((.*)\)(?:, \S+:\d+:\d+)?$/.exec(line);
if (match) {
line = match[1];
continue;
}
match = /^(\S+):(\d+):(\d+)$/.exec(line);
if (match) {
let contents;
try {
contents = streamIn.readFileSync(match[1], "utf8");
} catch {
break;
}
let lineText = contents.split(/\r\n|\r|\n|\u2028|\u2029/)[+match[2] - 1] || "";
let column = +match[3] - 1;
let length = lineText.slice(column, column + ident.length) === ident ? ident.length : 0;
return {
file: match[1],
namespace: "file",
line: +match[2],
column: encodeUTF8(lineText.slice(0, column)).length,
length: encodeUTF8(lineText.slice(column, column + length)).length,
lineText: lineText + "\n" + lines.slice(1).join("\n"),
suggestion: ""
};
}
break;
}
}
}
return null;
}
function failureErrorWithLog(text, errors, warnings) {
let limit = 5;
let summary = errors.length < 1 ? "" : ` with ${errors.length} error${errors.length < 2 ? "" : "s"}:` + errors.slice(0, limit + 1).map((e, i) => {
if (i === limit)
return "\n...";
if (!e.location)
return `
error: ${e.text}`;
let { file, line, column } = e.location;
let pluginText = e.pluginName ? `[plugin: ${e.pluginName}] ` : "";
return `
${file}:${line}:${column}: ERROR: ${pluginText}${e.text}`;
}).join("");
let error = new Error(`${text}${summary}`);
error.errors = errors;
error.warnings = warnings;
return error;
}
function replaceDetailsInMessages(messages, stash) {
for (const message of messages) {
message.detail = stash.load(message.detail);
}
return messages;
}
function sanitizeLocation(location, where) {
if (location == null)
return null;
let keys = {};
let file = getFlag(location, keys, "file", mustBeString);
let namespace = getFlag(location, keys, "namespace", mustBeString);
let line = getFlag(location, keys, "line", mustBeInteger);
let column = getFlag(location, keys, "column", mustBeInteger);
let length = getFlag(location, keys, "length", mustBeInteger);
let lineText = getFlag(location, keys, "lineText", mustBeString);
let suggestion = getFlag(location, keys, "suggestion", mustBeString);
checkForInvalidFlags(location, keys, where);
return {
file: file || "",
namespace: namespace || "",
line: line || 0,
column: column || 0,
length: length || 0,
lineText: lineText || "",
suggestion: suggestion || ""
};
}
function sanitizeMessages(messages, property, stash, fallbackPluginName) {
let messagesClone = [];
let index = 0;
for (const message of messages) {
let keys = {};
let id = getFlag(message, keys, "id", mustBeString);
let pluginName = getFlag(message, keys, "pluginName", mustBeString);
let text = getFlag(message, keys, "text", mustBeString);
let location = getFlag(message, keys, "location", mustBeObjectOrNull);
let notes = getFlag(message, keys, "notes", mustBeArray);
let detail = getFlag(message, keys, "detail", canBeAnything);
let where = `in element ${index} of "${property}"`;
checkForInvalidFlags(message, keys, where);
let notesClone = [];
if (notes) {
for (const note of notes) {
let noteKeys = {};
let noteText = getFlag(note, noteKeys, "text", mustBeString);
let noteLocation = getFlag(note, noteKeys, "location", mustBeObjectOrNull);
checkForInvalidFlags(note, noteKeys, where);
notesClone.push({
text: noteText || "",
location: sanitizeLocation(noteLocation, where)
});
}
}
messagesClone.push({
id: id || "",
pluginName: pluginName || fallbackPluginName,
text: text || "",
location: sanitizeLocation(location, where),
notes: notesClone,
detail: stash ? stash.store(detail) : -1
});
index++;
}
return messagesClone;
}
function sanitizeStringArray(values, property) {
const result = [];
for (const value of values) {
if (typeof value !== "string")
throw new Error(`${JSON.stringify(property)} must be an array of strings`);
result.push(value);
}
return result;
}
function convertOutputFiles({ path: path3, contents }) {
let text = null;
return {
path: path3,
contents,
get text() {
const binary = this.contents;
if (text === null || binary !== contents) {
contents = binary;
text = decodeUTF8(binary);
}
return text;
}
};
}
// lib/npm/node-platform.ts
var fs = require("fs");
var os = require("os");
var path = require("path");
var ESBUILD_BINARY_PATH = process.env.ESBUILD_BINARY_PATH || ESBUILD_BINARY_PATH;
var packageDarwin_arm64 = "esbuild-darwin-arm64";
var packageDarwin_x64 = "esbuild-darwin-64";
var knownWindowsPackages = {
"win32 arm64 LE": "esbuild-windows-arm64",
"win32 ia32 LE": "esbuild-windows-32",
"win32 x64 LE": "esbuild-windows-64"
};
var knownUnixlikePackages = {
"android arm64 LE": "esbuild-android-arm64",
"darwin arm64 LE": "esbuild-darwin-arm64",
"darwin x64 LE": "esbuild-darwin-64",
"freebsd arm64 LE": "esbuild-freebsd-arm64",
"freebsd x64 LE": "esbuild-freebsd-64",
"linux arm LE": "esbuild-linux-arm",
"linux arm64 LE": "esbuild-linux-arm64",
"linux ia32 LE": "esbuild-linux-32",
"linux mips64el LE": "esbuild-linux-mips64le",
"linux ppc64 LE": "esbuild-linux-ppc64le",
"linux riscv64 LE": "esbuild-linux-riscv64",
"linux s390x BE": "esbuild-linux-s390x",
"linux x64 LE": "esbuild-linux-64",
"linux loong64 LE": "@esbuild/linux-loong64",
"netbsd x64 LE": "esbuild-netbsd-64",
"openbsd x64 LE": "esbuild-openbsd-64",
"sunos x64 LE": "esbuild-sunos-64"
};
var knownWebAssemblyFallbackPackages = {
"android arm LE": "@esbuild/android-arm",
"android x64 LE": "esbuild-android-64"
};
function pkgAndSubpathForCurrentPlatform() {
let pkg;
let subpath;
let isWASM = false;
let platformKey = `${process.platform} ${os.arch()} ${os.endianness()}`;
if (platformKey in knownWindowsPackages) {
pkg = knownWindowsPackages[platformKey];
subpath = "esbuild.exe";
} else if (platformKey in knownUnixlikePackages) {
pkg = knownUnixlikePackages[platformKey];
subpath = "bin/esbuild";
} else if (platformKey in knownWebAssemblyFallbackPackages) {
pkg = knownWebAssemblyFallbackPackages[platformKey];
subpath = "bin/esbuild";
isWASM = true;
} else {
throw new Error(`Unsupported platform: ${platformKey}`);
}
return { pkg, subpath, isWASM };
}
function pkgForSomeOtherPlatform() {
const libMainJS = require.resolve("esbuild");
const nodeModulesDirectory = path.dirname(path.dirname(path.dirname(libMainJS)));
if (path.basename(nodeModulesDirectory) === "node_modules") {
for (const unixKey in knownUnixlikePackages) {
try {
const pkg = knownUnixlikePackages[unixKey];
if (fs.existsSync(path.join(nodeModulesDirectory, pkg)))
return pkg;
} catch {
}
}
for (const windowsKey in knownWindowsPackages) {
try {
const pkg = knownWindowsPackages[windowsKey];
if (fs.existsSync(path.join(nodeModulesDirectory, pkg)))
return pkg;
} catch {
}
}
}
return null;
}
function downloadedBinPath(pkg, subpath) {
const esbuildLibDir = path.dirname(require.resolve("esbuild"));
return path.join(esbuildLibDir, `downloaded-${pkg}-${path.basename(subpath)}`);
}
function generateBinPath() {
if (ESBUILD_BINARY_PATH) {
return { binPath: ESBUILD_BINARY_PATH, isWASM: false };
}
const { pkg, subpath, isWASM } = pkgAndSubpathForCurrentPlatform();
let binPath;
try {
binPath = require.resolve(`${pkg}/${subpath}`);
} catch (e) {
binPath = downloadedBinPath(pkg, subpath);
if (!fs.existsSync(binPath)) {
try {
require.resolve(pkg);
} catch {
const otherPkg = pkgForSomeOtherPlatform();
if (otherPkg) {
let suggestions = `
Specifically the "${otherPkg}" package is present but this platform
needs the "${pkg}" package instead. People often get into this
situation by installing esbuild on Windows or macOS and copying "node_modules"
into a Docker image that runs Linux, or by copying "node_modules" between
Windows and WSL environments.
If you are installing with npm, you can try not copying the "node_modules"
directory when you copy the files over, and running "npm ci" or "npm install"
on the destination platform after the copy. Or you could consider using yarn
instead of npm which has built-in support for installing a package on multiple
platforms simultaneously.
If you are installing with yarn, you can try listing both this platform and the
other platform in your ".yarnrc.yml" file using the "supportedArchitectures"
feature: https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
Keep in mind that this means multiple copies of esbuild will be present.
`;
if (pkg === packageDarwin_x64 && otherPkg === packageDarwin_arm64 || pkg === packageDarwin_arm64 && otherPkg === packageDarwin_x64) {
suggestions = `
Specifically the "${otherPkg}" package is present but this platform
needs the "${pkg}" package instead. People often get into this
situation by installing esbuild with npm running inside of Rosetta 2 and then
trying to use it with node running outside of Rosetta 2, or vice versa (Rosetta
2 is Apple's on-the-fly x86_64-to-arm64 translation service).
If you are installing with npm, you can try ensuring that both npm and node are
not running under Rosetta 2 and then reinstalling esbuild. This likely involves
changing how you installed npm and/or node. For example, installing node with
the universal installer here should work: https://nodejs.org/en/download/. Or
you could consider using yarn instead of npm which has built-in support for
installing a package on multiple platforms simultaneously.
If you are installing with yarn, you can try listing both "arm64" and "x64"
in your ".yarnrc.yml" file using the "supportedArchitectures" feature:
https://yarnpkg.com/configuration/yarnrc/#supportedArchitectures
Keep in mind that this means multiple copies of esbuild will be present.
`;
}
throw new Error(`
You installed esbuild for another platform than the one you're currently using.
This won't work because esbuild is written with native code and needs to
install a platform-specific binary executable.
${suggestions}
Another alternative is to use the "esbuild-wasm" package instead, which works
the same way on all platforms. But it comes with a heavy performance cost and
can sometimes be 10x slower than the "esbuild" package, so you may also not
want to do that.
`);
}
throw new Error(`The package "${pkg}" could not be found, and is needed by esbuild.
If you are installing esbuild with npm, make sure that you don't specify the
"--no-optional" or "--omit=optional" flags. The "optionalDependencies" feature
of "package.json" is used by esbuild to install the correct binary executable
for your current platform.`);
}
throw e;
}
}
if (/\.zip\//.test(binPath)) {
let pnpapi;
try {
pnpapi = require("pnpapi");
} catch (e) {
}
if (pnpapi) {
const root = pnpapi.getPackageInformation(pnpapi.topLevel).packageLocation;
const binTargetPath = path.join(
root,
"node_modules",
".cache",
"esbuild",
`pnpapi-${pkg}-${"0.15.18"}-${path.basename(subpath)}`
);
if (!fs.existsSync(binTargetPath)) {
fs.mkdirSync(path.dirname(binTargetPath), { recursive: true });
fs.copyFileSync(binPath, binTargetPath);
fs.chmodSync(binTargetPath, 493);
}
return { binPath: binTargetPath, isWASM };
}
}
return { binPath, isWASM };
}
// lib/npm/node.ts
var child_process = require("child_process");
var crypto = require("crypto");
var path2 = require("path");
var fs2 = require("fs");
var os2 = require("os");
var tty = require("tty");
var worker_threads;
if (process.env.ESBUILD_WORKER_THREADS !== "0") {
try {
worker_threads = require("worker_threads");
} catch {
}
let [major, minor] = process.versions.node.split(".");
if (+major < 12 || +major === 12 && +minor < 17 || +major === 13 && +minor < 13) {
worker_threads = void 0;
}
}
var _a;
var isInternalWorkerThread = ((_a = worker_threads == null ? void 0 : worker_threads.workerData) == null ? void 0 : _a.esbuildVersion) === "0.15.18";
var esbuildCommandAndArgs = () => {
if ((!ESBUILD_BINARY_PATH || false) && (path2.basename(__filename) !== "main.js" || path2.basename(__dirname) !== "lib")) {
throw new Error(
`The esbuild JavaScript API cannot be bundled. Please mark the "esbuild" package as external so it's not included in the bundle.
More information: The file containing the code for esbuild's JavaScript API (${__filename}) does not appear to be inside the esbuild package on the file system, which usually means that the esbuild package was bundled into another file. This is problematic because the API needs to run a binary executable inside the esbuild package which is located using a relative path from the API code to the executable. If the esbuild package is bundled, the relative path will be incorrect and the executable won't be found.`
);
}
if (false) {
return ["node", [path2.join(__dirname, "..", "bin", "esbuild")]];
} else {
const { binPath, isWASM } = generateBinPath();
if (isWASM) {
return ["node", [binPath]];
} else {
return [binPath, []];
}
}
};
var isTTY = () => tty.isatty(2);
var fsSync = {
readFile(tempFile, callback) {
try {
let contents = fs2.readFileSync(tempFile, "utf8");
try {
fs2.unlinkSync(tempFile);
} catch {
}
callback(null, contents);
} catch (err) {
callback(err, null);
}
},
writeFile(contents, callback) {
try {
let tempFile = randomFileName();
fs2.writeFileSync(tempFile, contents);
callback(tempFile);
} catch {
callback(null);
}
}
};
var fsAsync = {
readFile(tempFile, callback) {
try {
fs2.readFile(tempFile, "utf8", (err, contents) => {
try {
fs2.unlink(tempFile, () => callback(err, contents));
} catch {
callback(err, contents);
}
});
} catch (err) {
callback(err, null);
}
},
writeFile(contents, callback) {
try {
let tempFile = randomFileName();
fs2.writeFile(tempFile, contents, (err) => err !== null ? callback(null) : callback(tempFile));
} catch {
callback(null);
}
}
};
var version = "0.15.18";
var build = (options) => ensureServiceIsRunning().build(options);
var serve = (serveOptions, buildOptions) => ensureServiceIsRunning().serve(serveOptions, buildOptions);
var transform = (input, options) => ensureServiceIsRunning().transform(input, options);
var formatMessages = (messages, options) => ensureServiceIsRunning().formatMessages(messages, options);
var analyzeMetafile = (messages, options) => ensureServiceIsRunning().analyzeMetafile(messages, options);
var buildSync = (options) => {
if (worker_threads && !isInternalWorkerThread) {
if (!workerThreadService)
workerThreadService = startWorkerThreadService(worker_threads);
return workerThreadService.buildSync(options);
}
let result;
runServiceSync((service) => service.buildOrServe({
callName: "buildSync",
refs: null,
serveOptions: null,
options,
isTTY: isTTY(),
defaultWD,
callback: (err, res) => {
if (err)
throw err;
result = res;
}
}));
return result;
};
var transformSync = (input, options) => {
if (worker_threads && !isInternalWorkerThread) {
if (!workerThreadService)
workerThreadService = startWorkerThreadService(worker_threads);
return workerThreadService.transformSync(input, options);
}
let result;
runServiceSync((service) => service.transform({
callName: "transformSync",
refs: null,
input,
options: options || {},
isTTY: isTTY(),
fs: fsSync,
callback: (err, res) => {
if (err)
throw err;
result = res;
}
}));
return result;
};
var formatMessagesSync = (messages, options) => {
if (worker_threads && !isInternalWorkerThread) {
if (!workerThreadService)
workerThreadService = startWorkerThreadService(worker_threads);
return workerThreadService.formatMessagesSync(messages, options);
}
let result;
runServiceSync((service) => service.formatMessages({
callName: "formatMessagesSync",
refs: null,
messages,
options,
callback: (err, res) => {
if (err)
throw err;
result = res;
}
}));
return result;
};
var analyzeMetafileSync = (metafile, options) => {
if (worker_threads && !isInternalWorkerThread) {
if (!workerThreadService)
workerThreadService = startWorkerThreadService(worker_threads);
return workerThreadService.analyzeMetafileSync(metafile, options);
}
let result;
runServiceSync((service) => service.analyzeMetafile({
callName: "analyzeMetafileSync",
refs: null,
metafile: typeof metafile === "string" ? metafile : JSON.stringify(metafile),
options,
callback: (err, res) => {
if (err)
throw err;
result = res;
}
}));
return result;
};
var initializeWasCalled = false;
var initialize = (options) => {
options = validateInitializeOptions(options || {});
if (options.wasmURL)
throw new Error(`The "wasmURL" option only works in the browser`);
if (options.wasmModule)
throw new Error(`The "wasmModule" option only works in the browser`);
if (options.worker)
throw new Error(`The "worker" option only works in the browser`);
if (initializeWasCalled)
throw new Error('Cannot call "initialize" more than once');
ensureServiceIsRunning();
initializeWasCalled = true;
return Promise.resolve();
};
var defaultWD = process.cwd();
var longLivedService;
var ensureServiceIsRunning = () => {
if (longLivedService)
return longLivedService;
let [command, args] = esbuildCommandAndArgs();
let child = child_process.spawn(command, args.concat(`--service=${"0.15.18"}`, "--ping"), {
windowsHide: true,
stdio: ["pipe", "pipe", "inherit"],
cwd: defaultWD
});
let { readFromStdout, afterClose, service } = createChannel({
writeToStdin(bytes) {
child.stdin.write(bytes, (err) => {
if (err)
afterClose(err);
});
},
readFileSync: fs2.readFileSync,
isSync: false,
isWriteUnavailable: false,
esbuild: node_exports
});
child.stdin.on("error", afterClose);
child.on("error", afterClose);
const stdin = child.stdin;
const stdout = child.stdout;
stdout.on("data", readFromStdout);
stdout.on("end", afterClose);
let refCount = 0;
child.unref();
if (stdin.unref) {
stdin.unref();
}
if (stdout.unref) {
stdout.unref();
}
const refs = {
ref() {
if (++refCount === 1)
child.ref();
},
unref() {
if (--refCount === 0)
child.unref();
}
};
longLivedService = {
build: (options) => {
return new Promise((resolve, reject) => {
service.buildOrServe({
callName: "build",
refs,
serveOptions: null,
options,
isTTY: isTTY(),
defaultWD,
callback: (err, res) => err ? reject(err) : resolve(res)
});
});
},
serve: (serveOptions, buildOptions) => {
if (serveOptions === null || typeof serveOptions !== "object")
throw new Error("The first argument must be an object");
return new Promise((resolve, reject) => service.buildOrServe({
callName: "serve",
refs,
serveOptions,
options: buildOptions,
isTTY: isTTY(),
defaultWD,
callback: (err, res) => err ? reject(err) : resolve(res)
}));
},
transform: (input, options) => {
return new Promise((resolve, reject) => service.transform({
callName: "transform",
refs,
input,
options: options || {},
isTTY: isTTY(),
fs: fsAsync,
callback: (err, res) => err ? reject(err) : resolve(res)
}));
},
formatMessages: (messages, options) => {
return new Promise((resolve, reject) => service.formatMessages({
callName: "formatMessages",
refs,
messages,
options,
callback: (err, res) => err ? reject(err) : resolve(res)
}));
},
analyzeMetafile: (metafile, options) => {
return new Promise((resolve, reject) => service.analyzeMetafile({
callName: "analyzeMetafile",
refs,
metafile: typeof metafile === "string" ? metafile : JSON.stringify(metafile),
options,
callback: (err, res) => err ? reject(err) : resolve(res)
}));
}
};
return longLivedService;
};
var runServiceSync = (callback) => {
let [command, args] = esbuildCommandAndArgs();
let stdin = new Uint8Array();
let { readFromStdout, afterClose, service } = createChannel({
writeToStdin(bytes) {
if (stdin.length !== 0)
throw new Error("Must run at most one command");
stdin = bytes;
},
isSync: true,
isWriteUnavailable: false,
esbuild: node_exports
});
callback(service);
let stdout = child_process.execFileSync(command, args.concat(`--service=${"0.15.18"}`), {
cwd: defaultWD,
windowsHide: true,
input: stdin,
maxBuffer: +process.env.ESBUILD_MAX_BUFFER || 16 * 1024 * 1024
});
readFromStdout(stdout);
afterClose(null);
};
var randomFileName = () => {
return path2.join(os2.tmpdir(), `esbuild-${crypto.randomBytes(32).toString("hex")}`);
};
var workerThreadService = null;
var startWorkerThreadService = (worker_threads2) => {
let { port1: mainPort, port2: workerPort } = new worker_threads2.MessageChannel();
let worker = new worker_threads2.Worker(__filename, {
workerData: { workerPort, defaultWD, esbuildVersion: "0.15.18" },
transferList: [workerPort],
execArgv: []
});
let nextID = 0;
let fakeBuildError = (text) => {
let error = new Error(`Build failed with 1 error:
error: ${text}`);
let errors = [{ id: "", pluginName: "", text, location: null, notes: [], detail: void 0 }];
error.errors = errors;
error.warnings = [];
return error;
};
let validateBuildSyncOptions = (options) => {
if (!options)
return;
let plugins = options.plugins;
let incremental = options.incremental;
let watch = options.watch;
if (plugins && plugins.length > 0)
throw fakeBuildError(`Cannot use plugins in synchronous API calls`);
if (incremental)
throw fakeBuildError(`Cannot use "incremental" with a synchronous build`);
if (watch)
throw fakeBuildError(`Cannot use "watch" with a synchronous build`);
};
let applyProperties = (object, properties) => {
for (let key in properties) {
object[key] = properties[key];
}
};
let runCallSync = (command, args) => {
let id = nextID++;
let sharedBuffer = new SharedArrayBuffer(8);
let sharedBufferView = new Int32Array(sharedBuffer);
let msg = { sharedBuffer, id, command, args };
worker.postMessage(msg);
let status = Atomics.wait(sharedBufferView, 0, 0);
if (status !== "ok" && status !== "not-equal")
throw new Error("Internal error: Atomics.wait() failed: " + status);
let { message: { id: id2, resolve, reject, properties } } = worker_threads2.receiveMessageOnPort(mainPort);
if (id !== id2)
throw new Error(`Internal error: Expected id ${id} but got id ${id2}`);
if (reject) {
applyProperties(reject, properties);
throw reject;
}
return resolve;
};
worker.unref();
return {
buildSync(options) {
validateBuildSyncOptions(options);
return runCallSync("build", [options]);
},
transformSync(input, options) {
return runCallSync("transform", [input, options]);
},
formatMessagesSync(messages, options) {
return runCallSync("formatMessages", [messages, options]);
},
analyzeMetafileSync(metafile, options) {
return runCallSync("analyzeMetafile", [metafile, options]);
}
};
};
var startSyncServiceWorker = () => {
let workerPort = worker_threads.workerData.workerPort;
let parentPort = worker_threads.parentPort;
let extractProperties = (object) => {
let properties = {};
if (object && typeof object === "object") {
for (let key in object) {
properties[key] = object[key];
}
}
return properties;
};
try {
let service = ensureServiceIsRunning();
defaultWD = worker_threads.workerData.defaultWD;
parentPort.on("message", (msg) => {
(async () => {
let { sharedBuffer, id, command, args } = msg;
let sharedBufferView = new Int32Array(sharedBuffer);
try {
switch (command) {
case "build":
workerPort.postMessage({ id, resolve: await service.build(args[0]) });
break;
case "transform":
workerPort.postMessage({ id, resolve: await service.transform(args[0], args[1]) });
break;
case "formatMessages":
workerPort.postMessage({ id, resolve: await service.formatMessages(args[0], args[1]) });
break;
case "analyzeMetafile":
workerPort.postMessage({ id, resolve: await service.analyzeMetafile(args[0], args[1]) });
break;
default:
throw new Error(`Invalid command: ${command}`);
}
} catch (reject) {
workerPort.postMessage({ id, reject, properties: extractProperties(reject) });
}
Atomics.add(sharedBufferView, 0, 1);
Atomics.notify(sharedBufferView, 0, Infinity);
})();
});
} catch (reject) {
parentPort.on("message", (msg) => {
let { sharedBuffer, id } = msg;
let sharedBufferView = new Int32Array(sharedBuffer);
workerPort.postMessage({ id, reject, properties: extractProperties(reject) });
Atomics.add(sharedBufferView, 0, 1);
Atomics.notify(sharedBufferView, 0, Infinity);
});
}
};
if (isInternalWorkerThread) {
startSyncServiceWorker();
}
var node_default = node_exports;
// Annotate the CommonJS export names for ESM import in node:
0 && (module.exports = {
analyzeMetafile,
analyzeMetafileSync,
build,
buildSync,
formatMessages,
formatMessagesSync,
initialize,
serve,
transform,
transformSync,
version
});
|