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 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075
|
# rollup changelog
## 3.29.4
_2023-09-28_
### Bug Fixes
- Fix static analysis when an exported function uses callbacks (#5158)
### Pull Requests
- [#5158](https://github.com/rollup/rollup/pull/5158): Deoptimize all parameters when losing track of a function (@lukastaegert)
## 3.29.3
_2023-09-24_
### Bug Fixes
- Fix a bug where code was wrongly tree-shaken after mutating function parameters (#5153)
### Pull Requests
- [#5145](https://github.com/rollup/rollup/pull/5145): docs: improve the docs repl appearance in the light mode (@TrickyPi)
- [#5148](https://github.com/rollup/rollup/pull/5148): chore(deps): update dependency @vue/eslint-config-typescript to v12 (@renovate[bot])
- [#5149](https://github.com/rollup/rollup/pull/5149): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5153](https://github.com/rollup/rollup/pull/5153): Fully deoptimize first level path when deoptimizing nested parameter paths (@lukastaegert)
## 3.29.2
_2023-09-15_
### Bug Fixes
- Export `TreeshakingPreset` type (#5131)
### Pull Requests
- [#5131](https://github.com/rollup/rollup/pull/5131): fix: exports `TreeshakingPreset` (@moltar)
- [#5134](https://github.com/rollup/rollup/pull/5134): docs: steps to enable symlinks on windows (@thebanjomatic)
- [#5137](https://github.com/rollup/rollup/pull/5137): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
## 3.29.1
_2023-09-10_
### Bug Fixes
- Fix time measurement of plugin hooks in watch mode (#5114)
- Ensure accessing document.currentScript in import.meta.url returns correct results (#5118)
### Pull Requests
- [#5114](https://github.com/rollup/rollup/pull/5114): fix(perf): avoid superfluous timer wrappings in watch mode (@ZhengLiu2825)
- [#5118](https://github.com/rollup/rollup/pull/5118): fix: access document.currentScript at the top level (@TrickyPi)
- [#5125](https://github.com/rollup/rollup/pull/5125): chore(deps): update actions/checkout action to v4 (@renovate[bot])
- [#5126](https://github.com/rollup/rollup/pull/5126): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5129](https://github.com/rollup/rollup/pull/5129): re-enbale repl-artefacts workflow for rollup-swc branch (@TrickyPi)
## 3.29.0
_2023-09-06_
### Features
- Add output.sourcemapFileNames option (#5105)
- Add generic type parameter for `api` to Plugin type (#5112)
### Bug Fixes
- Ensure mutations of CustomEvent details are tracked (#5123)
### Pull Requests
- [#5105](https://github.com/rollup/rollup/pull/5105): Added option to name sourcemap files, i.e. a output.sourcemapFileName… (@atti187)
- [#5108](https://github.com/rollup/rollup/pull/5108): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5109](https://github.com/rollup/rollup/pull/5109): Docs: load full path of rollup.browser.js for Rollup V4 (@TrickyPi)
- [#5112](https://github.com/rollup/rollup/pull/5112): feat(types): add generic type for plugin api (@sxzz)
- [#5115](https://github.com/rollup/rollup/pull/5115): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5123](https://github.com/rollup/rollup/pull/5123): Deoptimize custom event detail (@lukastaegert)
## 3.28.1
_2023-08-22_
### Bug Fixes
- Ensure external files with relative import paths outside the target are rendered correctly (#5099)
### Pull Requests
- [#5093](https://github.com/rollup/rollup/pull/5093): chore(deps): update dependency eslint-config-prettier to v9 (@renovate[bot])
- [#5094](https://github.com/rollup/rollup/pull/5094): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5099](https://github.com/rollup/rollup/pull/5099): Fix resolution of relative external files outside target directory (@lukastaegert)
- [#5101](https://github.com/rollup/rollup/pull/5101): chore(deps): update dependency lint-staged to v14 (@renovate[bot])
- [#5102](https://github.com/rollup/rollup/pull/5102): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
## 3.28.0
_2023-08-09_
### Features
- Add a new property `preliminaryFileName` to generated chunks containing the file name placeholder (#5086)
- Improve performance of sourcemap generation by lazily decoding mappings (#5087)
### Bug Fixes
- Make the `code` property of rendered modules in the output readonly (#5091)
### Pull Requests
- [#5086](https://github.com/rollup/rollup/pull/5086): feat: add `preliminaryFileName` to `OutputChunk` (@lsdsjy)
- [#5087](https://github.com/rollup/rollup/pull/5087): perf(sourcemaps): add back lazy sourcemap decode and handling nullish mappings (@thebanjomatic)
- [#5091](https://github.com/rollup/rollup/pull/5091): fix: the type of RenderedModule.code is readonly (@TrickyPi)
## 3.27.2
_2023-08-04_
### Bug Fixes
- Revert sourcemap performance improvement for now as it causes issues with Vite (#5075)
### Pull Requests
- [#5075](https://github.com/rollup/rollup/pull/5075): Revert perf(sourcemap): lazy compute decoded mappings (@thebanjomatic)
## 3.27.1
_2023-08-03_
### Bug Fixes
- Improve performance when generating sourcemaps (#5075)
### Pull Requests
- [#5075](https://github.com/rollup/rollup/pull/5075): perf(sourcemap): lazy compute decoded mappings (@thebanjomatic)
## 3.27.0
_2023-07-28_
### Features
- Mark `Object.values` and `Object.entries` as pure if their argument does not contain getters (#5072)
### Pull Requests
- [#5070](https://github.com/rollup/rollup/pull/5070): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5071](https://github.com/rollup/rollup/pull/5071): docs(tutorial): change the .js extension to .mjs (@TrickyPi)
- [#5072](https://github.com/rollup/rollup/pull/5072): Add known globals (@sapphi-red)
- [#5078](https://github.com/rollup/rollup/pull/5078): chore(deps): update dependency @vue/eslint-config-prettier to v8 (@renovate[bot])
- [#5079](https://github.com/rollup/rollup/pull/5079): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
## 3.26.3
_2023-07-17_
### Bug Fixes
- Do not pass external modules to `manualChunks` to avoid breaking existing configs (#5068)
### Pull Requests
- [#5056](https://github.com/rollup/rollup/pull/5056): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5059](https://github.com/rollup/rollup/pull/5059): chore(config): migrate renovate config (@renovate[bot])
- [#5064](https://github.com/rollup/rollup/pull/5064): chore(deps): update dependency prettier to v3 (@renovate[bot])
- [#5065](https://github.com/rollup/rollup/pull/5065): chore(deps): update typescript-eslint monorepo to v6 (major) (@renovate[bot])
- [#5068](https://github.com/rollup/rollup/pull/5068): fix: don't pass external modules to the manualChunks function (@TrickyPi)
## 3.26.2
_2023-07-06_
### Bug Fixes
- Improve error handling when manual chunks would contain external modules (#5050)
### Pull Requests
- [#5050](https://github.com/rollup/rollup/pull/5050): fix: improve error for manualChunks' modules that are resolved as an external module (@TrickyPi)
## 3.26.1
_2023-07-05_
### Bug Fixes
- Support `hasOwnProperty` as exported name in CommonJS (#5010)
- Properly reference browser types in package file (#5051)
### Pull Requests
- [#5010](https://github.com/rollup/rollup/pull/5010): safe hasOwnProperty call (@LongTengDao)
- [#5051](https://github.com/rollup/rollup/pull/5051): @rollup/browser: fix types export map entry (@developit)
## 3.26.0
_2023-06-30_
### Features
- Add `--filterLogs` CLI flag and `ROLLUP_FILTER_LOGS` environment variable for log filtering (#5035)
### Pull Requests
- [#5035](https://github.com/rollup/rollup/pull/5035): Add ability to filter logs via CLI option or environment variable (@lukastaegert)
- [#5049](https://github.com/rollup/rollup/pull/5049): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
## 3.25.3
_2023-06-26_
### Bug Fixes
- Fix error when inlining dynamic imports that contain unused reexported variables (#5047)
### Pull Requests
- [#5047](https://github.com/rollup/rollup/pull/5047): Do not add tree-shaken variables to namespaces when inlining dynamic imports (@lukastaegert)
## 3.25.2
_2023-06-24_
### Bug Fixes
- Handle plugin errors where `code` is not a string (#5042)
- Use current transformed source when generating code frames with positions in transform hooks (#5045)
### Pull Requests
- [#5038](https://github.com/rollup/rollup/pull/5038): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5040](https://github.com/rollup/rollup/pull/5040): Fix typo in index.md (@vHeemstra)
- [#5042](https://github.com/rollup/rollup/pull/5042): fix: a plugin error can contains numeric code (@TrickyPi)
- [#5045](https://github.com/rollup/rollup/pull/5045): Fix `this.error` with `pos` in `transform` hook (@sapphi-red)
- [#5046](https://github.com/rollup/rollup/pull/5046): chore(deps): update dependency locate-character to v3 (@renovate[bot])
## 3.25.1
_2023-06-12_
### Bug Fixes
- Respect `__NO_SIDE_EFFECTS__` for async functions (#5031)
### Pull Requests
- [#5031](https://github.com/rollup/rollup/pull/5031): fix: `__NO_SIDE_EFFECTS__` annotation for async function (@antfu)
## 3.25.0
_2023-06-11_
### Features
- Add `this.info` and `this.debug` plugin context logging functions (#5026)
- Add `onLog` option to read, map and filter logs (#5026)
- Add `logLevel` option to fully suppress logs by level (#5026)
- Support function logs in `this.warn`, `this.info` and `this.debug` to avoid heavy computations based on log level (#5026)
- Add `onLog` plugin hook to read, filter and map logs from plugins (#5026)
### Pull Requests
- [#5026](https://github.com/rollup/rollup/pull/5026): Add Logging API (@lukastaegert)
## 3.24.1
_2023-06-10_
### Bug Fixes
- Fix an issue where bundles with `@rollup/plugin-commonjs` were missing internal dependencies when code-splitting (#5029)
- Do not use `process.exit(0)` in watch mode to avoid issues in embedded scenarios (#5027)
### Pull Requests
- [#5027](https://github.com/rollup/rollup/pull/5027): fix turborepo with rollup --watch (@plumber-dhaval)
- [#5028](https://github.com/rollup/rollup/pull/5028): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5029](https://github.com/rollup/rollup/pull/5029): fix: get right sideEffectModules (@TrickyPi)
## 3.24.0
_2023-06-07_
### Features
- Add new annotation `/* #__NO_SIDE_EFFECTS__ */` to mark function declarations as side effect free (#5024)
### Pull Requests
- [#5024](https://github.com/rollup/rollup/pull/5024): feat: support `#__NO_SIDE_EFFECTS__` annotation for function declaration (@antfu)
## 3.23.1
_2023-06-04_
### Bug Fixes
- Ensure the last segment of sourcemapBaseUrl is never omitted (#5022)
### Pull Requests
- [#5006](https://github.com/rollup/rollup/pull/5006): Better workflow caching (@lukastaegert)
- [#5012](https://github.com/rollup/rollup/pull/5012): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5022](https://github.com/rollup/rollup/pull/5022): fix: add a trailing slash automatically for sourcemapBaseUrl (@TrickyPi)
- [#5023](https://github.com/rollup/rollup/pull/5023): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
## 3.23.0
_2023-05-22_
### Features
- Support emitting "prebuilt chunks" from plugins (#4990)
### Bug Fixes
- Mark Sets and Maps as pure when they receive an array literal as argument (#5005)
### Pull Requests
- [#4990](https://github.com/rollup/rollup/pull/4990): feat: this.emitFile support prebuilt-chunk type (@TrickyPi)
- [#5005](https://github.com/rollup/rollup/pull/5005): feat: mark Set, Map, WeakSet and WeakMap with array arguments as pure (@TrickyPi)
## 3.22.1
_2023-05-21_
### Bug Fixes
- Remove force quit again as it caused some issues (#5004)
### Pull Requests
- [#5001](https://github.com/rollup/rollup/pull/5001): chore(deps): update dependency @rollup/plugin-commonjs to v25 (@renovate[bot])
- [#5002](https://github.com/rollup/rollup/pull/5002): chore(deps): update dependency eslint-plugin-unicorn to v47 (@renovate[bot])
- [#5003](https://github.com/rollup/rollup/pull/5003): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#5004](https://github.com/rollup/rollup/pull/5004): Do not force quit Rollup or close stdout (@lukastaegert)
## 3.22.0
_2023-05-17_
### Features
- Prevent empty non-facade chunks by merging them into other suitable chunks (#4989)
- Avoid facade chunks in some situations involving reexports (#4989)
- Improve algorithm for best merge target when using `experimentalMinChunkSize` to take tree-shaking into account (#4989)
### Bug Fixes
- Take side effects of external dependencies into account when merging chunks for `experimentalMinChunkSize` (#4989)
### Pull Requests
- [#4989](https://github.com/rollup/rollup/pull/4989): Prevent empty chunks and thoroughly improve experimentalMinChunkSize (@lukastaegert)
## 3.21.8
_2023-05-16_
### Bug Fixes
- Allow a namespace to properly contain itself as a named export (#4991)
### Pull Requests
- [#4991](https://github.com/rollup/rollup/pull/4991): Handle self-referencing namespaces (@lukastaegert)
## 3.21.7
_2023-05-13_
### Bug Fixes
- Show correct error on uncaught exceptions in watch mode (#4987)
### Pull Requests
- [#4987](https://github.com/rollup/rollup/pull/4987): Properly quit on uncaught exceptions (@lukastaegert)
- [#4988](https://github.com/rollup/rollup/pull/4988): test: add options type for function tests (@TrickyPi)
## 3.21.6
_2023-05-09_
### Bug Fixes
- Ensure Rollup CLI prints everything to stdout before exiting (#4980)
### Pull Requests
- [#4980](https://github.com/rollup/rollup/pull/4980): chore(deps): lock file maintenance minor/patch updates (@renovate[bot])
- [#4983](https://github.com/rollup/rollup/pull/4983): Prevent exit before stdout is drained (@lukastaegert)
## 3.21.5
_2023-05-05_
### Bug Fixes
- Keep all consecutive lines at the top of each module that start with a comment (#4975)
- Ensure that declarations inside switch cases do not use the same scope as the discriminator (#4979)
### Pull Requests
- [#4975](https://github.com/rollup/rollup/pull/4975): Keep leading comments on consecutive lines (@lukastaegert)
- [#4979](https://github.com/rollup/rollup/pull/4979): Use correct scope in switch statements (@lukastaegert)
## 3.21.4
_2023-05-03_
### Bug Fixes
- Resolve crash when shimming a missing export in an otherwise non-included module when preserving modules (#4971)
### Pull Requests
- [#4971](https://github.com/rollup/rollup/pull/4971): Handle shimming missing exports when preserving modules (@lukastaegert)
- [#4972](https://github.com/rollup/rollup/pull/4972): Configure Renovate (@renovate[bot])
## 3.21.3
_2023-05-02_
### Bug Fixes
- Run `process.exit()` when Rollup CLI finishes successfully to solve issues on some systems (#4969)
### Pull Requests
- [#4954](https://github.com/rollup/rollup/pull/4954): test: enable typecheck for \_config files (@antfu)
- [#4969](https://github.com/rollup/rollup/pull/4969): Automatically force close Rollup when done (@lukastaegert)
## 3.21.2
_2023-04-30_
### Bug Fixes
- Mark global functions that trigger iterators as impure for now (#4955)
### Pull Requests
- [#4955](https://github.com/rollup/rollup/pull/4955): fix: mark some known globals or their functions as impure (@TrickyPi)
## 3.21.1
_2023-04-29_
### Bug Fixes
- Make sure call arguments are properly deoptimized when a function uses the `arguments` variable (#4965)
### Pull Requests
- [#4957](https://github.com/rollup/rollup/pull/4957): Update dependencies (@lukastaegert)
- [#4964](https://github.com/rollup/rollup/pull/4964): Fix REPL in dev (@lukastaegert)
- [#4965](https://github.com/rollup/rollup/pull/4965): Ensure arguments are deoptimized when arguments variable is used (@lukastaegert)
- [#4967](https://github.com/rollup/rollup/pull/4967): Log REPL output to console (@lukastaegert)
## 3.21.0
_2023-04-23_
### Features
- Support tree-shaking of named exports in dynamic imports when using destructuring and similar patterns (#4952)
### Pull Requests
- [#4952](https://github.com/rollup/rollup/pull/4952): feat: tree-shake deterministic dynamic imports (@antfu)
## 3.20.7
_2023-04-21_
### Bug Fixes
- Properly track array element mutations when iterating with a for-of loop (#4949)
- Handle default exporting an anonymous class that extends another class (#4950)
### Pull Requests
- [#4943](https://github.com/rollup/rollup/pull/4943): Add a test for reserved keywords used as import/export specifiers (@Andarist)
- [#4949](https://github.com/rollup/rollup/pull/4949): Deoptimize right side in for-of loops (@lukastaegert)
- [#4950](https://github.com/rollup/rollup/pull/4950): Support default exported classes that extend other classes (@lukastaegert)
## 3.20.6
_2023-04-18_
### Bug Fixes
- Revert handling of non-JS import and export names due to regressions (#4914)
### Pull Requests
- [#4914](https://github.com/rollup/rollup/pull/4914): feat: add locales in vitepress config (@iDestin)
- [#4946](https://github.com/rollup/rollup/pull/4946): Revert #4939 for now (@lukastaegert)
## 3.20.5
_2023-04-18_
### Bug Fixes
- Handle import and export names that are not valid JavaScript identifiers (#4939)
### Pull Requests
- [#4939](https://github.com/rollup/rollup/pull/4939): Fixed imports/exports that are illegal identifiers in the es output (@Andarist)
- [#4941](https://github.com/rollup/rollup/pull/4941): Reinstate global styles (@lukastaegert)
## 3.20.4
_2023-04-17_
### Bug Fixes
- Do not remove breaks statements after switch statements with conditional breaks (#4937)
### Pull Requests
- [#4937](https://github.com/rollup/rollup/pull/4937): fix: handle conditional breaks in nested switch statement cases (@TrickyPi and @lukastaegert)
## 3.20.3
_2023-04-16_
### Bug Fixes
- Reduce memory consumption for function call parameter analysis (#4938)
- Fix types for `shouldTransformCachedModule` (#4932)
### Pull Requests
- [#4925](https://github.com/rollup/rollup/pull/4925): chore: repl style add scoped (@btea)
- [#4926](https://github.com/rollup/rollup/pull/4926): docs: Update the x_google_ignorelist url (@jecfish)
- [#4932](https://github.com/rollup/rollup/pull/4932): Allow shouldTransformCachedModule to return null (@bluwy)
- [#4935](https://github.com/rollup/rollup/pull/4935): Bump peter-evans/create-or-update-comment from 2 to 3 (@dependabot[bot])
- [#4936](https://github.com/rollup/rollup/pull/4936): Disable puppeteer sandbox to fix Vercel deployment (@lukastaegert)
- [#4938](https://github.com/rollup/rollup/pull/4938): Improve memory usage for parameter deoptimizations (@lukastaegert)
## 3.20.2
_2023-03-24_
### Bug Fixes
- Fix a crash when using a manual chunk entry that is not already included in the module graph (#4921)
- Fix a crash when reporting a warning with incorrect sourcemap information (#4922)
### Pull Requests
- [#4921](https://github.com/rollup/rollup/pull/4921): Handle manual chunks where the entry is not part of the module graph (@lukastaegert)
- [#4922](https://github.com/rollup/rollup/pull/4922): Do not fail if the location of a warning is outside the original source (@lukastaegert)
## 3.20.1
_2023-03-23_
### Bug Fixes
- Fix returned file name from this.getFileName when assets are deduplicated (#4919)
### Pull Requests
- [#4919](https://github.com/rollup/rollup/pull/4919): Only set asset names when finalizing (@lukastaegert)
## 3.20.0
_2023-03-20_
### Features
- Allow dynamically imported files to have synthetic named exports when preserving modules (#4913)
### Bug Fixes
- Use deterministic file name when emitting several files with same source (#4912)
- Fix a crash when dynamically importing a file with synthetic named exports when preserving modules (#4913)
### Pull Requests
- [#4912](https://github.com/rollup/rollup/pull/4912): fix: make file name deterministic in parallel emits (fix #4909) (@sun0day)
- [#4913](https://github.com/rollup/rollup/pull/4913): Provide synthetic namespace for dynamic imports when perserving modules (@lukastaegert)
## 3.19.1
_2023-03-10_
### Bug Fixes
- Produce valid code when the first statement in aclass static block is tree-shaken (#4898)
### Pull Requests
- [#4898](https://github.com/rollup/rollup/pull/4898): fix: set a correct node location for static blocks (@TrickyPi)
- [#4900](https://github.com/rollup/rollup/pull/4900): docs: fix table at `output.sanitizeFileName` section (@0x009922)
## 3.19.0
_2023-03-09_
### Features
- Make reassignment tracking of call parameters more specific to no lose information when an object is passed to a function (#4892)
### Pull Requests
- [#4890](https://github.com/rollup/rollup/pull/4890): Fix `npm run dev` (@lukastaegert)
- [#4892](https://github.com/rollup/rollup/pull/4892): Only selectively deoptimize call parameters (@lukastaegert)
- [#4897](https://github.com/rollup/rollup/pull/4897): Pre-render mermaid graphs on website (@lukastaegert)
## 3.18.0
_2023-03-01_
### Features
- Add `experimentalLogSideEffects` to log the first detected side effect in every module (#4871)
- Ignore-list sourcemaps of files inside node_modules by default (#4877)
### Pull Requests
- [#4871](https://github.com/rollup/rollup/pull/4871): Add experimental logging for side effects (@lukastaegert)
- [#4877](https://github.com/rollup/rollup/pull/4877): feat: mark files in a `node_modules` as ignore-listed by default (@bmeurer)
- [#4880](https://github.com/rollup/rollup/pull/4880): build: use @rollup/plugin-replace to replace chokidar fsevents (@dnalborczyk)
- [#4887](https://github.com/rollup/rollup/pull/4887): Refactor (@dnalborczyk)
## 3.17.3
_2023-02-25_
### Bug Fixes
- Handle non-URL-safe characters when poly-filling import.meta.url (#4875)
### Pull Requests
- [#4870](https://github.com/rollup/rollup/pull/4870): fix: style optimization in dark mode (@huodoushigemi)
- [#4875](https://github.com/rollup/rollup/pull/4875): Fix transformation of `import.meta.url` in CommonJS (@fasttime)
- [#4876](https://github.com/rollup/rollup/pull/4876): fix: wrong params of the transform hook (@ZzqiZQute)
- [#4878](https://github.com/rollup/rollup/pull/4878): Improve test stability (@lukastaegert)
## 3.17.2
_2023-02-20_
### Bug Fixes
- Do not omit code if a file that only re-exports a used variable has `moduleSideEffects` set to `true` (#4867)
- Add missing `needsCodeReference` property in TypeScript for asset tree-shaking (#4868)
- Add correct side effect configuration for additional Object and Promise methods (#4323)
### Pull Requests
- [#4323](https://github.com/rollup/rollup/pull/4323): feat: add known globals (@dnalborczyk)
- [#4867](https://github.com/rollup/rollup/pull/4867): Include side effects of re-exporters unless they have moduleSideEffects: false (@lukastaegert)
- [#4868](https://github.com/rollup/rollup/pull/4868): Add `needsCodeReference` property to `EmittedAsset` (@sapphi-red)
## 3.17.1
_2023-02-18_
### Bug Fixes
- Add TypeScript types for `loadConfigFile` (#4853)
- Fix an issue that could include unused classes in the bundle if their super class was in a file with `moduleSideEffects: false` (#4866)
### Pull Requests
- [#4853](https://github.com/rollup/rollup/pull/4853): feat: export loadConfigFile type (@TrickyPi)
- [#4866](https://github.com/rollup/rollup/pull/4866): Do not mark variable access in files without side effects as TDZ (@lukastaegert)
## 3.17.0
_2023-02-18_
### Features
- Deprecate `experimentalDeepDynamicChunkOptimization` and always run the full chunk generation algorithm (#4862)
### Bug Fixes
- Fix an issue that caused very slow builds for projects with over 1000 dynamic imports when `experimentalDeepDynamicChunkOptimization` was enabled (#4862)
### Pull Requests
- [#4862](https://github.com/rollup/rollup/pull/4862): Improve chunking performance (@lukastaegert)
## 3.16.0
_2023-02-17_
### Features
- Support `output.sourcemapIgnoreList` option to mark file sources as ignored in the `x_google_ignoreList` attribute of the resulting sourcemap (#4848)
- Support sourcemaps where `sourcesContent` contains `null` entries (#4846)
- Allow explicitly passing `true` for the `cache` option to override Vite's default (#4859)
### Bug Fixes
- Fix an issue where unrelated side effects spilled into other chunks when using the `experimentalMinChunkSize` option (#4851)
### Pull Requests
- [#4846](https://github.com/rollup/rollup/pull/4846): Update magic-string and adjust types. (@bmeurer)
- [#4848](https://github.com/rollup/rollup/pull/4848): Introduce `sourcemapIgnoreList` predicate. (@bmeurer)
- [#4851](https://github.com/rollup/rollup/pull/4851): Fix chunk graph update when merging chunks for minChunkSize (@lukastaegert)
- [#4852](https://github.com/rollup/rollup/pull/4852): docs: make api params more readable (@cunzaizhuyi)
- [#4856](https://github.com/rollup/rollup/pull/4856): simplify code in includeStatements (@TrickyPi)
- [#4859](https://github.com/rollup/rollup/pull/4859): Allow to pass "true" to InputOptions.cache (@danielrentz)
## 3.15.0
_2023-02-10_
### Features
- Do not consider instantiating a constructor a side effect if it adds properties to "this" and is instantiated elsewhere (#4842)
### Bug Fixes
- Improve side effect detection in constructors (#4842)
### Pull Requests
- [#4842](https://github.com/rollup/rollup/pull/4842): fix: add this option to context.ignore (@TrickyPi)
- [#4843](https://github.com/rollup/rollup/pull/4843): fixed the logo link (@oMatheuss)
- [#4844](https://github.com/rollup/rollup/pull/4844): Update index.md (@cunzaizhuyi)
- [#4845](https://github.com/rollup/rollup/pull/4845): docs: fix style (@TrickyPi)
## 3.14.0
_2023-02-05_
### Features
- Add `experimentalDeepDynamicChunkOptimization` option to produce fewer chunks from dynamic imports (#4837)
### Pull Requests
- [#4837](https://github.com/rollup/rollup/pull/4837): Add flag to re-enable deep dynamic chunk optimization (@lukastaegert)
- [#4839](https://github.com/rollup/rollup/pull/4839): fix: correct incorrect assertions (@TrickyPi)
## 3.13.0
_2023-02-03_
### Features
- Prevent chunk cycles when using `experimentalMinChunkSize` (#4723)
### Pull Requests
- [#4723](https://github.com/rollup/rollup/pull/4723): Improve minChunkSize algorithm (@lukastaegert)
- [#4833](https://github.com/rollup/rollup/pull/4833): docs: Fix typo (@mturoci)
- [#4835](https://github.com/rollup/rollup/pull/4835): Tables in docs (@lukastaegert)
## 3.12.1
_2023-02-01_
### Bug Fixes
- Handle self-references in class static blocks and construtors when the class is renamed (#4827)
- Improve warnings when creating circular chunks taht reexport variables (#4829)
### Pull Requests
- [#4827](https://github.com/rollup/rollup/pull/4827): fix: use the original class name in the class body (@TrickyPi)
- [#4829](https://github.com/rollup/rollup/pull/4829): Improve and fix cross-chunk-reexport warning (@lukastaegert)
- [#4830](https://github.com/rollup/rollup/pull/4830): Add Algolia doc search (@lukastaegert)
- [#4831](https://github.com/rollup/rollup/pull/4831): Add warning not to add assets directly to the bundle (@lukastaegert)
## 3.12.0
_2023-01-28_
### Features
- Change generated external namespace reexport helper code for CommonJS to better work with NodeJS named export detection (#4826)
### Pull Requests
- [#4825](https://github.com/rollup/rollup/pull/4825): Add and use anchors for nested options (@lukastaegert)
- [#4826](https://github.com/rollup/rollup/pull/4826): Use old namespace reexport code pattern for better Node support (@lukastaegert)
## 3.11.0
_2023-01-26_
### Features
- Support opt-in tree-shaking for emitted assets based on code references (#4805)
### Bug Fixes
- Adapt documentation references in Rollup to new website (#4807)
### Pull Requests
- [#4805](https://github.com/rollup/rollup/pull/4805): feat: add needsCodeReference field to EmittedAsset (@TrickyPi)
- [#4807](https://github.com/rollup/rollup/pull/4807): Rewrite website in Vitepress and merge it into the main repository (@lukastaegert)
- [#4816](https://github.com/rollup/rollup/pull/4816): web-publisher: Update docs/faqs/index.md (@PuruVJ)
- [#4819](https://github.com/rollup/rollup/pull/4819): Replace fs-extra with built-ins (@dnalborczyk)
- [#4820](https://github.com/rollup/rollup/pull/4820): Introduce timeout-minutes in Github actions ci (@dnalborczyk)
- [#4822](https://github.com/rollup/rollup/pull/4822): Tweak document landing page (@sapphi-red)
- [#4823](https://github.com/rollup/rollup/pull/4823): Minor migration guide improvements (@sapphi-red)
- [#4824](https://github.com/rollup/rollup/pull/4824): Add most options to the REPL (@lukastaegert)
## 3.10.1
_2023-01-20_
### Bug Fixes
- Fix some crashes when using optional chaining with namespaces and improve tree-shaking (#4812)
- Avoid wrongly removed code when using optional chaining (#4812)
### Pull Requests
- [#4809](https://github.com/rollup/rollup/pull/4809): fix: rollup bin file is in dist folder (@saibotsivad)
- [#4812](https://github.com/rollup/rollup/pull/4812): Rework tree-shaking support for optional chaining (@lukastaegert)
## 3.10.0
_2023-01-12_
### Features
- Add information about the resolving plugin to resolved ids (#4789)
- Improve treeshaking for optional chaining when the root is nullish (#4797)
### Bug Fixes
- Remove unnecessary internal defaults for acorn options (#4786)
### Pull Requests
- [#4785](https://github.com/rollup/rollup/pull/4785): Use @jridgewell/sourcemap-codec (@bluwy)
- [#4786](https://github.com/rollup/rollup/pull/4786): Remove default acorn options + other fixes (@dnalborczyk)
- [#4789](https://github.com/rollup/rollup/pull/4789): feat: add `resolvedBy` field to `ResolvedId` (@TrickyPi)
- [#4794](https://github.com/rollup/rollup/pull/4794): fix: import can be shortened (@cunzaizhuyi)
- [#4796](https://github.com/rollup/rollup/pull/4796): Update dependencies (@lukastaegert)
- [#4797](https://github.com/rollup/rollup/pull/4797): feat: treeshake for optional chaining (@antfu)
## 3.9.1
_2023-01-02_
### Bug Fixes
- Sort keys in generated dynamic namespace objects (#4780)
- Do not consider Array.group to be side effect free as the specs have changed (#4779)
### Pull Requests
- [#4777](https://github.com/rollup/rollup/pull/4777): Import from node:fs/promises (@dnalborczyk)
- [#4778](https://github.com/rollup/rollup/pull/4778): Bump deps (@dnalborczyk)
- [#4779](https://github.com/rollup/rollup/pull/4779): Remove array grouping (web compat issue) (@dnalborczyk)
- [#4780](https://github.com/rollup/rollup/pull/4780): Sort namespace object keys (@dnalborczyk)
- [#4781](https://github.com/rollup/rollup/pull/4781): Use Set and builtin-modules package (@dnalborczyk)
- [#4782](https://github.com/rollup/rollup/pull/4782): Use more restrictive types (@dnalborczyk)
## 3.9.0
_2022-12-28_
### Features
- Support ES2022 arbitrary module namespace identifiers (#4770)
- Add optional `version` property to plugin type (#4771)
### Pull Requests
- [#4768](https://github.com/rollup/rollup/pull/4768): Fix small typo in 999-big-list-of-options.md (@ericmutta)
- [#4769](https://github.com/rollup/rollup/pull/4769): docs: add a instruction about how to run one test on your local computer (@TrickyPi)
- [#4770](https://github.com/rollup/rollup/pull/4770): Add support for arbitrary module namespace identifiers (@lukastaegert)
- [#4771](https://github.com/rollup/rollup/pull/4771): Add `version` property to Plugin type (@Septh)
## 3.8.1
_2022-12-23_
### Bug Fixes
- Reduce memory footprint when explicitly passing `cache: false` (#4762)
- Fix a crash when preserving modules and reexporting namespaces (#4766)
### Pull Requests
- [#4762](https://github.com/rollup/rollup/pull/4762): Improve AST garbage collection (@bluwy)
- [#4766](https://github.com/rollup/rollup/pull/4766): Fix handling of namespace reexports when preserving modules (@lukastaegert)
## 3.8.0
_2022-12-22_
### Features
- Deduplicate ESM exports and reexports when preserving modules (#4759)
### Bug Fixes
- Handle files that are emitted as a side effect of the manualChunks option (#4759)
### Pull Requests
- [#4759](https://github.com/rollup/rollup/pull/4759): feat: deduplicate reexports and renderedExports to simplify output (@TrickyPi)
- [#4761](https://github.com/rollup/rollup/pull/4761): Support emitting files via manualChunks in output (@lukastaegert)
- [#4763](https://github.com/rollup/rollup/pull/4763): docs: update outdated info (@TrickyPi)
## 3.7.5
_2022-12-17_
### Bug Fixes
- Avoid name shadowing when default exporting a class that matches the name of another class (#4756)
- Do not display the error message both in a separate line and in the stack trace in rollup CLI (#4749)
- Make type of `RollupWarning.cause` compatible with `Error.cause` (#4757)
- Do not swallow side effects when interacting with modules namespaces nested in another object (#4758)
### Pull Requests
- [#4749](https://github.com/rollup/rollup/pull/4749): feat: simplify `stack` info in cli error (@TrickyPi)
- [#4756](https://github.com/rollup/rollup/pull/4756): Avoid name conflicts for default exported classes (@lukastaegert)
- [#4757](https://github.com/rollup/rollup/pull/4757): fix: RollupLog cause allow unknown (@Shinigami92)
- [#4758](https://github.com/rollup/rollup/pull/4758): Correctly handle side effects when a namespace is nested in an object (@lukastaegert)
## 3.7.4
_2022-12-13_
### Bug Fixes
- Do not remove calls to `.exec` and `.test` for included stateful regular expressions (#4742)
### Pull Requests
- [#4742](https://github.com/rollup/rollup/pull/4742): fix: check whether RegExp have the global or sticky flags set (@TrickyPi)
## 3.7.3
_2022-12-11_
### Bug Fixes
- Ensure `this.getFileName` no longer returns a placeholder as soon as hash placeholders have been resolved (#4747)
### Pull Requests
- [#4747](https://github.com/rollup/rollup/pull/4747): provide hashed file name when using this.getFileName in generateBundle (@lukastaegert)
## 3.7.2
_2022-12-10_
### Bug Fixes
- Improve chunk generation performance when one module is dynamically imported by many other modules (#4736)
### Pull Requests
- [#4736](https://github.com/rollup/rollup/pull/4736): Improve chunk assignment performance (@lukastaegert)
## 3.7.1
_2022-12-09_
### Bug Fixes
- Ad a hint to use @rollup/plugin-json when imports from a JSON file are not found (#4741)
### Pull Requests
- [#4741](https://github.com/rollup/rollup/pull/4741): fix: provide json hint when importing a no export json file (@TrickyPi)
## 3.7.0
_2022-12-08_
### Features
- Do not treat `.test` and `.exec` on regular expressions as side effects (#4737)
### Pull Requests
- [#4737](https://github.com/rollup/rollup/pull/4737): feat: add sutiable RegExp prototype methods (@TrickyPi)
## 3.6.0
_2022-12-05_
### Features
- extend `this.getModuleInfo` with information about exports (#4731)
### Pull Requests
- [#4731](https://github.com/rollup/rollup/pull/4731): feat: add `exports` and `exportedBindings` to `Module` class (@TrickyPi)
## 3.5.1
_2022-12-01_
### Bug Fixes
- Accept functions returning a config in defineConfig (#4728)
### Pull Requests
- [#4728](https://github.com/rollup/rollup/pull/4728): Overload defineConfig to accept a RollupOptionsFunction parameter (@Septh)
## 3.5.0
_2022-11-27_
### Features
- Add `treeshake.manualPureFunctions` to override static analysis for explicit function names (#4718)
### Bug Fixes
- Do not throw when a plugin uses `this.load` without awaiting its result (#4725)
### Pull Requests
- [#4718](https://github.com/rollup/rollup/pull/4718): Add simple way to manually declare pure functions (@lukastaegert)
- [#4725](https://github.com/rollup/rollup/pull/4725): Fix isIncluded error when using rollup-plugin-typescript2 (@lukastaegert)
## 3.4.0
_2022-11-22_
### Features
- Do not keep unused `Object.freeze` calls on object literals (#4720)
### Pull Requests
- [#4720](https://github.com/rollup/rollup/pull/4720): Only consider Object.freeze a side effect if the argument is used (@lukastaegert)
## 3.3.0
_2022-11-12_
### Features
- Add "experimentalMinChunkSize" option to merge smaller chunks into larger ones (#4705)
- Automatically deduplicate assets again when the source is a `Buffer` (#4712)
- Deduplicate `Buffer` with `string` assets (#4712)
### Bug Fixes
- Support plugins with object hooks when using `perf: true` (#4707)
### Pull Requests
- [#4702](https://github.com/rollup/rollup/pull/4702): docs: add additional tips for heap out of memory (@benmccann)
- [#4705](https://github.com/rollup/rollup/pull/4705): Allow to define minimum chunk size limit (@lukastaegert)
- [#4707](https://github.com/rollup/rollup/pull/4707): Fix perf timers for object hooks (@lukastaegert)
- [#4710](https://github.com/rollup/rollup/pull/4710): Update terser docs (@nikolas)
- [#4712](https://github.com/rollup/rollup/pull/4712): feat: deduplicate assets with buffer source (@patak-dev)
## 3.2.5
_2022-11-01_
### Bug Fixes
- We deconflicting classes, ensure the original class name still does not shadow variables (#4697)
### Pull Requests
- [#4697](https://github.com/rollup/rollup/pull/4697): Prevent class ids from shadowing other variables (@lukastaegert)
## 3.2.4
_2022-10-31_
### Bug Fixes
- Always use forward slashes in chunk ids when preserving modules, even on Windows (#4693)
- Escape problematic characters in ids when rewriting `import.meta.url` (#4693)
### Pull Requests
- [#4685](https://github.com/rollup/rollup/pull/4685): update package-lock version (@jerry-lllman)
- [#4689](https://github.com/rollup/rollup/pull/4689): Update 07-tools.md (@cokert)
- [#4693](https://github.com/rollup/rollup/pull/4693): Use correct import.meta.url slashes on Windows (@lukastaegert)
## 3.2.3
_2022-10-18_
### Bug Fixes
- Fix an issue whre Rollup confused `new.target` with `import.meta` (#4679)
- Ensure that Rollup does not make assumptions about the value of unknown namespace import members (#4684)
### Pull Requests
- [#4679](https://github.com/rollup/rollup/pull/4679): Do not rewrite new.target (@lukastaegert)
- [#4683](https://github.com/rollup/rollup/pull/4683): Remove typo in resolveId documentation (@ChrispyChris)
- [#4684](https://github.com/rollup/rollup/pull/4684): Return correct values for unknown namespace members (@lukastaegert)
## 3.2.2
_2022-10-16_
### Bug Fixes
- Do not hang/crash on hashbang comments in input modules (#4676)
### Pull Requests
- [#4675](https://github.com/rollup/rollup/pull/4675): refactor: improve & simplify types (@sxzz)
- [#4676](https://github.com/rollup/rollup/pull/4676): Ignore hashhbang comments (@lukastaegert)
## 3.2.1
_2022-10-16_
### Bug Fixes
- Rewrite class declarations to preserve their .name property if necessary (#4674)
### Pull Requests
- [#4674](https://github.com/rollup/rollup/pull/4674): Preserve rendered class names (@lukastaegert)
## 3.2.0
_2022-10-15_
### Features
- Support providing Promises as plugins like Vite (#4671)
### Pull Requests
- [#4666](https://github.com/rollup/rollup/pull/4666): Add unicorn plugin (@lukastaegert)
- [#4667](https://github.com/rollup/rollup/pull/4667): refactor: improve types (@sxzz)
- [#4668](https://github.com/rollup/rollup/pull/4668): fix: nested plugin in options stage (@sxzz)
- [#4669](https://github.com/rollup/rollup/pull/4669): refactor: merge duplicate imports (@c0dedance)
- [#4670](https://github.com/rollup/rollup/pull/4670): docs: fix minor typo in migration documentation (@ThisIsMissEm)
- [#4671](https://github.com/rollup/rollup/pull/4671): feat: support async plugins (@sxzz)
## 3.1.0
_2022-10-12_
### Features
- Support using arrays of plugins as plugins like Vite (#4657)
### Pull Requests
- [#4657](https://github.com/rollup/rollup/pull/4657): feat: support nested plugin (@sxzz)
## 3.0.1
_2022-10-12_
### Bug Fixes
- Fix installation on Windows (#4662)
- Avoid missing parameters that are only used in a destructuring initializer (#4663)
### Pull Requests
- [#4661](https://github.com/rollup/rollup/pull/4661): Enforce type imports (@lukastaegert)
- [#4662](https://github.com/rollup/rollup/pull/4662): fix: missing "node" causes run script error (@c0dedance)
- [#4663](https://github.com/rollup/rollup/pull/4663): Ensure the initializer of a destructuring declaration is always included if the id is included (@lukastaegert)
- [#4664](https://github.com/rollup/rollup/pull/4664): fix: remove lint:js:nofix script redundancy options (@c0dedance)
## 3.0.0
_2022-10-11_
### Breaking Changes
#### General Changes
- Rollup now requires at least Node 14.18.0 to run (#4548 and #4596)
- The browser build has been split into a separate package `@rollup/browser` (#4593)
- The node build uses the `node:` prefix for imports of builtin modules (#4596)
- Some previously deprecated features have been removed (#4552):
- Some plugin context functions have been removed:
- `this.emitAsset()`: use `this.emitFile()`
- `this.emitChunk()`: use `this.emitFile()`
- `this.getAssetFileName()`: use `this.getFileName()`
- `this.getChunkFileName()`: use `this.getFileName()`
- `this.isExternal()`: use `this.resolve()`
- `this.resolveId()`: use `this.resolve()`
- The `resolveAssetUrl` plugin hook has been removed: use `resolveFileUrl`
- Rollup no longer passes `assetReferenceId` or `chunkReferenceId` parameters to `resolveFileUrl`
- The `treeshake.pureExternalModules` option has been removed: use `treeshake.moduleSideEffects: 'no-external'`
- You may no longer use `true` or `false` for `output.interop`. As a replacement for `true`, you can use "compat"
- Emitted assets no longer have an `isAsset` flag in the bundle
- Rollup will no longer fix assets added directly to the bundle by adding the `type: "asset"` field
- Some features that were previously marked for deprecation now show warnings when used (#4552):
- Some options have been deprecated:
- `inlineDynamicImports` as part of the input options: use `output. inlineDynamicImports`
- `manualChunks` as part of the input options: use `output. manualChunks `
- `maxParallelFileReads`: use `maxParallelFileOps
- `output.preferConst`: use `output.generatedCode.constBindings`
- `output.dynamicImportFunction`: use the `renderDynamicImport` plugin hook
- `output.namespaceToStringTag`: use `output.generatedCode.symbols`
- `preserveModules` as part of the input options: use `output. preserveModules `
- You should no longer access `this.moduleIds` in plugins: use `this.getModuleIds()`
- You should no longer access `this.getModuleInfo(...).hasModuleSideEffects` in plugins: use `this.getModuleInfo(...).moduleSideEffects`
- Configuration files are only bundled if either the `--configPlugin` or the `--bundleConfigAsCjs` options are used. The configuration is bundled to an ES module unless the `--bundleConfigAsCjs` option is used. In all other cases, configuration is now loaded using Node's native mechanisms (#4574 and #4621)
- The properties attached to some errors have been changed so that there are fewer different possible properties with consistent types (#4579)
- Some errors have been replaced by others (ILLEGAL_NAMESPACE_REASSIGNMENT -> ILLEGAL_REASSIGNMENT, NON_EXISTENT_EXPORT -> MISSING_EXPORT) (#4579)
- Files in `rollup/dist/*` can only be required using their file extension (#4581)
- The `loadConfigFile` helper now has a named export of the same name instead of a default export (#4581)
- When using the API and sourcemaps, sourcemap comments are contained in the emitted files and sourcemaps are emitted as regular assets (#4605)
- Watch mode no longer uses Node's EventEmitter but a custom implementation that awaits Promises returned from event handlers (#4609)
- Assets may only be deduplicated with previously emitted assets if their source is a `string` (#4644)
- By default, Rollup will keep external dynamic imports as `import(…)` in commonjs output unless `output.dynamicImportInCjs` is set to false (#4647)
#### Changes to Rollup Options
- As functions passed to `output.banner/footer/intro/outro` are now called per-chunk, they should be careful to avoid performance-heavy operations (#4543)
- `entryFileNames/chunkFileNames` functions now longer have access to the rendered module information via `modules`, only to a list of included `moduleIds` (#4543)
- The path of a module is no longer prepended to the corresponding chunk when preserving modules (#4565)
- When preserving modules, the `[name]` placeholder (as well as the `chunkInfo.name` property when using a function) now includes the relative path of the chunk as well as optionally the file extension if the extension is not one of `.js`, `.jsx`, `.mjs`, `.cjs`, `.ts`, `.tsx`, `.mts`, or `.cts` (#4565)
- The `[ext]`, `[extName]` and `[assetExtName]` placeholders are no longer supported when preserving modules (#4565)
- The `perf` option no longer collects timings for the asynchronous part of plugin hooks as the readings were wildly inaccurate and very misleading, and timings are adapted to the new hashing algorithm (#4566)
- Change the default value of `makeAbsoluteExternalsRelative` to "ifRelativeSource" so that absolute external imports will no longer become relative imports in the output, while relative external imports will still be renormalized (#4567)
- Change the default for `output.generatedCode.reservedNamesAsProps` to no longer quote properties like `default` by default (#4568)
- Change the default for `preserveEntrySignatures` to "exports-only" so that by default, empty facades for entry chunks are no longer created (#4576)
- Change the default for `output.interop` to "default" to better align with NodeJS interop (#4611)
- Change the default for `output.esModule` to "if-default-prop", which only adds \_\_esModule when the default export would be a property (#4611)
- Change the default for `output.systemNullSetters` to `true`, which requires at least SystemJS 6.3.3 (#4649)
#### Plugin API Changes
- Plugins that add/change/remove imports or exports in `renderChunk` should make sure to update `ChunkInfo.imports/importedBindings/exports` accordingly (#4543)
- The order of plugin hooks when generating output has changed (#4543)
- Chunk information passed to `renderChunk` now contains names with hash placeholders instead of final names, which will be replaced when used in the returned code or `ChunkInfo.imports/importedBindings/exports` (#4543 and #4631)
- Hooks defined in output plugins will now run after hooks defined in input plugins (used to be the other way around) (#3846)
### Features
- Functions passed to `output.banner/footer/intro/outro` are now called per-chunk with some chunk information (#4543)
- Plugins can access the entire chunk graph via an additional parameter in `renderChunk` (#4543)
- Chunk hashes only depend on the actual content of the chunk and are otherwise stable against things like renamed/moved source files or changed module resolution order (#4543)
- The length of generated file hashes can be customized both globally and per-chunk (#4543)
- When preserving modules, the regular `entryFileNames` logic is used and the path is included in the `[name]` property. This finally gives full control over file names when preserving modules (#4565)
- `output.entryFileNames` now also supports the `[hash]` placeholder when preserving modules (#4565)
- The `perf` option will now collect (synchronous) timings for all plugin hooks, not just a small selection (#4566)
- All errors thrown by Rollup have `name: RollupError` now to make clearer that those are custom error types (#4579)
- Error properties that reference modules (such as id and ids) will now always contain the full ids. Only the error message will use shortened ids (#4579)
- Errors that are thrown in response to other errors (e.g. parse errors thrown by acorn) will now use the standardized cause property to reference the original error (#4579)
- If sourcemaps are enabled, files will contain the appropriate sourcemap comment in `generateBundle` and sourcemap files are available as regular assets (#4605)
- Returning a Promise from an event handler attached to a RollupWatcher instance will make Rollup wait for the Promise to resolve (#4609)
- There is a new value "compat" for output.interop that is similar to "auto" but uses duck-typing to determine if there is a default export (#4611)
- There is a new value "if-default-prop" for esModule that only adds an `__esModule` marker to the bundle if there is a default export that is rendered as a property (#4611)
- Rollup can statically resolve checks for `foo[Symbol.toStringTag]` to "Module" if foo is a namespace (#4611)
- There is a new CLI option `--bundleConfigAsCjs` which will force the configuration to be bundled to CommonJS (#4621)
- Import assertions for external imports that are present in the input files will be retained in ESM output (#4646)
- Rollup will warn when a module is imported with conflicting import assertions (#4646)
- Plugins can add, remove or change import assertions when resolving ids (#4646)
- The `output.externalImportAssertions` option allows to turn off emission of import assertions (#4646)
- Use `output.dynamicImportInCjs` to control if dynamic imports are emitted as `import(…)` or wrapped `require(…)` when generating commonjs output (#4647)
### Bug Fixes
- Chunk hashes take changes in `renderChunk`, e.g. minification, into account (#4543)
- Hashes of referenced assets are properly reflected in the chunk hash (#4543)
- No longer warn about implicitly using default export mode to not tempt users to switch to named export mode and break Node compatibility (#4624)
- Avoid performance issues when emitting thousands of assets (#4644)
### Pull Requests
- [#3846](https://github.com/rollup/rollup/pull/3846): [v3.0] Run output plugins last (@aleclarson)
- [#4543](https://github.com/rollup/rollup/pull/4543): [v3.0] New hashing algorithm that "fixes (nearly) everything" (@lukastaegert)
- [#4548](https://github.com/rollup/rollup/pull/4548): [v3.0] Deprecate Node 12 (@lukastaegert)
- [#4552](https://github.com/rollup/rollup/pull/4552): [v3.0] Remove actively deprecated features, show warnings for other deprecated features (@lukastaegert)
- [#4558](https://github.com/rollup/rollup/pull/4558): [v3.0] Convert build scripts to ESM, update dependencies (@lukastaegert)
- [#4565](https://github.com/rollup/rollup/pull/4565): [v3.0] Rework file name patterns when preserving modules (@lukastaegert)
- [#4566](https://github.com/rollup/rollup/pull/4566): [v3.0] Restructure timings (@lukastaegert)
- [#4567](https://github.com/rollup/rollup/pull/4567): [v3.0] Change default for makeAbsoluteExternalsRelative (@lukastaegert)
- [#4568](https://github.com/rollup/rollup/pull/4568): [v3.0] Change default for output.generatedCode.reservedNamesAsProps (@lukastaegert)
- [#4574](https://github.com/rollup/rollup/pull/4574): [v3.0] Better esm config file support (@lukastaegert)
- [#4575](https://github.com/rollup/rollup/pull/4575): [v3.0] Show deprecation warning for maxParallelFileReads (@lukastaegert)
- [#4576](https://github.com/rollup/rollup/pull/4576): [v3.0] Change default for preserveEntrySignatures to exports-only (@lukastaegert)
- [#4579](https://github.com/rollup/rollup/pull/4579): [v3.0] Refine errors and warnings (@lukastaegert)
- [#4581](https://github.com/rollup/rollup/pull/4581): [v3.0] Use named export for loadConfigFile (@lukastaegert)
- [#4592](https://github.com/rollup/rollup/pull/4592): [v3.0] Port doc changes from #4572 and #4583 to 3.0 (@berniegp)
- [#4593](https://github.com/rollup/rollup/pull/4593): [v3.0] Browser build (@lukastaegert)
- [#4596](https://github.com/rollup/rollup/pull/4596): [v3.0] Use "node:" prefix for imports of node builtins (@lukastaegert)
- [#4605](https://github.com/rollup/rollup/pull/4605): [v3.0] Better sourcemap emission (@lukastaegert)
- [#4609](https://github.com/rollup/rollup/pull/4609): [v3.0] Custom awaiting watch emitter (@lukastaegert)
- [#4611](https://github.com/rollup/rollup/pull/4611): [v3.0] Improve interop defaults (@lukastaegert)
- [#4621](https://github.com/rollup/rollup/pull/4621): [v3.0] Always try to load config files via Node if possible (@lukastaegert)
- [#4624](https://github.com/rollup/rollup/pull/4624): [v3.0] Remove warning when using implicit default export mode (@lukastaegert)
- [#4631](https://github.com/rollup/rollup/pull/4631): [v3.0] Use ASCII characters for hash placeholders (@lukastaegert)
- [#4644](https://github.com/rollup/rollup/pull/4644): [v3.0] Improve performance of asset emissions (@lukastaegert)
- [#4646](https://github.com/rollup/rollup/pull/4646): [v3.0] Basic support for import assertions (@lukastaegert)
- [#4647](https://github.com/rollup/rollup/pull/4647): [v3.0] Keep dynamic imports in CommonJS output (@lukastaegert)
- [#4649](https://github.com/rollup/rollup/pull/4649): [v3.0] Change default for systemNullSetters (@lukastaegert)
- [#4651](https://github.com/rollup/rollup/pull/4651): [v3.0] use compiler target ES2020 (@dnalborczyk)
## 2.79.1
_2022-09-22_
### Bug Fixes
- Avoid massive performance degradation when creating thousands of chunks (#4643)
### Pull Requests
- [#4639](https://github.com/rollup/rollup/pull/4639): fix: typo docs and contributors link in CONTRIBUTING.md (@takurinton)
- [#4641](https://github.com/rollup/rollup/pull/4641): Update type definition of resolveId (@ivanjonas)
- [#4643](https://github.com/rollup/rollup/pull/4643): Improve performance of chunk naming collision check (@lukastaegert)
## 2.79.0
_2022-08-31_
### Features
- Add `amd.forceJsExtensionForImports` to enforce using `.js` extensions for relative AMD imports (#4607)
### Pull Requests
- [#4607](https://github.com/rollup/rollup/pull/4607): add option to keep extensions for amd (@wh1tevs)
## 2.78.1
_2022-08-19_
### Bug Fixes
- Avoid inferring "arguments" as name for a default export placeholder variable (#4613)
### Pull Requests
- [#4613](https://github.com/rollup/rollup/pull/4613): Prevent using arguments for generated variable names (@lukastaegert)
## 2.78.0
_2022-08-14_
### Features
- Support writing plugin hooks as objects with a "handler" property (#4600)
- Allow changing execution order per plugin hook (#4600)
- Add flag to execute plugins in async parallel hooks sequentially (#4600)
### Pull Requests
- [#4600](https://github.com/rollup/rollup/pull/4600): Allow using objects as hooks to change execution order (@lukastaegert)
## 2.77.3
_2022-08-11_
### Bug Fixes
- Correctly resolve preserveModulesRoot in Vite (#4591)
### Pull Requests
- [#4591](https://github.com/rollup/rollup/pull/4591): resolve currentPath (@cleverpp)
## 2.77.2
_2022-07-27_
### Bug Fixes
- Avoid a rendering failure when mixing outputs with inlined and non-inlined dynamic imports (#4589)
### Pull Requests
- [#4589](https://github.com/rollup/rollup/pull/4589): Handle generating non-inlined imports after inlined ones (@lukastaegert)
## 2.77.1
_2022-07-26_
### Bug Fixes
- Ensure IIFE output generates a global variable when generating ES5 (#4588)
### Pull Requests
- [#4577](https://github.com/rollup/rollup/pull/4577): broken link removed (@Jawad-H)
- [#4580](https://github.com/rollup/rollup/pull/4580): Update dependencies (@lukastaegert)
- [#4584](https://github.com/rollup/rollup/pull/4584): Documentation clarity and syntax improvements (@berniegp)
- [#4588](https://github.com/rollup/rollup/pull/4588): Use var for IIFE (@lukastaegert)
## 2.77.0
_2022-07-15_
### Features
- Introduce `maxParallelFileOps` to limit both read and write operations, default to 20 and replaces `maxParallelFileRead` (#4570)
### Bug Fixes
- Avoid including variables referenced from return statements that are never reached (#4573)
### Pull Requests
- [#4570](https://github.com/rollup/rollup/pull/4570): Introduce maxParallelFileOps to limit parallel writes (@lukastaegert)
- [#4572](https://github.com/rollup/rollup/pull/4572): Document more ways to read package.json in ESM (@berniegp)
- [#4573](https://github.com/rollup/rollup/pull/4573): Do not include unused return expressions (@lukastaegert)
## 2.76.0
_2022-07-08_
### Features
- Allow setting a `sourcmapBaseUrl` for absolute paths in sourcemaps (#4527)
### Bug Fixes
- Support absolute CLI plugin paths on Windows (#4533)
### Pull Requests
- [#4527](https://github.com/rollup/rollup/pull/4527): Add sourcemapBaseUrl option (@nickgarlis)
- [#4533](https://github.com/rollup/rollup/pull/4533): Add support for absolute plugin paths (@ygoe)
- [#4538](https://github.com/rollup/rollup/pull/4538): chore: Included githubactions in the dependabot config (@naveensrinivasan)
- [#4546](https://github.com/rollup/rollup/pull/4546): Adapt Node versions on CI to prepare for v3 (@lukastaegert)
- [#4556](https://github.com/rollup/rollup/pull/4556): Improve error message for invalid patterns (@DysphoricUnicorn)
- [#4559](https://github.com/rollup/rollup/pull/4559): Update dependencies (@lukastaegert)
- [#4560](https://github.com/rollup/rollup/pull/4560): Bump peter-evans/create-or-update-comment from 1 to 2 (@dependabot)
- [#4561](https://github.com/rollup/rollup/pull/4561): Bump peter-evans/find-comment from 1 to 2 (@dependabot)
- [#4562](https://github.com/rollup/rollup/pull/4562): Bump codecov/codecov-action from 1 to 3 (@dependabot)
## 2.75.7
_2022-06-20_
### Bug Fixes
- Mark Array.prototype.group/groupToMap as side effect free. (#4531)
### Pull Requests
- [#4523](https://github.com/rollup/rollup/pull/4523): chore: remove source map workaround, bump deps (@dnalborczyk)
- [#4525](https://github.com/rollup/rollup/pull/4525): Add regression tests for instanceof (@lukastaegert)
- [#4528](https://github.com/rollup/rollup/pull/4528): chore: Set permissions for GitHub actions (@naveensrinivasan)
- [#4531](https://github.com/rollup/rollup/pull/4531): fix: rename Array.prototype.group/groupToMap (@dnalborczyk)
- [#4535](https://github.com/rollup/rollup/pull/4535): chore: bump resolve from 1.22.0 to 1.22.1 (@pos777)
## 2.75.6
_2022-06-07_
### Bug Fixes
- Properly deoptimize "this" when using member expressions with getters/setters in for loops and update expressions (#4522)
### Pull Requests
- [#4522](https://github.com/rollup/rollup/pull/4522): Refactor side effect handling for property interactions (@lukastaegert)
## 2.75.5
_2022-06-01_
### Bug Fixes
- Avoid crashes when using logical expressions for unused constructor arguments (#4519)
- Fix missing parameter defaults for calls from try statements and functions returned by functions (#4520)
### Pull Requests
- [#4519](https://github.com/rollup/rollup/pull/4519): Try to make logical expression deoptimization more robust (@lukastaegert)
- [#4520](https://github.com/rollup/rollup/pull/4520): Roll back parameter default tree shaking (@lukastaegert)
## 2.75.4
_2022-05-31_
### Bug Fixes
- Ensure parameter defaults are retained when a function is used as an object property (#4516)
### Pull Requests
- [#4516](https://github.com/rollup/rollup/pull/4516): Deoptimize parameter defaults when referenced from object/array/class literals (@lukastaegert)
## 2.75.3
_2022-05-29_
### Bug Fixes
- Retain parameter defaults for functions that are defaults themselves (#4515)
- Track mutations for objects as default values (#4515)
### Pull Requests
- [#4515](https://github.com/rollup/rollup/pull/4515): Ensure parameter defaults are deoptimized (@lukastaegert)
## 2.75.1
_2022-05-28_
### Pull Requests
- [#4513](https://github.com/rollup/rollup/pull/4513): Update link to node polyfill repo (@lukastaegert)
## 2.75.0
_2022-05-27_
### Features
- Re-implement default parameter tree-shaking for top-level functions (#4510)
- Do not consider calling string methods like `.trim()` on template literals a side effect (#4511)
### Pull Requests
- [#4510](https://github.com/rollup/rollup/pull/4510): Tree-shake parameter defaults (replaces #4498) (@lukastaegert)
- [#4511](https://github.com/rollup/rollup/pull/4511): Tree-shake side-effect-free string methods on template literals (@lukastaegert)
## 2.74.1
_2022-05-19_
### Bug Fixes
- Revert #4498 until some issues are understood and resolved
## 2.74.0
_2022-05-19_
### Features
- Remove unneeded default values for function parameters (#4498)
### Bug Fixes
- Use a consistent mechanism to resolve the config file to avoid issues on Windows (#4501)
- Avoid an inaccurate warning about an event emitter leak for complicated builds (#4502)
- Ensure that reexporting values from other chunks via dynamic imports does not reference non-imported variables (#4499)
### Pull Requests
- [#4498](https://github.com/rollup/rollup/pull/4498): Tree shake parameter defaults (@lukastaegert)
- [#4499](https://github.com/rollup/rollup/pull/4499): Ensure reexports are available for namespaces (@lukastaegert)
- [#4501](https://github.com/rollup/rollup/pull/4501): fix: config path problem on windows (@pos777)
- [#4502](https://github.com/rollup/rollup/pull/4502): Avoid maximum listeners exceeded warning (@lukastaegert)
## 2.73.0
_2022-05-13_
### Features
- Do not treat Object.defineProperty/ies as side effect when called on an unused object (#4493)
- Do not assume that assigning a property can create a getter with side effects (#4493)
- Do not treat string.prototype.replace(All) as side effect when used with two literals (#4493)
### Bug Fixes
- Detect side effects when manually declaring getters on functions (#4493)
### Pull Requests
- [#4493](https://github.com/rollup/rollup/pull/4493): Handle getters on functions and improve property deoptimization (@lukastaegert)
- [#4494](https://github.com/rollup/rollup/pull/4494): Do not treat string.replace as side effect when used with a literal (@lukastaegert)
- [#4495](https://github.com/rollup/rollup/pull/4495): Update docs for --configPlugin using typescript (@Jimmydalecleveland)
## 2.72.1
_2022-05-07_
### Bug Fixes
- Improve tree-shaking of classes with super classes in certain scenarios (#4489)
### Pull Requests
- [#4489](https://github.com/rollup/rollup/pull/4489): Do not deoptimize entire super class when adding a property (@lukastaegert)
## 2.72.0
_2022-05-05_
### Features
- Add CLI hooks to run external commands at certain points in watch mode (#4457)
### Bug Fixes
- Fix an issue that could accidentally treat relevant assignments as side effect free (#4486)
### Pull Requests
- [#4457](https://github.com/rollup/rollup/pull/4457): feat: CLI event hook flags (@Harris-Miller)
- [#4486](https://github.com/rollup/rollup/pull/4486): Fix reassignment tracking (@lukastaegert)
## 2.71.1
_2022-04-30_
### Bug Fixes
- Allow importing loadConfigFile without extension (#4483)
### Pull Requests
- [#4483](https://github.com/rollup/rollup/pull/4483): Add exports exception for loadConfigFile (@lukastaegert)
## 2.71.0
_2022-04-30_
## Features
- Mark `Object.hasOwn` as pure (#4482)
### Bug Fixes
- Prevent infinite recursion and display proper warning for recursive reexports (#4472)
- Fix type issue in TypeScript nightly (#4471)
### Pull Requests
- [#4467](https://github.com/rollup/rollup/pull/4467): docs: update deprecated option in tools.md (@kimjh96)
- [#4471](https://github.com/rollup/rollup/pull/4471): Fix: tsc did not build (@frank-dspeed)
- [#4472](https://github.com/rollup/rollup/pull/4472): Throw proper error when indirectly reexporting a recursive binding (@lukastaegert)
- [#4475](https://github.com/rollup/rollup/pull/4475): chore: bump deps (#4475) (@dnalborczyk)
- [#4477](https://github.com/rollup/rollup/pull/4477): chore: bump github actions (@dnalborczyk)
- [#4478](https://github.com/rollup/rollup/pull/4478): ci: test with node.js v18, remove v17 (@dnalborczyk)
- [#4479](https://github.com/rollup/rollup/pull/4479): chore(repo): replace `git.io` in the issue template (@SukkaW)
- [#4482](https://github.com/rollup/rollup/pull/4482): feat: add Object.hasOwn as pure function (@dnalborczyk)
## 2.70.2
_2022-04-15_
### Bug Fixes
- Do not enforce undefined return values in TypeScript types (#4463)
### Pull Requests
- [#4463](https://github.com/rollup/rollup/pull/4463): use void for options hook instead of undefined (@ycmjason)
## 2.70.1
_2022-03-14_
### Bug Fixes
- Handle unfinished hook action errors as regular errors and avoid console logging (#4434)
- Allow access to "dist" folder in a Node 17 compatible way (#4436)
### Pull Requests
- [#4434](https://github.com/rollup/rollup/pull/4434): Track unfinished hook actions as regular errors (@lukastaegert)
- [#4436](https://github.com/rollup/rollup/pull/4436): Update package.json (@frank-dspeed)
## 2.70.0
_2022-03-07_
### Features
- Make the `watchChange` and `closeWatcher` hooks asynchronous and make Rollup wait for these hooks before continuing (#4427)
### Bug Fixes
- Do not abort watch mode for errors in `watchChange` but display them properly (#4427)
### Pull Requests
- [#4427](https://github.com/rollup/rollup/pull/4427): Do not abort watch mode on errors in watchChange (@lukastaegert)
## 2.69.2
_2022-03-06_
### Bug Fixes
- Mark `Object.entries` and `Object.fromEntries` as pure (#4429)
- Make sure new properties on Array.prototype and Object.prototype are not evaluated as "undefined" (#4428)
### Pull Requests
- [#4428](https://github.com/rollup/rollup/pull/4428): Treat unknown prototype props as unknown (@lukastaegert)
- [#4429](https://github.com/rollup/rollup/pull/4429): Treat unknown prototype props as unknown (@869288142)
## 2.69.1
_2022-03-04_
### Bug Fixes
- Approximate source position instead of ignoring it when using a low-resolution source map in a transform hook (#4334)
### Pull Requests
- [#4334](https://github.com/rollup/rollup/pull/4334): fix(sourcemap): fall back to low-resolution line mapping (@aleclarson and @lukastaegert)
## 2.69.0
_2022-03-02_
### Features
- Introduce new `output.generatedCode.symbols` to control the usage of Symbols in Rollup-generated code (#4378)
- soft-deprecate `output.namespaceToStringTag` in favor of `output.generatedCode.symbols` (#4378)
### Bug Fixes
- Properly handle `./` and `../` as external dependencies (#4419)
- Make generated "Module" namespace toStringTag non-enumerable for correct Object.assign/spread behaviour (#4378)
- Add file name to error when top-level-await is used in disallowed formats (#4421)
### Pull Requests
- [#4378](https://github.com/rollup/rollup/pull/4378): Make namespace @@toStringTag "Module" non-enumerable (@dnalborczyk and @lukastaegert)
- [#4413](https://github.com/rollup/rollup/pull/4413): refactor: some code and type fixes (@dnalborczyk)
- [#4418](https://github.com/rollup/rollup/pull/4418): chore: bump deps (@dnalborczyk)
- [#4419](https://github.com/rollup/rollup/pull/4419): Properly handle upper directories as external dependencies (@lukastaegert)
- [#4421](https://github.com/rollup/rollup/pull/4421): Improve the error prompt and output the error file name (@caoxiemeihao)
- [#4423](https://github.com/rollup/rollup/pull/4423): Update 999-big-list-of-options.md (@leoj3n)
## 2.68.0
_2022-02-22_
### Features
- provide information about cached import resolutions in `shouldTransformCachedModule` (#4414)
- Add "types" field to Rollup's package exports (#4416)
### Pull Requests
- [#4410](https://github.com/rollup/rollup/pull/4410): refactor: use map for declarations and name suggestions (@dnalborczyk)
- [#4411](https://github.com/rollup/rollup/pull/4411): refactor: use map for namespace reexports by name (@dnalborczyk)
- [#4412](https://github.com/rollup/rollup/pull/4412): refactor: use includes where appropriate (@dnalborczyk)
- [#4414](https://github.com/rollup/rollup/pull/4414): Add resolved sources to shouldTransformCachedModule (@lukastaegert)
- [#4416](https://github.com/rollup/rollup/pull/4416): Add Typescript 4.5 nodenext node12 module resolution support (@frank-dspeed)
## 2.67.3
_2022-02-18_
### Bug Fixes
- Do not swallow other errors when unfinished hook actions are detected (#4409)
- Add additional information to output when there are unfinished hook actions (#4409)
### Pull Requests
- [#4399](https://github.com/rollup/rollup/pull/4399): docs: remove const (@TrickyPi)
- [#4401](https://github.com/rollup/rollup/pull/4401): Improve test stability by getting independent of module id ordering in more places (@lukastaegert)
- [#4403](https://github.com/rollup/rollup/pull/4403): fix: remove unnecessary property descriptor spread (@dnalborczyk)
- [#4404](https://github.com/rollup/rollup/pull/4404): refactor: use map for import descriptions + re-export descriptions (@dnalborczyk)
- [#4405](https://github.com/rollup/rollup/pull/4405): refactor: module exports to map (@dnalborczyk)
- [#4406](https://github.com/rollup/rollup/pull/4406): Fix a typo in 'Direct plugin communication' code example (@younesmln)
- [#4407](https://github.com/rollup/rollup/pull/4407): Document how resolveId is cached (@lukastaegert)
- [#4409](https://github.com/rollup/rollup/pull/4409): Print ids for unfinished moduleParsed and shouldTransformCachedModule hooks (@lukastaegert)
## 2.67.2
_2022-02-10_
### Bug Fixes
- Ensure consistent order between manual chunks to fix hashing issues (#4397)
### Pull Requests
- [#4390](https://github.com/rollup/rollup/pull/4390): refactor: add @types/estree explicitly, fix dynamic type imports (@dnalborczyk)
- [#4391](https://github.com/rollup/rollup/pull/4391): chore: remove acorn-walk ambient type definitions (@dnalborczyk)
- [#4397](https://github.com/rollup/rollup/pull/4397): Sort manual chunks generated via a function by name (@lukastaegert)
## 2.67.1
_2022-02-07_
### Bug Fixes
- Make chunk file and variable names more deterministic when emitting chunks (#4386)
- Improve default module resolver performance by using non-blocking IO (#4386)
### Pull Requests
- [#4373](https://github.com/rollup/rollup/pull/4373): fix: even more types (@dnalborczyk)
- [#4382](https://github.com/rollup/rollup/pull/4382): Update contribution tut link desc (@lemredd)
- [#4383](https://github.com/rollup/rollup/pull/4383): chore: bump deps (@dnalborczyk)
- [#4384](https://github.com/rollup/rollup/pull/4384): chore: move "wait" to utils + re-use (@dnalborczyk)
- [#4385](https://github.com/rollup/rollup/pull/4385): refactor: convert watch tests to async functions (@dnalborczyk)
- [#4386](https://github.com/rollup/rollup/pull/4386): refactor: use fs.promises in resolve id, Part 4 (@dnalborczyk and @lukastaegert)
- [#4389](https://github.com/rollup/rollup/pull/4389): refactor: use fs.promises in generate license file, rollup config, Part 5 (@dnalborczyk)
## 2.67.0
_2022-02-02_
### Features
- Improve side effect detection when using Array.prototype.groupBy/groupByToMap (#4360)
- Allow changing `moduleSideEffects` at any time during the build (#4379)
- Soft-deprecate `ModuleInfo.hasModuleSideEffects` in favour of `ModuleInfo.moduleSideEffects` (#4379)
### Bug Fixes
- Do not include queries and hashes in generated file names when preserving modules (#4374)
### Pull Requests
- [#4319](https://github.com/rollup/rollup/pull/4319): refactor: use fs, fs-extra, remove sander (@dnalborczyk)
- [#4360](https://github.com/rollup/rollup/pull/4360): feat: add Array.prototype.groupBy/groupByToMap (@dnalborczyk)
- [#4361](https://github.com/rollup/rollup/pull/4361): fix: more types (@dnalborczyk)
- [#4369](https://github.com/rollup/rollup/pull/4369): fix: remove acorn-walk patch (@dnalborczyk)
- [#4371](https://github.com/rollup/rollup/pull/4371): refactor: use fs.promises in cli/run (@dnalborczyk)
- [#4372](https://github.com/rollup/rollup/pull/4372): refactor: use fs.promises in module loader (@dnalborczyk)
- [#4374](https://github.com/rollup/rollup/pull/4374): Ignore queries and hashes in file names when preserving modules (@lukastaegert)
- [#4375](https://github.com/rollup/rollup/pull/4375): Fix typo in \_config.js (@eltociear)
- [#4376](https://github.com/rollup/rollup/pull/4376): refactor: fs.promises, move mkdir to writeoutputfile, Part 3 (@dnalborczyk)
- [#4379](https://github.com/rollup/rollup/pull/4379): Deprecate hasModuleSideEffects in favor of moduleSideEffects and ensure it is mutable on ModuleInfo (@lukastaegert)
## 2.66.1
_2022-01-25_
### Bug Fixes
- Only warn for conflicting names in namespace reexports if it actually causes problems (#4363)
- Only allow explicit exports or reexports as synthetic namespaces and hide them from namespace reexports (#4364)
### Pull Requests
- [#4362](https://github.com/rollup/rollup/pull/4362): refactor: convert exportsByName object to map (@dnalborczyk)
- [#4363](https://github.com/rollup/rollup/pull/4363): Do not warn unnecessarily for namespace conflicts (@lukastaegert)
- [#4364](https://github.com/rollup/rollup/pull/4364): Do not expose synthetic namespace export in entries and namespaces (@lukastaegert)
## 2.66.0
_2022-01-22_
### Features
- Note if a module has a default export in ModuleInfo to allow writing better proxy modules (#4356)
- Add option to wait until all imported ids have been resolved when awaiting `this.load` (#4358)
### Pull Requests
- [#4356](https://github.com/rollup/rollup/pull/4356): Add hasDefaultExport to ModuleInfo (@lukastaegert)
- [#4358](https://github.com/rollup/rollup/pull/4358): Add "resolveDependencies" option to "this.load" (@lukastaegert)
## 2.65.0
_2022-01-21_
### Features
- Add complete import resolution objects to ModuleInfo for use in `this.load` (#4354)
### Bug Fixes
- Use correct context in plugin hooks with `perf: true` (#4357)
### Pull Requests
- [#4351](https://github.com/rollup/rollup/pull/4351): refactor: re-use source mapping url (@dnalborczyk)
- [#4352](https://github.com/rollup/rollup/pull/4352): refactor: replace require-relative with built-in require.resolve (@dnalborczyk)
- [#4353](https://github.com/rollup/rollup/pull/4353): chore: bump deps (@dnalborczyk)
- [#4354](https://github.com/rollup/rollup/pull/4354): Add importedIdResolutions to moduleInfo (@lukastaegert)
- [#4355](https://github.com/rollup/rollup/pull/4355): chore: remove external from config (@dnalborczyk)
- [#4357](https://github.com/rollup/rollup/pull/4357): fix: timed plugin context (@dnalborczyk)
## 2.64.0
_2022-01-14_
### Features
- Allow inspecting cached modules and forcing them to be transformed again via shouldTransformCachedModule (#4320)
- Do not wait for the config file to be parsed in watch mode if it is updated before that (#4344)
### Bug Fixes
- Do not mutate objects returned as `meta` from the resolveId hook (#4347)
### Pull Requests
- [#4326](https://github.com/rollup/rollup/pull/4326): refactor: type fixes (@dnalborczyk)
- [#4339](https://github.com/rollup/rollup/pull/4339): More watch test stabilization (@lukastaegert)
- [#4340](https://github.com/rollup/rollup/pull/4340): refactor: performance timers for node.js and browser (@dnalborczyk)
- [#4341](https://github.com/rollup/rollup/pull/4341): Implement shouldTransformCachedModule hook (@lukastaegert)
- [#4344](https://github.com/rollup/rollup/pull/4344): Directly restart Rollup when config file change is detected in watch mode (@lukastaegert)
- [#4347](https://github.com/rollup/rollup/pull/4347): Create a shallow copy when returning meta from resolveId (@lukastaegert)
## 2.63.0
_2022-01-04_
### Features
- Report a helpful error if rollup exits due to an empty event loop when using `this.load` (#4320)
- Allow directly mutating ModuleInfo.meta for modules and never replace this object (#4328)
- Detect additional side effect free array prototype methods (#4332)
### Bug Fixes
- Do not watch if CLI watch options are specified but `--watch` is missing (#4335)
### Pull Requests
- [#4320](https://github.com/rollup/rollup/pull/4320): Detect unfulfilled async hook actions and report error on exit (@kzc)
- [#4328](https://github.com/rollup/rollup/pull/4328): Make initial ModuleInfo.meta mutable and maintain object identity (@lukastaegert)
- [#4318](https://github.com/rollup/rollup/pull/4318): Stabilize watch tests (@lukastaegert)
- [#4331](https://github.com/rollup/rollup/pull/4331): Improve JS docs example (@lukastaegert)
- [#4332](https://github.com/rollup/rollup/pull/4332): add support for Array.prototype.findLast,findLastIndex (@dnalborczyk)
- [#4333](https://github.com/rollup/rollup/pull/4333): convert utils.transform to async function (@dnalborczyk)
- [#4335](https://github.com/rollup/rollup/pull/4335): Do not watch unless --watch is specified explicitly (@lukastaegert)
- [#4338](https://github.com/rollup/rollup/pull/4338): Add build delay for plugin event test (@lukastaegert)
## 2.62.0
_2021-12-24_
### Features
- Mark additional string prototype methods as side-effect-free and correct typings of existing ones (#4299)
- Mark additional array prototype methods as side-effect-free and correct typings of existing ones (#4309)
- Expose if a module is included after tree-shaking in its ModuleInfo (#4305)
### Bug Fixes
- Fix how fsevents is included to improve watch mode on MacOS (#4312)
### Pull Requests
- [#4299](https://github.com/rollup/rollup/pull/4299): Add additional string prototype methods (@dnalborczyk)
- [#4300](https://github.com/rollup/rollup/pull/4300): Bump deps, fix expected test result for core-js (@dnalborczyk)
- [#4302](https://github.com/rollup/rollup/pull/4302): Replace type assertion with type guard (@dnalborczyk)
- [#4304](https://github.com/rollup/rollup/pull/4304): Re-use reserved names set (@dnalborczyk)
- [#4305](https://github.com/rollup/rollup/pull/4305): Expose isIncluded in module info (@william57m)
- [#4306](https://github.com/rollup/rollup/pull/4306): Fix git line breaks on windows (@dnalborczyk)
- [#4307](https://github.com/rollup/rollup/pull/4307): Add macos to pipeline (@dnalborczyk)
- [#4309](https://github.com/rollup/rollup/pull/4309): Add additional array prototype methods (@dnalborczyk)
- [#4311](https://github.com/rollup/rollup/pull/4311): Add Deno instructions to docs (@jespertheend)
- [#4312](https://github.com/rollup/rollup/pull/4312): fsevents integration (@dnalborczyk)
- [#4313](https://github.com/rollup/rollup/pull/4313): Remove non-existing static functions from known globals (@dnalborczyk)
## 2.61.1
_2021-12-11_
### Bug Fixes
- Only resolve this.load once the code of the module is available (#4296)
### Pull Requests
- [#4296](https://github.com/rollup/rollup/pull/4296): Make sure this.load waits for modules that are already loading (@lukastaegert)
- [#4298](https://github.com/rollup/rollup/pull/4298): use set for reserved words (@dnalborczyk)
## 2.61.0
_2021-12-09_
### Features
- Support ergonomic brand checks for private fields (#4293)
### Bug Fixes
- Improve handling of directory creation on systems with restrictive open files limit (#4288)
### Pull Requests
- [#4288](https://github.com/rollup/rollup/pull/4288): modifymkdirpath (@mgrabowski84)
- [#4293](https://github.com/rollup/rollup/pull/4293): bump deps (@dnalborczyk)
## 2.60.2
_2021-11-30_
### Bug Fixes
- Produce correct output when dynamic import paths contain quotes (#4286)
### Pull Requests
- [#4286](https://github.com/rollup/rollup/pull/4286): Escape dynamic import paths (@danielroe)
## 2.60.1
_2021-11-22_
### Bug Fixes
- Make sure virtual files have proper file extensions when preserving modules (#4270)
### Pull Requests
- [#4270](https://github.com/rollup/rollup/pull/4270): Use entryFileNames when generating filenames for virtual modules (@BPScott)
## 2.60.0
_2021-11-11_
### Features
- Add `this.load` context function to load, transform and parse modules without adding them to the graph (#4234)
- Sanitize non-url-safe characters in generated chunk names by default (#4262)
- Support ESM plugins via command line (#4265)
### Pull Requests
- [#4234](https://github.com/rollup/rollup/pull/4234): Plugin context function for pre-loading modules (@lukastaegert)
- [#4262](https://github.com/rollup/rollup/pull/4262): exclude invalid URL chars (@danielroe)
- [#4265](https://github.com/rollup/rollup/pull/4265): support loading ESM plugins from the CLI via --plugin (@kzc)
## 2.59.0
_2021-11-01_
### Features
- Support static class initialization blocks (#4249)
### Bug Fixes
- Fix an issue with the CommonJS plugin when module.exports has inherited properties (#4256)
### Pull Requests
- [#4236](https://github.com/rollup/rollup/pull/4236): typescript bug class field initialization order (@dnalborczyk)
- [#4249](https://github.com/rollup/rollup/pull/4249): Support for class static initialization block (@dnalborczyk and @lukastaegert)
- [#4256](https://github.com/rollup/rollup/pull/4256): Skip inherited properties in synthetic namespaces (@lukastaegert)
## 2.58.3
_2021-10-25_
### Bug Fixes
- Republish 2.58.1 with npm 6 as files were missing
## 2.58.2
_2021-10-25_
### Bug Fixes
- Republish 2.58.1 as files were missing
## 2.58.1
_2021-10-25_
### Bug Fixes
- Fix an issue with the CommonJS plugin when module.exports is falsy (#4247)
### Pull Requests
- [#4247](https://github.com/rollup/rollup/pull/4247): Handle falsy synthetic namespaces (@lukastaegert)
## 2.58.0
_2021-10-01_
### Features
- Add a flag to more reliably identify entry points in the `resolveId` hook (#4230)
### Pull Requests
- [#4230](https://github.com/rollup/rollup/pull/4230): Add isEntry flag to resolveId and this.resolve (@lukastaegert)
- [#4233](https://github.com/rollup/rollup/pull/4233): Remove unused rollup-plugin-typescript ambient module types (@dnalborczyk)
- [#4235](https://github.com/rollup/rollup/pull/4235): Update dependencies (@lukastaegert)
## 2.57.0
_2021-09-22_
### Features
- Add `generatedCode` option to allow Rollup to use es2015 features for smaller output and more efficient helpers (#4215)
- Improve AMD and SystemJS parsing performance by wrapping relevant functions in parentheses (#4215)
- Using `preferConst` will now show a warning with `strictDeprecations: true` (#4215)
### Bug Fixes
- Improve ES3 syntax compatibility by more consequently quoting reserved words as props in generated code (#4215)
- Do not use `Object.assign` in generated code to ensure ES5 compatibility without the need for polyfills (#4215)
- Support live-bindings in dynamic namespace objects that contain reexported external or synthetic namespaces (#4215)
- Use correct "this" binding in dynamic import expressions for CommonJS and AMD (#4215)
- Properly handle `shimMissingExports` for exports that are only used internally (#4215)
- Prevent unhandled rejection for failed module parsing (#4228)
### Pull Requests
- [#4212](https://github.com/rollup/rollup/pull/4212): chore: remove unused ambient types (@dnalborczyk)
- [#4215](https://github.com/rollup/rollup/pull/4215): Use ES2015 features in generated code snippets (@lukastaegert)
- [#4219](https://github.com/rollup/rollup/pull/4219): chore: bump rollup typescript, remove unused micromatch (@dnalborczyk)
- [#4220](https://github.com/rollup/rollup/pull/4220): chore: use forceConsistentCasingInFileNames in ts-config (@dnalborczyk)
- [#4224](https://github.com/rollup/rollup/pull/4224): prepare for useDefineForClassFields (@dnalborczyk)
- [#4228](https://github.com/rollup/rollup/pull/4228): fix: prevent UnhandledPromiseRejectionWarning when module resolution/parsing fails (@kherock)
## 2.56.3
_2021-08-23_
### Bug Fixes
- Make sure moduleInfo contains complete information about imported ids in the moduleParsed hook (#4208)
### Pull Requests
- [#4208](https://github.com/rollup/rollup/pull/4208): `ModuleInfo.importedIds` will return null if `resolvedIds[source]` is undefined (@FoxDaxian and @lukastaegert)
## 2.56.2
_2021-08-10_
### Bug Fixes
- Check if after simplification, an object pattern would become an expression statement or arrow function return value (#4204)
### Pull Requests
- [#4204](https://github.com/rollup/rollup/pull/4204): Do not create invalid code when simplifying object pattern assignments (@lukastaegert)
## 2.56.1
_2021-08-08_
### Bug Fixes
- Fix rendering of SystemJS export declarations initialized with a simplifiable expression (#4202)
### Pull Requests
- [#4202](https://github.com/rollup/rollup/pull/4202): Fix incorrect rendering of export declarations in SystemJS (@lukastaegert)
## 2.56.0
_2021-08-05_
### Features
- Create more efficient code for SystemJS exports (#4199)
- Extend `maxParallelFileReads` option to also throttle plugin load hooks (#4200)
### Bug Fixes
- Return correct value for postfix update expressions of exported variables (#4194)
### Pull Requests
- [#4199](https://github.com/rollup/rollup/pull/4199): Refine SystemJS export rendering (@lukastaegert)
- [#4200](https://github.com/rollup/rollup/pull/4200): Restrict parallel execution of load hook (@schummar)
## 2.55.1
_2021-07-29_
### Bug Fixes
- Improve CLI warning message for unused external imports (#4194)
### Pull Requests
- [#4194](https://github.com/rollup/rollup/pull/4194): Align batch warning for UNUSED_EXTERNAL_IMPORT to individual warning (@benmccann)
## 2.55.0
_2021-07-28_
### Features
- Support default export live-bindings when generating ESM output (#4182)
### Bug Fixes
- Always write `["default"]` as computed property when used as named export (#4182)
- Do not mask default export TDZ errors (#4182)
### Pull Requests
- [#4182](https://github.com/rollup/rollup/pull/4182): Use mutable bindings for default exports (@lukastaegert)
## 2.54.0
_2021-07-25_
### Features
- Extend UMD import.meta.url polyfill to support web workers (#4186)
### Bug Fixes
- Resolve an issue where certain uses of classes could lead to an infinite recursion (#4189)
### Pull Requests
- [#4186](https://github.com/rollup/rollup/pull/4186): Fix UMD import.meta.url inside web workers (@ceifa)
- [#4188](https://github.com/rollup/rollup/pull/4188): Fix typo in renderHelpers.ts (@eltociear)
- [#4189](https://github.com/rollup/rollup/pull/4189): Move long path recursion prevention to MemberExpression (@lukastaegert)
- [#4190](https://github.com/rollup/rollup/pull/4190): Stop recommending node-builtins (@curran)
## 2.53.3
_2021-07-21_
### Bug Fixes
- Solve an issue that could lead to severe memory issues and crashes when there are a lot of hoisted variables (#4183)
### Pull Requests
- [#4183](https://github.com/rollup/rollup/pull/4183): Avoid memory issues with hoisted variables (@lukastaegert)
## 2.53.2
_2021-07-15_
### Bug Fixes
- Identify additional TDZ situations in functions that are run more than once (#4177)
- Fix a scoping issue when a variable inside a catch scope matches the scope parameter's name (#4178)
### Pull Requests
- [#4177](https://github.com/rollup/rollup/pull/4177): Fix additional let/var init bugs (@kzc)
- [#4178](https://github.com/rollup/rollup/pull/4178): Correctly create outside variable when shadowed by catch parameter (@lukastaegert)
## 2.53.1
_2021-07-11_
### Bug Fixes
- Do not omit namespace reexports when `treeshake` is `false` (#4175)
### Pull Requests
- [#4175](https://github.com/rollup/rollup/pull/4175): Generate namespace objects when not tree-shaking (@lukastaegert)
## 2.53.0
_2021-07-09_
### Features
- Add `maxParallelFileReads` option to limit read operations with a default of 20 (#4170)
### Pull Requests
- [#4170](https://github.com/rollup/rollup/pull/4170): Limit parallel file reads to prevent "EMFILE: too many open files" error (@schummar)
## 2.52.8
_2021-07-07_
### Bug Fixes
- Automatically handle many use `var` before declaration and TDZ access scenarios correctly without the need for `treeshake.correctVarValueBeforeDeclaration` (#4148)
### Pull Requests
- [#4148](https://github.com/rollup/rollup/pull/4148): Fix var/const/let variable use before declaration (@kzc and @lukastaegert)
## 2.52.7
_2021-07-02_
### Bug Fixes
- Fix an issue where reassignments where not tracked through async function returns (#4163)
### Pull Requests
- [#4163](https://github.com/rollup/rollup/pull/4163): Deoptimize return values of async functions (@lukastaegert)
## 2.52.6
_2021-07-01_
### Bug Fixes
- Fix an issue where reassignments where not tracked through an await expression (#4162)
### Pull Requests
- [#4162](https://github.com/rollup/rollup/pull/4162): doptimize awaited expressions (@lukastaegert)
## 2.52.5
_2021-07-01_
### Bug Fixes
- Properly display parser errors not tied to a code location (#4160)
### Pull Requests
- [#4160](https://github.com/rollup/rollup/pull/4160): fix: max stack call error is caught on locate (@semoal)
## 2.52.4
_2021-06-30_
### Bug Fixes
- Fix an error when external namespaces are reexported across several files (#4159)
### Pull Requests
- [#4159](https://github.com/rollup/rollup/pull/4159): Properly handle double reexports from external namespaces (@lukastaegert)
## 2.52.3
_2021-06-25_
### Bug Fixes
- Fix an issue where code was wrongly removed when using vars in nested scopes (#4149)
### Pull Requests
- [#4149](https://github.com/rollup/rollup/pull/4149): Make sure the initializer of hoisted variables is deoptimized (@lukastaegert)
## 2.52.2
_2021-06-21_
### Bug Fixes
- Support falsy plugins in types (#4144)
- Do not require return value in renderChunkHook type (#4144)
### Pull Requests
- [#4144](https://github.com/rollup/rollup/pull/4144): Use TypeScript config and improve some types (@lukastaegert)
## 2.52.1
_2021-06-17_
### Bug Fixes
- Fix a memory leak in watch mode (#4142)
### Pull Requests
- [#4142](https://github.com/rollup/rollup/pull/4142): Make array and object prototype singletons immutable for now (@lukastaegert)
## 2.52.0
_2021-06-16_
### Features
- Add `--configPlugin` CLI option to apply plugins to the config file for e.g. TypeScript configs (#3835)
- Add "safest" and "smallest" presets to tree-shaking options for easier configuration (#4131)
- Add `treeshake.correctVarValueBeforeDeclaration` option to deoptimize `var` declarations (#4139)
### Pull Requests
- [#3835](https://github.com/rollup/rollup/pull/3835): Add typescript config support (@TheRealSyler)
- [#4131](https://github.com/rollup/rollup/pull/4131): Add presets to the tree-shaking options (@lukastaegert)
- [#4139](https://github.com/rollup/rollup/pull/4139): Add option to deoptimize var declarations for tree-shaking (@lukastaegert)
- [#4141](https://github.com/rollup/rollup/pull/4141): Update dependencies (@lukastaegert)
## 2.51.2
_2021-06-11_
### Bug Fixes
- Include modules imported from no-treeshake modules even if they would be empty (#4138)
### Pull Requests
- [#4138](https://github.com/rollup/rollup/pull/4138): Include all dependencies from modules with no-treeshake (@lukastaegert)
## 2.51.1
_2021-06-08_
### Bug Fixes
- Fix error when using `defineConfig` (#4134)
### Pull Requests
- [#4134](https://github.com/rollup/rollup/pull/4134): export `rollup.defineConfig` at runtime (@mshrtsr)
## 2.51.0
_2021-06-06_
### Features
- Add a helper for IntelliSense support in config files (#4127)
### Bug Fixes
- Improve performance when generating source maps (#4122)
### Pull Requests
- [#4122](https://github.com/rollup/rollup/pull/4122): User Map to optimize performance (@izevo)
- [#4127](https://github.com/rollup/rollup/pull/4127): Export defineConfig defines the auxiliary function of the configuration (@rxliuli)
## 2.50.6
_2021-06-03_
### Bug Fixes
- Do not consider the object spread operator as side effect when `propertyReadSideEffects` are false (#4119)
- Detect side effects when returning thenables from async arrow functions (#4120)
### Pull Requests
- [#4119](https://github.com/rollup/rollup/pull/4119): Respect propertyReadSideEffects in spread elements (@lukastaegert)
- [#4120](https://github.com/rollup/rollup/pull/4120): Detect async arrow thenable side effects (@lukastaegert)
## 2.50.5
_2021-05-30_
### Bug Fixes
- Detect side effects when accessing thenables (#4115)
### Pull Requests
- [#4114](https://github.com/rollup/rollup/pull/4114): use `colorette` instead of `turbocolor` (@ryuever)
- [#4115](https://github.com/rollup/rollup/pull/4115): Tracks side effects of thenables (@lukastaegert)
## 2.50.4
_2021-05-29_
### Bug Fixes
- Fix a situation where tree-shaking would stop including nodes prematurely (#4111)
- Track mutations and accessor side effects when using `__proto__` in an object literal (#4112)
- Check for getter effects when spreading an object (#4113)
### Pull Requests
- [#4111](https://github.com/rollup/rollup/pull/4111): Always request a new tree-shaking pass when deoptimizations of a node are first included (@lukastaegert)
- [#4112](https://github.com/rollup/rollup/pull/4112): Actually set the prototype when using a **proto** property (@lukastaegert)
- [#4113](https://github.com/rollup/rollup/pull/4113): Track access side effects when using object spread operator (@lukastaegert)
## 2.50.3
_2021-05-28_
### Bug Fixes
- Wrap parentheses around leading elements in simplified sequence expressions if this would otherwise lead to invalid code (#4110)
- Do not associate block soped variables in catch clauses with the clause parameter (#4108)
- Do not associate hoisted variables in catch clauses with outside variables if they match the parameter (#4108)
- Use correct "this" context for tagged template literal member expressions in simplified sequences (#4110)
### Pull Requests
- [#4108](https://github.com/rollup/rollup/pull/4108): Correctly handle catch declarations (@lukastaegert)
- [#4110](https://github.com/rollup/rollup/pull/4110): Invalid sequence expression simplification (@lukastaegert)
## 2.50.2
_2021-05-27_
### Bug Fixes
- Avoid unnecessary side effects when using methods like `.filter` and `.map` (#4103)
- Avoid crash when a module with moduleSideEffects no-treeshake imports a tree-shaken module (#4104)
### Pull Requests
- [#4103](https://github.com/rollup/rollup/pull/4103): Do not track side-effect-free array methods as side effects (@lukastaegert)
- [#4104](https://github.com/rollup/rollup/pull/4104): Fix crash when using inlineDynamicImports with no-treeshake (@lukastaegert)
## 2.50.1
_2021-05-26_
### Bug Fixes
- Do not associate pure annotations in simplified expressions with wrong elements (#4095)
- Prevent invalid code when simplified conditionals start with an IIFE function expression (#4099)
### Pull Requests
- [#4095](https://github.com/rollup/rollup/pull/4095): Correctly associate pure annotations and remove invalid ones (@lukastaegert)
- [#4099](https://github.com/rollup/rollup/pull/4099): Wrap leading function expression iifes in conditionals (@lukastaegert)
## 2.50.0
_2021-05-25_
### Features
- Only include last elements of comma expressions if they are used or have side effects (#4087)
### Bug Fixes
- Prevent a crash that could occur when calling object methods (#4091)
### Pull Requests
- [#4085](https://github.com/rollup/rollup/pull/4085): Switch to ESLint (@lukastaegert)
- [#4087](https://github.com/rollup/rollup/pull/4087): Drop unused last sequence element (@lukastaegert)
- [#4091](https://github.com/rollup/rollup/pull/4091): Prevent crash for recursive "this" deoptimization (@lukastaegert)
## 2.49.0
_2021-05-23_
### Features
- Detect side-effect-free static class methods and properties (#4018)
- Detect side-effect-free array elements (#4018)
- Do not apply deoptimizations from dead code (#4018)
### Bug Fixes
- Handle side effect detection for getters and setters added in untracked code (#4018)
- Track "this" mutations for methods, getters and setters (#4018)
### Pull Requests
- [#4018](https://github.com/rollup/rollup/pull/4018): Class method effects (@marijnh and @lukastaegert)
## 2.48.0
_2021-05-15_
### Features
- Add replacement to conditionally insert asset extensions in `entryFileNames` when preserving modules (#4077)
### Bug Fixes
- Fix crash when dynamically assigning to namespace members (#4070)
- Do not associate pure annotations in front of a semi-colon or comma with succeeding code (#4068)
### Pull Requests
- [#4068](https://github.com/rollup/rollup/pull/4068): ignore invalid trailing pure annotations (@kzc)
- [#4070](https://github.com/rollup/rollup/pull/4070): undefined `deoptimizePath` when the first element is empty string (@si3nloong)
- [#4071](https://github.com/rollup/rollup/pull/4071): add node.js v16 support (@dnalborczyk)
- [#4077](https://github.com/rollup/rollup/pull/4077): Add assetExtname replacement in entryFileNames (@BPScott)
- [#4080](https://github.com/rollup/rollup/pull/4080): Added Rollup logo in README.md (@priyanshurav)
- [#4081](https://github.com/rollup/rollup/pull/4081): fix comment regarding invalid annotation handling (@kzc)
## 2.47.0
_2021-05-04_
### Features
- Warn about ambiguous imports from combined external namespace reexports (#4064)
- In case of combined namespace reexports, always prefer local exports over external namespaces (#4064)
- Treat conflicting names in local namespace reexports as undefined (#4064)
### Pull Requests
- [#4064](https://github.com/rollup/rollup/pull/4064): Prefer locally defined exports and reexports over external namespaces (@lukastaegert)
## 2.46.0
_2021-04-29_
### Features
- Add option to disable file name sanitation (#4058)
- Add information about importers to unused external import warning (#4054)
### Pull Requests
- [#4042](https://github.com/rollup/rollup/pull/4042): Use Github actions only (@lukastaegert)
- [#4045](https://github.com/rollup/rollup/pull/4045): Fix REPL artefact branch reference (@lukastaegert)
- [#4046](https://github.com/rollup/rollup/pull/4046): Use codecov action for coverage (@lukastaegert)
- [#4054](https://github.com/rollup/rollup/pull/4054): Add to `UNUSED_EXTERNAL_IMPORT` warning information about the origin of the problem (@cawa-93)
- [#4058](https://github.com/rollup/rollup/pull/4058): Add sanitizeFileName option (@guybedford)
## 2.45.2
_2021-04-13_
### Bug Fixes
- Do not user a dynamic entry file name for naming a manual chunk (#4040)
### Pull Requests
- [#4040](https://github.com/rollup/rollup/pull/4040): Prioritize manual chunk name over dynamic entry id (@lukastaegert)
## 2.45.1
_2021-04-10_
### Bug Fixes
- Handle falsy return values from async plugin options hooks (#4039)
### Pull Requests
- [#4039](https://github.com/rollup/rollup/pull/4039): Do not fail when returning null or undefined from an async options hook (@lukastaegert)
## 2.45.0
_2021-04-09_
### Features
- Support private class instance methods and accessors (#4034)
### Pull Requests
- [#4034](https://github.com/rollup/rollup/pull/4034): feat: add support for private class methods (@dnalborczyk)
## 2.44.0
_2021-03-29_
### Features
- Add a new option `makeAbsoluteExternalsRelative` to opt out of renormalizing absolute external ids to relative ids (#4021)
- Extend the `resolveId` plugin hook to allow forcing or preventing renormalization of absolute external ids (#4021)
- Make the rendered code of individual modules available in the generated bundle (#4028)
### Bug Fixes
- Handle objects with `__proto__` properties correctly (#4019)
### Pull Requests
- [#4019](https://github.com/rollup/rollup/pull/4019): Deoptimize ObjectExpression when a `__proto__` property is present (@marijnh)
- [#4021](https://github.com/rollup/rollup/pull/4021): Improve absolute path handling (@lukastaegert)
- [#4026](https://github.com/rollup/rollup/pull/4026): chore: fix vscode launch config (change tdd to bdd) (@jameslahm)
- [#4027](https://github.com/rollup/rollup/pull/4027): Post comment for PRs from forks (@lukastaegert)
- [#4028](https://github.com/rollup/rollup/pull/4028): Expose rendered module code to generateBundle hook (@btd)
## 2.43.1
_2021-03-28_
### Bug Fixes
- Prevent infinite recursions in certain scenarios when calling object properties (#4025)
### Pull Requests
- [#4025](https://github.com/rollup/rollup/pull/4025): Handle recursive this mutation detection (@lukastaegert)
## 2.43.0
_2021-03-27_
### Features
- Track side effects of function properties in objects for better tree-shaking (#4011)
### Pull Requests
- [#4011](https://github.com/rollup/rollup/pull/4011): Disable pessimistic object deoptimization for calls when the called function doesn't ref this (@marijnh)
- [#4012](https://github.com/rollup/rollup/pull/4012): fix `sourcemap` reference in docs (@tjenkinson)
- [#4015](https://github.com/rollup/rollup/pull/4015): Use SIGTERM instead of SIGINT to kill test child processes in tests (@marijnh)
## 2.42.4
_2021-03-24_
### Bug Fixes
- Do not discard plugin return values when using perf option (#4010)
### Pull Requests
- [#4010](https://github.com/rollup/rollup/pull/4010): Return hook result inside promise with async timer end (@SuperOleg39)
## 2.42.3
_2021-03-22_
### Bug Fixes
- Do not ignore `#__PURE__` comments in front of optional chaining expressions (#4007)
### Pull Requests
- [#4007](https://github.com/rollup/rollup/pull/4007): Tree-shake pure call expressions with optional chaining (@lukastaegert)
## 2.42.2
_2021-03-22_
### Bug Fixes
- Use correct import.meta.url in relative imports from transpiled config files (#4005)
### Pull Requests
- [#4005](https://github.com/rollup/rollup/pull/4005): Use correct import.meta.url in config files (@lukastaegert)
## 2.42.1
_2021-03-20_
### Bug Fixes
- Do not produce unhandled Promise rejections when plugins throw while using the `perf` option (#4004)
### Pull Requests
- [#4004](https://github.com/rollup/rollup/pull/4004): Fixed unhandled promise rejections (@gluck)
## 2.42.0
_2021-03-19_
### Features
- Prevent infinite loops when several plugins are using `this.resolve` in their resolveId hook (#4000)
### Pull Requests
- [#4000](https://github.com/rollup/rollup/pull/4000): Break infinite loops in this.resolve (@lukastaegert)
## 2.41.5
_2021-03-18_
### Bug Fixes
- Make sure unused property accesses of external namespaces can be tree-shaken (#4001)
### Pull Requests
- [#4001](https://github.com/rollup/rollup/pull/4001): Do not count accessing members of an external namespace as side-effects (@lukastaegert)
## 2.41.4
_2021-03-16_
### Bug Fixes
- Do not replace external namespace imports with individual named imports to avoid changing behaviour with regard to missing exports (#3999)
### Pull Requests
- [#3999](https://github.com/rollup/rollup/pull/3999): Allow to safely probe external namespaces (@lukastaegert)
## 2.41.3
_2021-03-16_
### Bug Fixes
- Always retain arguments passed to empty object pattern parameters (#3998)
### Pull Requests
- [#3998](https://github.com/rollup/rollup/pull/3998): Do not create invalid code if a function argument is an empty object pattern (@lukastaegert)
## 2.41.3
_2021-03-16_
### Bug Fixes
- Always retain arguments passed to empty object pattern parameters (#3998)
### Pull Requests
- [#3998](https://github.com/rollup/rollup/pull/3998): Do not create invalid code if a function argument is an empty object pattern (@lukastaegert)
## 2.41.2
_2021-03-12_
### Bug Fixes
- Also remove sourcemaps comments if plugins return a pre-made ast (#3987)
### Pull Requests
- [#3987](https://github.com/rollup/rollup/pull/3987): Change removal of sourcemap comment (@yannayl)
## 2.41.1
_2021-03-11_
### Pull Requests
- [#3990](https://github.com/rollup/rollup/pull/3990): Add browser sourcemap and remove log (@lukastaegert)
## 2.41.0
_2021-03-09_
### Features
- Add option to `treeshake.propertyReadSideEffects` to keep all property accesses (#3985)
### Bug Fixes
- Also respect pure comment annotations when a plugin provides an AST in the transform hook provided they use this.parse (#3981)
### Pull Requests
- [#3981](https://github.com/rollup/rollup/pull/3981): Move pure comment annotation to Graph.contextParse (@yannayl)
- [#3985](https://github.com/rollup/rollup/pull/3985): implement --treeshake.propertyReadSideEffects=always to handle getters with side effects (@kzc)
## 2.40.0
_2021-02-26_
### Features
- Make sure that entry point variable names take precedence over variable names in dependencies when deconflicting (#3977)
### Bug Fixes
- Replace `:` in generated file names to prevent invalid files on Windows (#3972)
### Pull Requests
- [#3972](https://github.com/rollup/rollup/pull/3972): Don't allow `:` in file names (@lukastaegert)
- [#3976](https://github.com/rollup/rollup/pull/3976): Add soft breaks to guide to improve mobile experience (@lukastaegert)
- [#3977](https://github.com/rollup/rollup/pull/3977): Reverse module deconflicting order (@lukastaegert)
## 2.39.1
_2021-02-23_
### Bug Fixes
- Make sure local variables named Symbol, Object or Promise do not conflict with code generated by Rollup (#3971)
### Pull Requests
- [#3964](https://github.com/rollup/rollup/pull/3964): Remove extra word (@jamonholmgren)
- [#3971](https://github.com/rollup/rollup/pull/3971): Avoid conflicts with local variables named Symbol, Object, Promise (@lukastaegert)
## 2.39.0
_2021-02-12_
### Features
- Add "validate" option to verify generated chunks are valid JavaScript (#3952)
### Bug Fixes
- Always add exports properties for uninitialized named exports (#3957)
- Allow using an external namespace reexport together with named exports (#3959)
- Avoid invalid generated code in certain scenarios with SystemJS exports (#3960)
### Pull Requests
- [#3952](https://github.com/rollup/rollup/pull/3952): implement `validate` output option and `--validate` CLI option (@kzc)
- [#3956](https://github.com/rollup/rollup/pull/3956): Update dependencies, fix fsevents issue (@lukastaegert)
- [#3957](https://github.com/rollup/rollup/pull/3957): Make sure uninitialised exports turn up via .hasOwnProperty for non-ES formats (@lukastaegert)
- [#3959](https://github.com/rollup/rollup/pull/3959): Allow overriding individual exports of reexported external namespaces (@lukastaegert)
- [#3960](https://github.com/rollup/rollup/pull/3960): Make sure system exports are valid JavaScript (@lukastaegert)
## 2.38.5
_2021-02-05_
### Bug Fixes
- Prevent invalid code when simplifying assignments and delcarations (#3951)
- Prevent behaviour-changing line-breaks when simplifying assignments in return statements (#3951)
- Slightly improve white-space rendering when simplifying certain expressions (#3951)
### Pull Requests
- [#3951](https://github.com/rollup/rollup/pull/3951): Wrap simplified assignments if necessary (@lukastaegert)
## 2.38.4
_2021-02-02_
### Bug Fixes
- Do not change logic when tree-shaking declarations in if statements or loops (#3947)
### Pull Requests
- [#3947](https://github.com/rollup/rollup/pull/3947): Do not tear apart declarations in loop or if bodies (@lukastaegert)
## 2.38.3
_2021-02-01_
### Bug Fixes
- Prevent an unexpected live-binding when default exporting a synthetic named export (#3946)
### Pull Requests
- [#3945](https://github.com/rollup/rollup/pull/3945): Upgrade chokidar and fsevents for Apple M1 compatibility (@threepointone)
- [#3946](https://github.com/rollup/rollup/pull/3946): Make sure default exports snapshot synthetic named exports (@lukastaegert)
## 2.38.2
_2021-01-31_
### Bug Fixes
- Do not generate invalid code for partially tree-shaken declarations in for loops (#3943)
- Always include function bodies of functions in side-effect-free modules (#3944)
### Pull Requests
- [#3943](https://github.com/rollup/rollup/pull/3943): Do not partially tree-shake unused declarations in for loops (@lukastaegert)
- [#3944](https://github.com/rollup/rollup/pull/3944): Correctly include functions with side effects from side-effect-free modules (@lukastaegert)
## 2.38.1
_2021-01-28_
### Bug Fixes
- Fix internal error when resolving a missing entry point in the browser build (#3935)
### Pull Requests
- [#3935](https://github.com/rollup/rollup/pull/3935): fix: remove isolated resolve() for compat with browser distribution (@cmorten and @lukastaegert)
- [#3936](https://github.com/rollup/rollup/pull/3936): Ensure test after() callback is always executed (@Benjamin-Dobell)
- [#3937](https://github.com/rollup/rollup/pull/3937): Modernize references to other software (@ludofischer)
## 2.38.0
_2021-01-22_
### Features
- Entirely remove declared variables that only have an initializer side effect (#3933)
### Pull Requests
- [#3933](https://github.com/rollup/rollup/pull/3933): Tree-shake unused declarations while keeping initializer side-effects (@lukastaegert)
## 2.37.1
_2021-01-20_
### Pull Requests
- [#3929](https://github.com/rollup/rollup/pull/3929): Deduplicate acorn import (@lukastaegert)
## 2.37.0
_2021-01-19_
### Features
- Always check modules for side effects that only indirectly reexport a used variable (#3840)
- Warn if a circular dependency would cause wrong execution order when preserving modules (#3840)
### Bug Fixes
- Allow consuming synthetic exports via modules that reexport a namespace (#3894)
- Do not crash for circular default reexports (#3840)
- Do not crash for circular synthetic namespaces (#3840)
- Improve circular dependency execution order in certain scenarios (#3840)
### Pull Requests
- [#3840](https://github.com/rollup/rollup/pull/3840): Improve circular dependency execution order (@lukastaegert)
- [#3894](https://github.com/rollup/rollup/pull/3894): Always respect synthetic namespaces in namespace reexport (@lukastaegert)
## 2.36.2
_2021-01-16_
### Bug Fixes
- Fix an issue where invalid code was generated for unused assignments with side effects (#3926)
### Pull Requests
- [#3926](https://github.com/rollup/rollup/pull/3926): Correctly simplify assignments with parentheses (@lukastaegert)
## 2.36.1
_2021-01-06_
### Bug Fixes
- Solve issues that result in invalid code when partially removing assignments (#3921)
### Pull Requests
- [#3921](https://github.com/rollup/rollup/pull/3921): Prevent invalid code when removing assignment target of side-effectful object expression (@lukastaegert)
## 2.36.0
_2021-01-05_
### Features
- Support partial tree-shaking of chained assignments and unused assignment targets (#3919)
### Pull Requests
- [#3919](https://github.com/rollup/rollup/pull/3919): Treeshake chained assignment expressions (@lukastaegert)
## 2.35.1
_2020-12-14_
### Bug Fixes
- Allow closing the bundle when watching in case of generate errors by adding the bundle to the error event (#3909)
- Automatically close all bundles on generate errors when watching and using the CLI (#3909)
- Try to create remaining bundles when watching and one of them throws (#3909)
### Pull Requests
- [#3909](https://github.com/rollup/rollup/pull/3909): Forward bundle through watch error events (@lukastaegert)
## 2.35.0
_2020-12-14_
### Features
- Add `closeBundle` hook that is triggered by `bundle.close()` in the JS API (#3883)
### Pull Requests
- [#3883](https://github.com/rollup/rollup/pull/3883): Revert pattern to folder export (@intrnl)
## 2.34.2
_2020-12-06_
### Bug Fixes
- Revert pattern export change (#3898)
### Pull Requests
- [#3898](https://github.com/rollup/rollup/pull/3898): Revert pattern to folder export (@lukastaegert)
## 2.34.1
_2020-12-03_
### Bug Fixes
- Avoid Node deprecation warning by using a pattern export for nested Rollup files (#3896)
### Pull Requests
- [#3887](https://github.com/rollup/rollup/pull/3887): Run memory leak test on all systems (@lukastaegert)
- [#3892](https://github.com/rollup/rollup/pull/3892): Add pull_request to windows github actions (@shellscape)
- [#3893](https://github.com/rollup/rollup/pull/3893): Update dependencies (@lukastaegert)
- [#3896](https://github.com/rollup/rollup/pull/3896): Replace deprecated folder package export with pattern export (@lukastaegert)
## 2.34.0
_2020-11-29_
### Features
- Support RequireJS comaptible AMD ids in code-splitting builds via amd.autoId (#3867)
- Allow adding an AMD id base path (#3867)
### Bug Fixes
- Warn when using an constant AMD id in a code-splitting build (#3867)
### Pull Requests
- [#3867](https://github.com/rollup/rollup/pull/3867): Implement amd.autoId/amd.basePath options (@tjenkinson)
## 2.33.3
_2020-11-18_
### Bug Fixes
- Do not use `.js` extension when importing AMD files from a UMD bundle (#3872)
### Pull Requests
- [#3861](https://github.com/rollup/rollup/pull/3861): Update chat/support links (@shellscape)
- [#3872](https://github.com/rollup/rollup/pull/3872): Also removeExtensionFromRelativeAmdId in UMD finaliser (@tjenkinson)
## 2.33.2
_2020-11-14_
### Bug Fixes
- Fix an issue where statements were ignored after a conditional return in a labeled statement (#3871)
### Pull Requests
- [#3871](https://github.com/rollup/rollup/pull/3871): Correctly track label usage in try statements (@Amareis)
## 2.33.1
_2020-11-02_
### Bug Fixes
- Add `syntheticNamedExports` to `this.getModuleInfo` to align with documentation (#3847)
### Pull Requests
- [#3847](https://github.com/rollup/rollup/pull/3847): Expose syntheticNamedExports to ModuleInfo (@Amareis)
- [#3852](https://github.com/rollup/rollup/pull/3852): Fix typo on docs (@jpsc)
## 2.33.0
_2020-11-01_
### Features
- Add parameter to "watchChange" hook to denote if a change was an addition, update or deletion (#3841)
- Add "closeWatcher" hook to allow plugins to clean up resources when the watcher is closed (#3841)
- Add "this.getWatchFiles" function to plugin context to get the current set of watched files (#3841)
### Pull Requests
- [#3841](https://github.com/rollup/rollup/pull/3841): Improved watcher hooks (@Amareis)
- [#3848](https://github.com/rollup/rollup/pull/3848): Add options hook to asyncpluginhooks (@intrnl)
## 2.32.1
_2020-10-21_
### Bug Fixes
- Print warning location for plugin warnings if only `loc` is supplied (#3824)
### Pull Requests
- [#3824](https://github.com/rollup/rollup/pull/3824): plugin warnings not showing warning.loc (@luciotato)
## 2.32.0
_2020-10-16_
### Features
- Extend `preserveEntrySignatures` with a value `"exports-only"` to allow extension only if an entry does not have exports (#3823)
### Pull Requests
- [#3823](https://github.com/rollup/rollup/pull/3823): Add "exports-only" option to preserveSignature (@lukastaegert)
## 2.31.0
_2020-10-15_
### Features
- When using the `output.moduleToStringTag` option, also add the tag to entries with exports and simulated external namespaces (#3822)
- Add the `__esModule` interop marker to IIFE global variables unless `output.esModule` is turned off (#3822)
### Pull Requests
- [#3822](https://github.com/rollup/rollup/pull/3822): Add module toStringTag to entries and interop namespaces (@lukastaegert)
## 2.30.0
_2020-10-13_
### Features
- Add `moduleParsed` hook that is called for each module once code and AST are available (#3813)
- Include code and AST in `this.getModuleInfo` (#3813)
### Bug Fixes
- Provide the original Acorn AST instead of the internal one when resolving dynamic imports that contain non-trivial expressions (#3813)
### Pull Requests
- [#3813](https://github.com/rollup/rollup/pull/3813): Add moduleParsed plugin hook (@lukastaegert)
- [#3815](https://github.com/rollup/rollup/pull/3815): Docs: wile => while (@tjenkinson)
- [#3817](https://github.com/rollup/rollup/pull/3817): Docs: fix code snippet (@codefrau)
- [#3818](https://github.com/rollup/rollup/pull/3818): Update documentation on configuring Babel, removing the section on passing '{"modules": false}' as that is no longer needed since Babel 7 (@Robin-Hoodie)
## 2.29.0
_2020-10-08_
### Features
- Allow passing custom options to other plugins via `this.resolve` (#3807)
- Allow attaching custom meta information to modules when resolving, loading or transforming (#3807)
- Do not throw but return `null` when using `this.getModuleInfo` for an unknown id (#3807)
### Bug Fixes
- Trigger build in watch mode when files are added to a watched directory (#3812)
- Make `code` optional when transforming modules (#3807)
### Pull Requests
- [#3807](https://github.com/rollup/rollup/pull/3807): Implement new APIs for inter-plugin communication (@lukastaegert)
- [#3808](https://github.com/rollup/rollup/pull/3808): Document that the default value of --format is 'es' (@jameshfisher)
- [#3812](https://github.com/rollup/rollup/pull/3812): Watch: listen for new files added to a directory (@dmitrage)
## 2.28.2
_2020-09-24_
### Bug Fixes
- Fix a source of possible variable name conflicts when using preserveModules with SystemJS (#3796)
### Pull Requests
- [#3792](https://github.com/rollup/rollup/pull/3792): add documentation for output.PreserveModulesRoot (@davidroeca)
- [#3796](https://github.com/rollup/rollup/pull/3796): Fix SystemJS default variable conflict (@lukastaegert)
## 2.28.1
_2020-09-21_
### Bug Fixes
- Fix a path slash issue when using the preserveModulesRoot option on Windows (#3791)
### Pull Requests
- [#3791](https://github.com/rollup/rollup/pull/3791): Fix preserveModulesRoot path on Windows (@lukastaegert)
## 2.28.0
_2020-09-21_
### Features
- Add an option to treat modules at a given path as located at root when preserving modules (#3786)
### Pull Requests
- [#3786](https://github.com/rollup/rollup/pull/3786): Add preserveModulesRoot config option (@davidroeca)
## 2.27.1
_2020-09-17_
### Bug Fixes
- Do not fail when using ES module imports in symlinked config files (#3783)
### Pull Requests
- [#3783](https://github.com/rollup/rollup/pull/3783): Handle loading symlinked config files (@lukastaegert)
## 2.27.0
_2020-09-16_
### Features
- Support specifying a file extension when reading from stdin (#3775)
### Bug Fixes
- Do not break logic if a branch with hoisted variables is tree-shaken in an else-if statement (#3782)
### Pull Requests
- [#3770](https://github.com/rollup/rollup/pull/3770): Docs: Exception for babel plugin and commonjs plugin (@jsk7)
- [#3775](https://github.com/rollup/rollup/pull/3775): add ability to specify stdin file extension via --stdin=ext (@kzc)
- [#3782](https://github.com/rollup/rollup/pull/3782): Handle hoisted variables in dead branches of nested if statements (@lukastaegert)
## 2.26.11
_2020-09-08_
### Bug Fixes
- Do not fail for unknown nodes as if statement branches (#3769)
### Pull Requests
- [#3769](https://github.com/rollup/rollup/pull/3769): Handle debugger statements as if-statement branches (@lukastaegert)
## 2.26.10
_2020-09-04_
### Bug Fixes
- Do not create invalid code when simplifying expressions in return statements that contain line comments (#3762)
### Pull Requests
- [#3757](https://github.com/rollup/rollup/pull/3757): Fix api docs loadconfigfile (@maxwell8888)
- [#3762](https://github.com/rollup/rollup/pull/3762): Handle line-comments when removing line-breaks to prevent ASI (@lukastaegert)
## 2.26.9
_2020-09-01_
### Bug Fixes
- Add regular expression support to watch include/exclude types (#3754)
### Pull Requests
- [#3754](https://github.com/rollup/rollup/pull/3754): Add RegExp to the include and exclude fields of the WatcherOptions type (@dagda1)
- [#3756](https://github.com/rollup/rollup/pull/3756): Update FAQ: I think it was meant "external" instead of "other-entry.js" (@madacol)
## 2.26.8
_2020-08-29_
### Bug Fixes
- Make sure that both unresolved and resolved ids are passed to the `external` option in all cases (#3753)
### Pull Requests
- [#3753](https://github.com/rollup/rollup/pull/3753): Also pass resolved ids to external if they use the object for (@lukastaegert)
## 2.26.7
_2020-08-28_
### Bug Fixes
- Avoid invalid code when rendering hoisted variable declarations from dead branches (#3752)
- Mark the `options` parameter of `this.parse` as optional for TypeScript plugins (#3750)
### Pull Requests
- [#3750](https://github.com/rollup/rollup/pull/3750): Make `options` of `PluginContext#parse` optional (@intrnl)
- [#3752](https://github.com/rollup/rollup/pull/3752): Extract hoisted variables from dead branches (@lukastaegert)
## 2.26.6
_2020-08-27_
### Bug Fixes
- Avoid conflicts between the namespace of synthetic named exports and local variables (#3747)
### Pull Requests
- [#3747](https://github.com/rollup/rollup/pull/3747): Properly deconflict synthetic named exports (@lukastaegert)
## 2.26.5
_2020-08-22_
### Bug Fixes
- Use correctly deconflicted variable names for reexported namespaces in ES formats (#3742)
### Pull Requests
- [#3742](https://github.com/rollup/rollup/pull/3742): Avoid variable name conflict when reexporting several namespaces from a chunk (@lukastaegert)
## 2.26.4
_2020-08-19_
### Bug Fixes
- Fix a situation where invalid code was rendered when dynamically importing a module with synthetic named exports when preserving modules (#3738)
- Create a proper namespace object when in a non-es format, a namespace is imported from a chunk with `default` export mode (#3738)
- Use the same variable when in a chunk, a namespace is both imported and reexported as a binding (#3738)
- Do not include the synthetic namespace in static entry points unless it is actually used (#3738)
- Make sure the chunking of one output does not interfere with the namespace objects of another output (#3738)
### Pull Requests
- [#3738](https://github.com/rollup/rollup/pull/3738): Improve synthetic entry handling (@lukastaegert)
## 2.26.3
_2020-08-16_
### Bug Fixes
- Fix a situation where line-breaks in a nested simplified conditional expression could result in broken code (#3734)
### Pull Requests
- [#3734](https://github.com/rollup/rollup/pull/3734): Prevent ASI when simplifying a nested logical expression (@lukastaegert)
## 2.26.2
_2020-08-16_
### Bug Fixes
- Fix a situation where line-breaks in a simplified conditional expression could result in broken code (#3732)
### Pull Requests
- [#3732](https://github.com/rollup/rollup/pull/3732): Prevent unintended ASI for nested conditionals (@lukastaegert)
## 2.26.1
_2020-08-16_
### Bug Fixes
- Correctly render external namespace imports when only generating SystemJS output (#3731)
### Pull Requests
- [#3731](https://github.com/rollup/rollup/pull/3731): Render system namespace import (@sastan and @lukastaegert)
## 2.26.0
_2020-08-15_
### Features
- Add a new entry `importedBindings` to the bundle information to list bindings per dependency (#3722)
### Bug Fixes
- Do not render an invalid UMD wrapper when no bindings are imported from a dependency (#3724)
- Avoid situations where removing the `else` branch from an `if` statement might catch the `else` branch from another one (#3725)
### Pull Requests
- [#3722](https://github.com/rollup/rollup/pull/3722): Add import specifiers to bundle information (@lukastaegert)
- [#3724](https://github.com/rollup/rollup/pull/3724): Fix missing variables for UMD and IIFE builds (@lukastaegert)
- [#3725](https://github.com/rollup/rollup/pull/3725): Do not entirely remove else branch if another else branch might accidentally be referenced (@lukastaegert)
## 2.25.0
_2020-08-14_
### Features
- Add `--failAfterWarnings` CLI flag that will complete builds with warnings but return an error at the end (#3712)
### Pull Requests
- [#3712](https://github.com/rollup/rollup/pull/3712): Implement `--failAfterWarnings` flag (@tjenkinson)
## 2.24.0
_2020-08-13_
### Features
- Allow defining interop per dependency via a function (#3710)
- Support interop "auto" as a more compatible version of "true" (#3710)
- Support interop "default" and "esModule" to avoid unnecessary interop helpers (#3710)
- Support interop "defaultOnly" for simplified helpers and Node ESM interop compatible output (#3710)
- Respect interop option for external dynamic imports (#3710)
- Support live-bindings for external default imports in non-ES formats unless "externalLiveBindings" is "false" (#3710)
- Use shared default interop helpers for AMD, UMD and IIFE formats (#3710)
- Avoid unnecessarily deconflicted module variables in non-ES formats (#3710)
- Freeze generated interop namespace objects (#3710)
- Always mark interop helpers as pure (#3710)
- Avoid default export interop if there is already an interop namespace object (#3710)
- Sort all `require` statements to the top in CommonJS output for easier back-transpilation to ES modules by other tools (#3710)
### Bug Fixes
- Handle accessing `super` in static class fields (#3720)
- Deconflict the names of helper variables introduced for interop (#3710)
- Generate proper namespace objects for static namespace imports in non-ES formats (#3710)
- Do not add unused interop helpers when using the renderDynamicImport hook (#3710)
### Pull Requests
- [#3710](https://github.com/rollup/rollup/pull/3710): Rework interop handling (@lukastaegert)
- [#3720](https://github.com/rollup/rollup/pull/3720): Handle super in static class fields (@lukastaegert)
## 2.23.1
_2020-08-07_
### Bug Fixes
- Fix an issue where dynamically importing an entry point could return a malformed namespace for CJS and AMD formats (#3709)
### Pull Requests
- [#3709](https://github.com/rollup/rollup/pull/3709): Properly construct namespace when dynamically importing chunks with facades in default export mode (@lukastaegert)
## 2.23.0
_2020-07-23_
### Features
- Handle environments with only globalThis in UMD output (#3691)
### Pull Requests
- [#3691](https://github.com/rollup/rollup/pull/3691): Check for globalThis in UMD wrapper (@lukastaegert)
## 2.22.2
_2020-07-21_
### Bug Fixes
- Always generate correct exports when an implicit entry is reexporting from another module (#3688)
### Pull Requests
- [#3688](https://github.com/rollup/rollup/pull/3688): Include all relevant modules to generate reexports for implicit dependencies (@lukastaegert)
## 2.22.1
_2020-07-18_
### Bug Fixes
- Remove unused arguments when calling a conditional expression (#3680)
### Pull Requests
- [#3680](https://github.com/rollup/rollup/pull/3680): Allow tree-shaking of arguments of functions that are returned by conditional expressions (@lukastaegert)
## 2.22.0
_2020-07-18_
### Features
- Allow resolving synthetic named exports via an arbitrary export name (#3657)
- Display a warning when the user does not explicitly select an export mode and would generate a chunk with default export mode when targeting CommonJS (#3657)
### Pull Requests
- [#3657](https://github.com/rollup/rollup/pull/3657): Add basic support for using a non-default export for syntheticNamedExports (@lukastaegert)
- [#3659](https://github.com/rollup/rollup/pull/3659): Warn when implicitly using default export mode (@lukastaegert)
## 2.21.0
_2020-07-07_
### Features
- Allow plugins to disable tree-shaking for individual modules to ensure even empty modules are associated with chunks (#3663)
### Pull Requests
- [#3663](https://github.com/rollup/rollup/pull/3663): Disable treeshaking per module (@lukastaegert)
## 2.20.0
_2020-07-06_
### Features
- Support using a function to generate different chunk and asset naming patterns per chunk or asset (#3658)
- Add `referencedFiles` property to the chunk info in generateBundle to list referenced assets (#3661)
### Pull Requests
- [#3658](https://github.com/rollup/rollup/pull/3658): Add ability to use a function that returns a pattern string in all places where you could use a pattern string before (@frank-dspeed)
- [#3661](https://github.com/rollup/rollup/pull/3661): Add referenced files to bundle (@lukastaegert)
## 2.19.0
_2020-07-05_
### Features
- Allow plugins to return a Promise in the options hook (#3660)
### Pull Requests
- [#3660](https://github.com/rollup/rollup/pull/3660): Make options hooks async (@TomerAberbach)
## 2.18.2
_2020-07-02_
### Bug Fixes
- Do not remove spread element args when the corresponding positional parameter is unused (#3652)
### Pull Requests
- [#3652](https://github.com/rollup/rollup/pull/3652): Do not tree-shake arguments that contain a spread element (@lukastaegert)
## 2.18.1
_2020-06-26_
### Bug Fixes
- Make sure synthetic exports are present when a module is imported dynamically (#3648)
- Strip the `rollup-plugin-` prefix off the plugin name when looking for the plugin export in a CLI plugin without a default export (#3647)
- Convert plugin names with dashes to camel case when looking for the plugin export in a CLI plugin without a default export (#3647)
### Pull Requests
- [#3647](https://github.com/rollup/rollup/pull/3647): Strip rollup-plugin prefix to find named plugin exports, throw when export cannot be found (@lukastaegert)
- [#3648](https://github.com/rollup/rollup/pull/3648): Always create a dynamic namespace object when a module with synthetic named exports is imported dynamically (@lukastaegert)
## 2.18.0
_2020-06-22_
### Features
- `inlineDynamicImports`, `manualChunks` and `preserveModules` can now be used as output options (#3645)
- Use sourcemaps for certain warnings that reference source code locations (#3645)
### Bug Fixes
- `this.getFileName` will now always return the correct file name for chunks when multiple outputs are created (#3645)
### Pull Requests
- [#3645](https://github.com/rollup/rollup/pull/3645): Per output chunking (@lukastaegert)
## 2.17.1
_2020-06-19_
### Bug Fixes
- Properly resolve accessing properties of namespace members again (#3643)
### Pull Requests
- [#3643](https://github.com/rollup/rollup/pull/3643): Fix accessing nested properties of namespaces (@lukastaegert)
## 2.17.0
_2020-06-17_
### Features
- When importing Rollup via package.exports, always fall back to the browser ESM build for non-Node environments (#3634)
- Create more efficient code when handling namespace mutations (#3637)
### Bug Fixes
- Fix a severe performance regression when the same module is imported by a lot of modules (#3641)
- Properly escape special characters in imports (#3638)
### Pull Requests
- [#3634](https://github.com/rollup/rollup/pull/3634): Set browser build in exports (@guybedford)
- [#3637](https://github.com/rollup/rollup/pull/3637): Do not include the whole namespace when illegally mutating a namespace (@lukastaegert)
- [#3638](https://github.com/rollup/rollup/pull/3638): Support backslash escaping, retain exact newline escaping (@guybedford)
- [#3641](https://github.com/rollup/rollup/pull/3641): Fix performance regression when a file is imported by many importers (@lukastaegert)
## 2.16.1
_2020-06-13_
### Bug Fixes
- Do not produce invalid code when an external or chunk id contain quotes or line-breaks (#3632)
- Do not fail but emit a warning when mutating a namespace object (#3633)
### Pull Requests
- [#3632](https://github.com/rollup/rollup/pull/3632): Handle single quote escaping in ids (@guybedford)
- [#3633](https://github.com/rollup/rollup/pull/3633): Turn namespace assignment error into a warning (@guybedford)
## 2.16.0
_2020-06-12_
### Features
- Add support for numeric separators (#3626)
- Switch to finalized ESTree optional chaining AST (#3628)
### Pull Requests
- [#3626](https://github.com/rollup/rollup/pull/3626): Support numeric separator (@TrySound)
- [#3628](https://github.com/rollup/rollup/pull/3628): Acorn 7.3.0 upgrade (@guybedford)
- [#3631](https://github.com/rollup/rollup/pull/3631): Improve discoverability of `manualChunks` for code splitting (@zlamma)
## 2.15.0
_2020-06-08_
### Features
- Allow to skip watching some configs via `watch: false` (#3620)
- Provide the resolved sourcemap path to `sourcemapPathTransform` (#3617)
### Pull Requests
- [#3617](https://github.com/rollup/rollup/pull/3617): Update sourcemapPathTransform to also take the path to the sourcemap file as a second argument (@dgoldstein0)
- [#3620](https://github.com/rollup/rollup/pull/3620): Rollup watch only one config in exported array (@luwol03)
## 2.14.0
_2020-06-07_
### Features
- Make `this.meta.watchMode` available for plugins to detect watch mode (#3616)
### Bug Fixes
- Handle exporting the same binding with different names in SystemJS (#3575)
### Pull Requests
- [#3575](https://github.com/rollup/rollup/pull/3575): Handle some cases of duplicate export bindings (@joeljeske)
- [#3616](https://github.com/rollup/rollup/pull/3616): Make watch mode available in plugins (@lukastaegert)
## 2.13.1
_2020-06-04_
### Bug Fixes
- Prevent conflicts in SystemJS when `module` is used as a top-level variable (#3614)
### Pull Requests
- [#3614](https://github.com/rollup/rollup/pull/3614): Handle system reserved identifier dedupes (@guybedford)
## 2.13.0
_2020-06-03_
### Features
- Allow to specify that an emitted chunk is only loaded after a given module has loaded to improve chunking (#3606)
### Pull Requests
- [#3606](https://github.com/rollup/rollup/pull/3606): Enable specifying implicit dependencies when emitting chunks (@lukastaegert)
## 2.12.1
_2020-06-02_
### Bug Fixes
- Render valid imports when chunk names correspond to directory names in virtual setups (#3609)
### Pull Requests
- [#3609](https://github.com/rollup/rollup/pull/3609): Handle imports from chunks with names that correspond to parent directory names of other chunks (@guybedford)
## 2.12.0
_2020-05-31_
### Features
- Add an option `--waitForBundleInput` to let the build wait until all entry point files are available before starting (#3577)
### Pull Requests
- [#3577](https://github.com/rollup/rollup/pull/3577): Wait for bundle input option (@Heerschop)
## 2.11.2
_2020-05-28_
### Bug Fixes
- Include side-effects in the second argument of `Array.from` (#3604)
### Pull Requests
- [#3604](https://github.com/rollup/rollup/pull/3604): Mark `Array.from` as side-effectful, use two-argument Array.from when mapping Sets (@lukastaegert)
## 2.11.1
_2020-05-28_
### Bug Fixes
- Also include side-effects in files that are marked as side-effect-free if they contain an included default export that is reexported (#3602)
### Pull Requests
- [#3602](https://github.com/rollup/rollup/pull/3602): Handle side-effects next to side-effect-free default exports in case the default export is reexported (@lukastaegert)
## 2.11.0
_2020-05-27_
### Features
- Add basic support for optional chaining (#3582)
- Provide a normalized set of options with proper default values to `buildStart` and `renderStart` (#3597)
- Do not count adding properties to the prototype of an unused class as a side-effect (#3598)
- Support providing `null` for empty setters in SystemJS via option (#3592)
### Bug Fixes
- Do not fail when using a `/*#__PURE__*/` annotation inside a class field (#3599)
- Allow using `--watch` and `--treeshake` together with sub-options such as `--watch.clearScreen` on the command line (#3597)
### Pull Requests
- [#3582](https://github.com/rollup/rollup/pull/3582): Support optional chaining via acorn fork(@guybedford)
- [#3592](https://github.com/rollup/rollup/pull/3592): System format optional setters(@guybedford)
- [#3597](https://github.com/rollup/rollup/pull/3597): Provide normalized options (@lukastaegert)
- [#3598](https://github.com/rollup/rollup/pull/3598): Treeshake prototype modifications in classes (@lukastaegert)
- [#3599](https://github.com/rollup/rollup/pull/3599): Retain pure annotations in class fields (@lukastaegert)
- [#3601](https://github.com/rollup/rollup/pull/3601): Fix white-space in docs (@tu4mo)
## 2.10.9
_2020-05-24_
### Bug Fixes
- Prevent invalid exports when facades are created (#3590)
### Pull Requests
- [#3590](https://github.com/rollup/rollup/pull/3590): Prevent unneeded exports when entry facades are created and ensure all exported variables in facades are imported (@lukastaegert)
## 2.10.8
_2020-05-23_
### Bug Fixes
- Fix issues when synthetic named exports are reexported as default exports (#3586)
### Pull Requests
- [#3584](https://github.com/rollup/rollup/pull/3584): Clarify documentation for `output.paths` (@jacksteamdev)
- [#3585](https://github.com/rollup/rollup/pull/3585): Target Node.js v14 instead of v13 in Windows tests (@mangs)
- [#3586](https://github.com/rollup/rollup/pull/3586): Handle default reexports of synthetic named exports over several stages (@lukastaegert)
## 2.10.7
_2020-05-22_
### Bug Fixes
- Handle modules re-exporting namespaces without further own code (#3576)
### Pull Requests
- [#3576](https://github.com/rollup/rollup/pull/3576): Fix "cannot read exports of undefined" error (@guybedford)
## 2.10.6
_2020-05-22_
### Bug Fixes
- Fix some issues around class fields (#3580)
- Prevent a maximum call stack error when a called entity references itself in its declaration (#3581)
### Pull Requests
- [#3580](https://github.com/rollup/rollup/pull/3580): Update acorn class features (@guybedford)
- [#3581](https://github.com/rollup/rollup/pull/3581): Do not fail when including call arguments of recursively defined variables (@lukastaegert)
## 2.10.5
_2020-05-19_
### Bug Fixes
- Do not remove side-effects that may influence an included default export declaration when side-effects are disabled (#3572)
### Pull Requests
- [#3572](https://github.com/rollup/rollup/pull/3572): Observe side-effects in files containing a default export declaration that reexports a variable (@lukastaegert)
## 2.10.4
_2020-05-19_
### Bug Fixes
- Tree-shake unused classes with fields unless there are side-effects in the field declaration (#3569)
### Pull Requests
- [#3569](https://github.com/rollup/rollup/pull/3569): Make sure unused classes with fields are tree-shaken if possible (@lukastaegert)
## 2.10.3
_2020-05-18_
### Bug Fixes
- Validate return value of sourcemapPathTransform option (#3561)
### Pull Requests
- [#3561](https://github.com/rollup/rollup/pull/3561): Throw error if sourcemapPathTransform-option does not return a string (@Simonwep)
## 2.10.2
_2020-05-15_
### Bug Fixes
- Properly include calls to mutating array methods in certain scenarios (#3559)
### Pull Requests
- [#3559](https://github.com/rollup/rollup/pull/3559): Make sure UnknownFooExpressions are included when referenced as return values in a MultiExpression (@lukastaegert)
## 2.10.1
_2020-05-15_
### Bug Fixes
- Do not throw when "undefined" is used as a default export (#3558)
### Pull Requests
- [#3558](https://github.com/rollup/rollup/pull/3558): Properly handle default exporting undefined (@lukastaegert)
## 2.10.0
_2020-05-13_
### Features
- Avoid unnecessary empty imports from a facade chunk to the original chunk (#3552)
- Pin facade creation order so that if several user-defined chunks reference the same module, the first always becomes the "actual" chunk while the later ones become facades (#3552)
### Bug Fixes
- Do not omit reexports from secondary chunks when creating facades for entry points without hoisting transitive dependencies (#3552)
### Pull Requests
- [#3552](https://github.com/rollup/rollup/pull/3552): Avoid unnecessary facade dependency inlining (@guybedford)
## 2.9.1
_2020-05-11_
### Bug Fixes
- Do not create unintended live-bindings or invalid reexports when reexporting global variables (#3550)
### Pull Requests
- [#3550](https://github.com/rollup/rollup/pull/3550): Track updates of globals that are exported as default (@lukastaegert)
## 2.9.0
_2020-05-10_
### Features
- Add ids of static and dynamic imports to `this.getModuleInfo` (#3542)
- Provide `getModuleInfo` and `getModuleIds` to `manualChunks` functions (#3542)
- Add nullish coalescing support (#3548)
- Make the rebuild delay in watch mode configurable and set the default to `0` for snappy rebuilds (#3502)
- Add `this.getModuleIds` to the plugin context as future replacement for `this.moduleIds` (#3542)
### Pull Requests
- [#3502](https://github.com/rollup/rollup/pull/3502): Configurable build delay (@mattdesl)
- [#3542](https://github.com/rollup/rollup/pull/3542): Extend manualChunks API (@lukastaegert)
- [#3548](https://github.com/rollup/rollup/pull/3548): Support nullish coalescing with tree-shaking (@lukastaegert)
## 2.8.2
_2020-05-07_
### Bug Fixes
- Avoid invalid code when simplifying the body of a shorthand arrow function expression (#3540)
### Pull Requests
- [#3540](https://github.com/rollup/rollup/pull/3540): Wrap object expressions in parentheses if they become children of an arrow function expression (@lukastaegert)
## 2.8.1
_2020-05-07_
### Bug Fixes
- Allow using plugins on CLI that are exported as `exports.default` (#3529)
- Do not fail side-effect detection in nested callbacks of builtins (#3539)
### Pull Requests
- [#3529](https://github.com/rollup/rollup/pull/3529): Use default named export with plugins (@NotWoods)
- [#3539](https://github.com/rollup/rollup/pull/3539): Track call side-effects both by entity and CallExpression to avoid untracked side-effects in nested calls (@lukastaegert)
## 2.8.0
_2020-05-06_
### Features
- When a dynamically imported chunk contains more exports than the imported module namespace, do not create a facade chunk but an inline namespace (#3535)
### Bug Fixes
- Do not execute dynamically imported code before synchronous code in the importing module when generating CommonJS (#3535)
### Pull Requests
- [#3535](https://github.com/rollup/rollup/pull/3535): Avoid dynamic facade chunks (@lukastaegert)
## 2.7.6
_2020-04-30_
### Bug Fixes
- Fix a type issue when a default export references a global variable (#3526)
### Pull Requests
- [#3526](https://github.com/rollup/rollup/pull/3526): Handles default exporting global variables (@lukastaegert)
## 2.7.5
_2020-04-29_
### Bug Fixes
- Prevent infinite loop when default values of function parameters in a default export contain a slash (#3522)
### Pull Requests
- [#3522](https://github.com/rollup/rollup/pull/3522): Avoid infinite loop when finding position for id insertion in default export (@lukastaegert)
## 2.7.4
_2020-04-29_
### Bug Fixes
- Fix an issue where wrong variable names were used when preserving modules (#3521)
### Pull Requests
- [#3521](https://github.com/rollup/rollup/pull/3521): Fix and improve default export alias logic (@lukastaegert)
## 2.7.3
_2020-04-27_
### Bug Fixes
- Do not access `__proto__` when running Rollup (#3518)
### Pull Requests
- [#3518](https://github.com/rollup/rollup/pull/3518): use acorn-class-fields and acorn-static-class-features from npm (@nitsky)
## 2.7.2
_2020-04-22_
### Bug Fixes
- Prevent an infinite loop when creating separate manual chunks with circular dependencies (#3510)
- Do not fail if "super" is used in the definition of a class field (#3511)
- Throw if a plugin tries to emit a file with an absolute Windows path (#3509)
### Pull Requests
- [#3509](https://github.com/rollup/rollup/pull/3509): Ban emitFile via absolute paths on Windows OS (@SASUKE40)
- [#3510](https://github.com/rollup/rollup/pull/3510): Do not fail for circular imports between manual chunks (@lukastaegert)
- [#3511](https://github.com/rollup/rollup/pull/3511): Support "super" in class fields (@lukastaegert)
## 2.7.1
_2020-04-21_
### Bug Fixes
- Use correct path for dynamic imports if `output.paths` is used (#3508)
### Pull Requests
- [#3508](https://github.com/rollup/rollup/pull/3508): Respect output.paths in dynamic imports (@lukastaegert)
## 2.7.0
_2020-04-21_
### Features
- Add `preserveEntrySignatures` option to control how exports of entry points are handled (#3498)
- Add `preserveSignature` flag to `this.emitFile` to control exports of emitted chunks (#3498)
- Add `output.minifyInternalExports` option to control if internal exports are minified (#3498)
### Pull Requests
- [#3498](https://github.com/rollup/rollup/pull/3498): Add option to configure if entry signatures are preserved (@lukastaegert)
## 2.6.1
_2020-04-12_
### Bug Fixes
- Close watch mode when stdin closes in a non-TTY environment (#3493)
### Pull Requests
- [#3493](https://github.com/rollup/rollup/pull/3493): Ensure --watch mode exits correctly when stdin is closed (@jakesgordon)
## 2.6.0
_2020-04-10_
### Features
- Allow regular expressions to declare external modules (#3482)
### Pull Requests
- [#3482](https://github.com/rollup/rollup/pull/3482): Allow regular expressions in config.external (@johannes-z)
## 2.5.0
This version is identical to 2.4.0
## 2.4.0
_2020-04-09_
### Features
- Add support for most private and public class field features (#3488)
### Bug Fixes
- Do not replace `this` with `undefined` in class field definitions (#3488)
### Pull Requests
- [#3488](https://github.com/rollup/rollup/pull/3488): Rollup class fields support (@guybedford and @lukastaegert)
## 2.3.5
_2020-04-09_
### Bug Fixes
- Never remove labels when tree-shaking is disabled (#3492)
### Pull Requests
- [#3492](https://github.com/rollup/rollup/pull/3492): Always use a new inclusion context when including declarations of variables, always inlcude labels when not treeshaking (@lukastaegert)
## 2.3.4
_2020-04-07_
### Bug Fixes
- Handle re-exporting synthetic exports from entry-points (#3319)
- Fix cross-chunk imports of synthetic exports (#3319)
- Handle namespace objects that contain re-exported synthetic namespaces (#3319)
### Pull Requests
- [#3319](https://github.com/rollup/rollup/pull/3319): Handle re-exports of synthetic named exports (@manucorporat and @lukastaegert)
## 2.3.3
_2020-04-04_
### Bug Fixes
- Add external namespaces to dynamic namespace objects (#3474)
### Pull Requests
- [#3474](https://github.com/rollup/rollup/pull/3474): Support external star exports on namespace objects (@guybedford)
## 2.3.2
_2020-03-31_
### Bug Fixes
- Only warn but do not fail build when a namespace is called as a function (#3475)
- Make sure pre-existing sourcemap comments are also removed when rebuilding using the cache (#3476)
### Pull Requests
- [#3475](https://github.com/rollup/rollup/pull/3475): Call namespace error as a warning (@guybedford)
- [#3476](https://github.com/rollup/rollup/pull/3476): Store locations for removed comments in cache (@lukastaegert)
## 2.3.1
_2020-03-30_
### Bug Fixes
- Do not fail if the config file returns an function returning a Promise (#3472)
### Pull Requests
- [#3472](https://github.com/rollup/rollup/pull/3472): Fix support for async functions as config (@lukastaegert)
## 2.3.0
_2020-03-29_
### Features
- Do not transpile config files with `.mjs` extension in Node 13+ or `.cjs` extension in any Node version and load them appropriately (#3445)
- Extract helper to load a config file the way rollup does it via `rollup/dist/loadConfigFile` (#3445)
### Bug Fixes
- Keep watching the config file if an error occurs during initial load in watch node (#3445)
- Add a helpful error message when using a transpiled config in a repository with "type": "module" (#3445)
### Pull Requests
- [#3445](https://github.com/rollup/rollup/pull/3445): Support native ESM configs in Node 13, support untranspiled configs (@lukastaegert)
- [#3468](https://github.com/rollup/rollup/pull/3468): Don't use esm output format alias in the documentation (@vsn4ik)
## 2.2.0
_2020-03-24_
### Features
- Add `renderDynamicImport` hook to rewrite dynamic import expressions (#3449)
- Add information about dynamically imported modules to `this.getModuleInfo` (#3449)
### Bug Fixes
- Make file emission work with Uin8Array sources when using Rollup in the browser (#3452)
- Fix types to allow watch to accept an array of configs (#3453)
- Do not strip `.js` extensions from AMD imports when the import is a user-supplied replacement for a non-resolvable dynamic import target (#3453)
### Pull Requests
- [#3449](https://github.com/rollup/rollup/pull/3449): Add hook to rewrite dynamic import expressions (@lukastaegert)
- [#3452](https://github.com/rollup/rollup/pull/3452): Avoid the assumption of Buffer in browser envs (@JoviDeCroock)
- [#3453](https://github.com/rollup/rollup/pull/3453): fix types since watch accepts single or array config (@lukeed)
- [#3456](https://github.com/rollup/rollup/pull/3456): fix SystemJS url in tutorial (@guybedford)
## 2.1.0
_2020-03-18_
### Features
- Allow specifying an importer when emitting files to resolve relative ids (#3442)
### Pull Requests
- [#3442](https://github.com/rollup/rollup/pull/3442): Add optional `importer` parameter to `this.emitFile` (@lukastaegert)
## 2.0.6
_2020-03-13_
### Bug Fixes
- Do not use file names from different outputs when generating sourcemaps using the `dir` option (#3440)
### Pull Requests
- [#3440](https://github.com/rollup/rollup/pull/3440): Use correct file names when writing sourcemaps for multiple outputs (@lukastaegert)
## 2.0.5
_2020-03-12_
### Bug Fixes
- Fix an issue where conditional statements would assume they have the wrong test value (#3438)
### Pull Requests
- [#3438](https://github.com/rollup/rollup/pull/3438): Make sure logical expressions always check the left argument for side-effects (@lukastaegert)
## 2.0.4
_2020-03-12_
### Bug Fixes
- Avoid conflicts between namespace imports when preserving modules (#3435)
### Pull Requests
- [#3435](https://github.com/rollup/rollup/pull/3435): Deconflict multiple `index` imports for ES format using nested export star statements (@kamranayub)
## 2.0.3
_2020-03-10_
### Bug Fixes
- Add type for this.getCombinedSourcemap to transform context (#3431)
### Pull Requests
- [#3377](https://github.com/rollup/rollup/pull/3377): Switch to yargs-parser lib (@jamesgeorge007)
- [#3426](https://github.com/rollup/rollup/pull/3426): Use strict types with PluginDriver (@NotWoods)
- [#3431](https://github.com/rollup/rollup/pull/3431): Add missing type declaration for getCombinedSourcemap (@Anidetrix)
- [#3432](https://github.com/rollup/rollup/pull/3432): Detail how return values from `augmentChunkHash` are used (@jakearchibald)
## 2.0.2
_2020-03-07_
### Bug Fixes
- Make sure the ESM import still works (#3430)
### Pull Requests
- [#3430](https://github.com/rollup/rollup/pull/3430): Fix conditional exports again (@lukastaegert)
## 2.0.1
_2020-03-07_
### Bug Fixes
- Reenable importing rollup in Node 13.0 - 13.7 (#3428)
### Pull Requests
- [#3428](https://github.com/rollup/rollup/pull/3428): Fix conditional exports in Node 13.0 - 13.7 (@lukastaegert)
## 2.0.0
_2020-03-06_
### Breaking Changes
- Rollup now requires at least Node 10 to run, or a sufficiently modern browser (#3346)
- The file structure of Rollup's ESM builds has changed:
- The main ESM entry point is now at `rollup/dist/es/rollup.js` instead of `rollup/dist/rollup.es.js`
- The ESM browser build is at `rollup/dist/es/rollup.browser.js` instead of `rollup/dist/rollup.browser.es.js`
In general, the ESM builds now follow the same naming scheme as the CJS builds but are located in the `rollup/dist/es` subfolder instead of `rollup/dist` (#3391)
- The "watch.chokidar" option no longer accepts a `boolean` value but only an object of parameters that is passed to the bundled Chokidar instance. Chokidar installations by the user will be ignored in favour of the bundled instance (#3331)
- Modules that are completely tree-shaken will no longer be listed as part of any chunks in `generateBundle`
- The `experimentalOptimizeChunks` and `chunkGroupingSize` options have been removed
- [acorn](https://github.com/acornjs/acorn) plugins can only be used if they accept a passed-in acorn instance instead of importing it themselves. See https://github.com/acornjs/acorn/pull/870#issuecomment-527339830 for what needs to be done to make plugins compatible that do not support this yet (#3391)
- Emitted chunks now have the TypeScript type `Uint8Array` instead of `Buffer`. A `Buffer` can still be used, though (#3395)
- The TypeScript types no longer use ESTree types for AST nodes but a very generic type that does not contain information specific to certain node types (#3395)
- The signature of the `writeBundle` plugin hook has been changed to match `generateBundle`: The bundle object is now passed as second parameter instead of first and the first parameter is the output options (#3361)
- The following plugin hooks have been removed:
- ongenerate: use `generateBundle` instead
- onwrite: use `writeBundle` instead
- transformBundle: use `renderChunk` instead
- transformChunk: use `renderChunk` instead
- You can no longer access `this.watcher` on the plugin context.
- The `transform` hook can no longer return `dependencies`.
- The `treeshake.pureExternalModules` option will now show a deprecation warning when used: use `treeshake.moduleSideEffects: 'no-external'` instead
- Using `import.meta.ROLLUP_ASSET_URL_<..>` and `import.meta.ROLLUP_CHUNK_URL_<..>` in code will now show warnings: use `import.meta.ROLLUP_FILE_URL_<..>` instead
- The `resolveAssetUrl` hook will now show a deprecation warning when used: use `resolveFileUrl` instead
- The following plugin context functions will show warnings when used:
- `this.emitAsset`: use `this.emitFile`
- `this.emitChunk`: use `this.emitFile`
- `this.getAssetFileName`: use `this.getFileName`
- `this.getChunkFileName`: use `this.getFileName`
- `this.isExternal`: use `this.resolve`
- `this.resolveId`: use `this.resolve`
- Directly adding properties to the bundle object in the `generateBundle` is deprecated will show a warning (removing properties is allowed, though): Use `this.emitFile`
- Accessing `chunk.isAsset` on the bundle is deprecated: Use `chunk.type === 'asset'` instead
- The error code for a missing `name` property when targeting UMD has been changed to `MISSING_NAME_OPTION_FOR_IIFE_EXPORT` to emphasize this is needed for the IIFE part of UMD (#3393)
### Features
- Rollup now bundles [Chokidar](https://github.com/paulmillr/chokidar) for a better watch experience (#3331)
- Rollup now bundles [acorn](https://github.com/acornjs/acorn) again, removing its only external dependency (#3391)
- Do not consider empty imports from side-effect-free modules for chunking and hoist side-effect imports if necessary (#3369)
- Rollup can now be imported as an ES module in Node via `import {rollup} from 'rollup'`. Note that this relies on Node's experimental [conditional package exports](https://nodejs.org/dist/latest-v13.x/docs/api/esm.html#esm_conditional_exports) feature and is therefore itself experimental (#3391)
- `systemjs` can be used as format alias for `system` (#3381)
### Bug Fixes
- Unknown output options now trigger a warning when using the JavaScript API (#3352)
- Rollup will no longer introduce Node types into TypeScript projects that do not use them (#3395)
- Generate correct sourcemaps when tree-shaking occurs in a multi-file bundle (#3423)
### Pull Requests
- [#3331](https://github.com/rollup/rollup/pull/3331): Bundle Chokidar (@lukastaegert)
- [#3343](https://github.com/rollup/rollup/pull/3343): Remove experimentalOptimizeChunks (@lukastaegert)
- [#3346](https://github.com/rollup/rollup/pull/3346): Update minimum required Node version to 10 (@lukastaegert)
- [#3352](https://github.com/rollup/rollup/pull/3352): Remove active deprecations (@lukastaegert)
- [#3361](https://github.com/rollup/rollup/pull/3361): Change writeBundle signature to match generateBundle (@lukastaegert)
- [#3369](https://github.com/rollup/rollup/pull/3369): Avoid empty imports from side-effect-free chunks (@lukastaegert)
- [#3381](https://github.com/rollup/rollup/pull/3381): Rename esm to es everywhere, add systemjs alias (@lukastaegert)
- [#3391](https://github.com/rollup/rollup/pull/3391): Bundle acorn, allow importing Rollup as Node ES module, update dependencies (@lukastaegert)
- [#3393](https://github.com/rollup/rollup/pull/3393): Better error code for name-less umd bundle (@rail44)
- [#3395](https://github.com/rollup/rollup/pull/3395): Remove `@types` dependencies (@lukastaegert)
- [#3423](https://github.com/rollup/rollup/pull/3423): Update magic-string and fix sourcemaps (@lukastaegert)
## 1.32.1
_2020-03-06_
### Bug Fixes
- Handle default export detection for AMD and IIFE externals that do not have a prototype (#3420)
- Handle missing whitespace when the else branch of an if-statement is simplified (#3421)
- Mention the importing module when reporting errors for missing named exports (#3401)
- Add code to warning for missing output.name of IIFE bundles (#3372)
### Pull Requests
- [#3372](https://github.com/rollup/rollup/pull/3372): Add warning code for missing output.name of IIFE bundle that has export (@rail44)
- [#3401](https://github.com/rollup/rollup/pull/3401): Missing exports errors now print the importing module (@timiyay)
- [#3418](https://github.com/rollup/rollup/pull/3418): Structure lifecycle hooks, add links to build time hooks (@lukastaegert)
- [#3420](https://github.com/rollup/rollup/pull/3420): Update generated code of getInteropBlock() to work with null prototype objects (@jdalton)
- [#3421](https://github.com/rollup/rollup/pull/3421): Avoid invalid code when "else" branch is simplified (@lukastaegert)
## 1.32.0
_2020-02-28_
### Features
- Allow adding plugins on the command line via `--plugin <plugin>` (#3379)
### Pull Requests
- [#3379](https://github.com/rollup/rollup/pull/3379): introduce CLI --plugin support (@kzc)
- [#3390](https://github.com/rollup/rollup/pull/3390): fix typo: this.addWatchfile (@mistlog)
- [#3392](https://github.com/rollup/rollup/pull/3392): Bump codecov from 3.6.1 to 3.6.5
- [#3404](https://github.com/rollup/rollup/pull/3404): Update resolveFileUrl docs (@jakearchibald)
## 1.31.1
_2020-02-14_
### Bug Fixes
- Make sure errored files are always re-evaluated in watch mode to avoid an issue in the typescript plugin (#3388)
### Pull Requests
- [#3366](https://github.com/rollup/rollup/pull/3366): Correct spelling minifaction to minification (@VictorHom)
- [#3371](https://github.com/rollup/rollup/pull/3371): Adjust bug template to mention REPL.it (@lukastaegert)
- [#3388](https://github.com/rollup/rollup/pull/3388): Run transform hooks again in watch mode on files that errored (@lukastaegert)
## 1.31.0
_2020-01-31_
### Features
- Always disable tree-shaking for asm.js functions to maintain semantics (#3362)
### Pull Requests
- [#3362](https://github.com/rollup/rollup/pull/3362): Preserve asm.js code (@lukastaegert)
## 1.30.1
_2020-01-27_
### Bug Fixes
- Do not mistreat static entgry points as dynamic ones when chunking (#3357)
- Resolve a crash when chunking circular dynamic imports (#3357)
### Pull Requests
- [#3357](https://github.com/rollup/rollup/pull/3357): Resolve issues with circular dynamic entries (@lukastaegert)
## 1.30.0
_2020-01-27_
### Features
- Do not split chunks when dynamically imported modules import modules that are already loaded by all dynamic importers (#3354)
- Add `hoistTransitiveImports` option to disable hoisting imports of static dependencies into entry chunks (#3353)
### Bug Fixes
- Make sure polyfills are always loaded first when each static entry point contains them as first import (#3354)
### Pull Requests
- [#3353](https://github.com/rollup/rollup/pull/3353): Add option to avoid hoisting transitive imports (@lukastaegert)
- [#3354](https://github.com/rollup/rollup/pull/3354): Improve chunking algorithm for dynamic imports (@tjenkinson and @lukastaegert)
## 1.29.1
_2020-01-21_
### Bug Fixes
- Avoid crashes for circular reexports when named exports cannot be found (#3350)
### Pull Requests
- [#3335](https://github.com/rollup/rollup/pull/3335): Fix typo (@robbinworks)
- [#3342](https://github.com/rollup/rollup/pull/3342): Remove ":" from test file names for Windows and update dependencies (@lukastaegert)
- [#3350](https://github.com/rollup/rollup/pull/3350): Properly handle circular reexports (@lukastaegert)
## 1.29.0
_2020-01-08_
### Features
- Enable top-level await by default (#3089)
- Add typings for watch events (#3302)
### Bug Fixes
- Deconflict files that would conflict only on a case-insensitive OS (#3317)
- Do not fail in certain scenarios where a logical expression inside a sequence expression was being directly included (#3327)
### Pull Requests
- [#3089](https://github.com/rollup/rollup/pull/3089): Move top-level await out of experimental (@guybedford)
- [#3302](https://github.com/rollup/rollup/pull/3302): Adds type definitions for RollupWatcher events (@NotWoods)
- [#3317](https://github.com/rollup/rollup/pull/3317): Fix module id conflict on a case insensitive OS (@yesmeck)
- [#3327](https://github.com/rollup/rollup/pull/3327): Handle deoptimizations while a node is being included (@lukastaegert)
## 1.28.0
_2020-01-04_
### Features
- Allow piping in stdin via the command line interface (#3312, #3290)
- Allow plugins to mark modules as having syntheticNamedExports for e.g. better CJS interoperability (#3295)
- Ignore variable reassignments in dead code when tree-shaking to remove more unneeded code (#3212)
### Bug Fixes
- Properly respect tree-shaken code when generating sourcemaps (#3318)
### Pull Requests
- [#3212](https://github.com/rollup/rollup/pull/3212): Handle assignments in dead code (@tjenkinson)
- [#3290](https://github.com/rollup/rollup/pull/3290): Implement stdin input with optional "-" as the file name (@kzc)
- [#3295](https://github.com/rollup/rollup/pull/3295): Add syntheticNamedExports (@manucorporat)
- [#3300](https://github.com/rollup/rollup/pull/3300): Add note about setting `types` in tsconfig file (@tjenkinson)
- [#3303](https://github.com/rollup/rollup/pull/3303): Use ! to assert not-null in TypeScript (@NotWoods)
- [#3312](https://github.com/rollup/rollup/pull/3312): Implement stdin input (@lukastaegert)
- [#3318](https://github.com/rollup/rollup/pull/3318): Update magic-string and other dependencies (@lukastaegert)
## 1.27.14
_2019-12-22_
### Bug Fixes
- Update references to official rollup plugins in error messages (#3297, #3298)
### Pull Requests
- [#3286](https://github.com/rollup/rollup/pull/3286): Update link to JavaScript API documentation (@romankaravia)
- [#3294](https://github.com/rollup/rollup/pull/3294): Update deprecated references to the node-resolve plugin in the documentation (@Vlad-Shcherbina)
- [#3297](https://github.com/rollup/rollup/pull/3297): Update references to rollup-plugin-json (@cprecioso)
- [#3298](https://github.com/rollup/rollup/pull/3298): Update references to official rollup plugins (@cprecioso)
## 1.27.13
_2019-12-14_
### Bug Fixes
- Do not truncate environment variable values at the first colon when using the `--environment` option (#3283)
### Pull Requests
- [#3283](https://github.com/rollup/rollup/pull/3283): Allow environment variables to contain colons (@tlaverdure)
## 1.27.12
_2019-12-13_
### Bug Fixes
- Prevent invalid AMD or SystemJS code when accessing `import.meta` (#3282)
### Pull Requests
- [#3282](https://github.com/rollup/rollup/pull/3282): Always make "module" available for SystemJS and AMD formats if `import.meta` is accessed directly (@lukastaegert)
## 1.27.11
_2019-12-12_
### Bug Fixes
- Resolve a crash due to an infinite loop (#3280)
### Pull Requests
- [#3280](https://github.com/rollup/rollup/pull/3280): Prevent infinite deoptimizations (@lukastaegert)
## 1.27.10
_2019-12-11_
### Bug Fixes
- Keep track of function return values in more situations (#3278)
### Pull Requests
- [#3278](https://github.com/rollup/rollup/pull/3278): Avoid some unnecessary value tracking deoptimizations (@lukastaegert)
## 1.27.9
_2019-12-07_
### Bug Fixes
- Fix an issue where reexports could be missing when preserving modules (#3273)
- Allow turning of color output via NO_COLOR or FORCE_COLOR=0 environment variables (#3272)
### Pull Requests
- [#3272](https://github.com/rollup/rollup/pull/3272): Support either NO_COLOR or FORCE_COLOR=0 to turn off color (@kikonen)
- [#3273](https://github.com/rollup/rollup/pull/3273): Make sure that indirectly reexported modules also become chunk dependencies when preserving modules(@lukastaegert)
## 1.27.8
_2019-12-02_
### Bug Fixes
- Deoptimize objects when a method is called on them to make sure modifications via "this" are observed (#3266)
### Pull Requests
- [#3266](https://github.com/rollup/rollup/pull/3266): Workaround for various object literal mutation bugs (@kzc)
## 1.27.7
_2019-12-01_
### Bug Fixes
- Fix a scenario where a reassignments to computed properties were not tracked (#3267)
### Pull Requests
- [#3267](https://github.com/rollup/rollup/pull/3267): Fix incomplete computed property deoptimization (@lukastaegert)
## 1.27.6
_2019-11-30_
### Bug Fixes
- Use "auto" export mode by default for all modules when preserving modules (#3265)
- Observe "output.exports" when preserving modules and warn for mixed exports if necessary (#3265)
### Pull Requests
- [#3265](https://github.com/rollup/rollup/pull/3265): Use export mode "auto" by default when preserving modules (@lukastaegert)
## 1.27.5
_2019-11-25_
### Bug Fixes
- Make sure namespaces for inlined dynamic imports are treated as variable accesses when deconflicting (#3256)
### Pull Requests
- [#3256](https://github.com/rollup/rollup/pull/3256): Avoid name conflicts when inlining dynamic imports nested in functions (@lukastaegert)
- [#3257](https://github.com/rollup/rollup/pull/3257): Update dependencies (@lukastaegert)
## 1.27.4
_2019-11-22_
### Bug Fixes
- Aggregate circular dependency warnings in the CLI (#3249)
- Do not defer non-aggregated handlers in the CLI (#3249)
### Pull Requests
- [#3249](https://github.com/rollup/rollup/pull/3249): Fix broken Windows CLI tests (@lukastaegert)
- [#3251](https://github.com/rollup/rollup/pull/3251): Add installation as a separate header (@ashrith-kulai)
## 1.27.3
_2019-11-20_
### Bug Fixes
- Provide better warning when empty chunks are created in a code-splitting scenario (#3244)
### Pull Requests
- [#3244](https://github.com/rollup/rollup/pull/3244): Clearer empty chunk warning (@tjenkinson)
## 1.27.2
_2019-11-18_
### Bug Fixes
- Fix an issue where live bindings were not working correctly when using `+=` in SystemJS (#3242)
### Pull Requests
- [#3242](https://github.com/rollup/rollup/pull/3242): Export updated assignments when using shorthand update assignment expressions in SystemJS (@lukastaegert)
## 1.27.1
_2019-11-18_
### Bug Fixes
- Fix an issue where code after a switch-statement with removed cases was erroneously not included (#3241)
### Pull Requests
- [#3237](https://github.com/rollup/rollup/pull/3237): make `acornOptions` optional in `parse()` in docs (@tjenkinson)
- [#3240](https://github.com/rollup/rollup/pull/3240): Update dependencies and fix vulnerability (@lukastaegert)
- [#3241](https://github.com/rollup/rollup/pull/3241): Do not truncate after switch-statement with removed case (@lukastaegert)
## 1.27.0
_2019-11-12_
### Features
- Add support for output-specific plugins (#3218)
- Reenable parallel output processing when using the CLI (#3218)
- Warn if files are emitted that would overwrite previously emitted files (#3218)
### Bug Fixes
- Do not overwrite files emitted in other builds if outputs are generated in parallel (#3218)
### Pull Requests
- [#3218](https://github.com/rollup/rollup/pull/3218): Per output plugins (@lukastaegert)
## 1.26.5
_2019-11-11_
### Bug Fixes
- Fix a regression where it was no longer to pass a certain option format to generate (#3223)
### Pull Requests
- [#3223](https://github.com/rollup/rollup/pull/3223): Allow passing input options to output (@lukastaegert)
## 1.26.4
_2019-11-09_
### Bug Fixes
- Keep watching known files after a plugin error during the initial build (#3219)
### Pull Requests
- [#3216](https://github.com/rollup/rollup/pull/3216): Fix small typo (@kaisermann)
- [#3217](https://github.com/rollup/rollup/pull/3217): Update dependencies and fix security vulnerability (@lukastaegert)
- [#3219](https://github.com/rollup/rollup/pull/3219): Also recover from plugin errors during the initial build (@lukastaegert)
## 1.26.3
_2019-11-02_
### Bug Fixes
- Work around an incompatibility with rollup-plugin-dts (#3211)
### Pull Requests
- [#3211](https://github.com/rollup/rollup/pull/3211): Do no fail if the source attribute is `undefined` in an unused named export (@lukastaegert)
## 1.26.2
_2019-10-31_
### Bug Fixes
- Do not create invalid code when using `treeshake: false` and star re-exports (#3209)
### Pull Requests
- [#3209](https://github.com/rollup/rollup/pull/3209): Also remove export-all declarations when not tree-shaking (@lukastaegert)
## 1.26.1
_2019-10-31_
### Bug Fixes
- Prevent an issue where outputs would overwrite files emitted by other outputs (#3201)
- Do not throw an error if the config file does not have a .js extension (#3204)
### Pull Requests
- [#3201](https://github.com/rollup/rollup/pull/3201): Make the CLI run generate/output in serial (@marijnh)
- [#3204](https://github.com/rollup/rollup/pull/3204): support all config file extensions (.js,.mjs,...) (@arlac77)
## 1.26.0
_2019-10-27_
### Features
- Only warn when no output is provided for an IIFE bundle but still produce valid code (#3181)
- Support reexporting namespaces as a binding (#3193)
- Switch from hash.js to crypto for hashing in the Node build for better performance and support for very large assets (#3194)
### Bug Fixes
- Correctly handle chunks reexporting the same namespace as two different bindings (#3193)
### Pull Requests
- [#3181](https://github.com/rollup/rollup/pull/3181): Remove the need to provide an output name for IIFE bundles (@bterrier)
- [#3193](https://github.com/rollup/rollup/pull/3193): Add support for "export \* as name from …" (@lukastaegert)
- [#3194](https://github.com/rollup/rollup/pull/3194): Add support for large assets (> 100 MB) (@SebastianNiemann)
## 1.25.2
_2019-10-23_
### Bug Fixes
- Improve performance of bundled UMD code by adding additional parentheses to enforce eager parsing (#3183)
- Improve types to tolerate passing a Rollup config with multiple outputs to `rollup.rollup` (#3184)
### Pull Requests
- [#3183](https://github.com/rollup/rollup/pull/3183): Add parentheses to factory function of UMD bundles (@ajihyf)
- [#3184](https://github.com/rollup/rollup/pull/3184): RollupOptions accept output as array (@imcotton)
## 1.25.1
_2019-10-20_
### Bug Fixes
- Handle a situation where code was not included after a switch statement (#3178)
- Handle a situation where code was not included after a do-while loop (#3180)
- Do not fail if different outputs emit the same file (#3175)
- Give access to the original acorn error for parse errors (#3176)
### Pull Requests
- [#3175](https://github.com/rollup/rollup/pull/3175): Disable errors for duplicate emitted file names (@marijnh)
- [#3176](https://github.com/rollup/rollup/pull/3176): Add original parser error to rollup error; Update tests (@gribnoysup)
- [#3178](https://github.com/rollup/rollup/pull/3178): Fix switch case not being included correctly (@lukastaegert)
- [#3179](https://github.com/rollup/rollup/pull/3179): Update dependencies (@lukastaegert)
- [#3180](https://github.com/rollup/rollup/pull/3180): Handle conditional breaks in do-while loops with unconditional return (@lukastaegert)
## 1.25.0
_2019-10-18_
### Features
- Remove try-catch if there is no side-effect in the try-block (#3166)
- Omit side-effect-free trailing cases in switch-statements (#3166)
- Remove unused labels (#3170)
### Bug Fixes
- Do not remove code after labeled statements that contain a throw or return if the label is used (#3170)
- Prevent invalid code when expressions are simplified that do not follow a white-space character (#3173)
- Do not remove continue statements inside switch statements (#3166)
- Prevent trailing empty lines when tree-shaking inside switch statements (#3166)
### Pull Requests
- [#3166](https://github.com/rollup/rollup/pull/3166): Better try statement tree shaking (@lukastaegert)
- [#3170](https://github.com/rollup/rollup/pull/3170): Handle optional control flow in labeled statements, remove unused labels (@lukastaegert)
- [#3173](https://github.com/rollup/rollup/pull/3173): Add missing spaces in certain statements and expressions to avoid invalid code (@lukastaegert)
## 1.24.0
_2019-10-15_
### Features
- Respect `break`, `continue`, `return` and `throw` when tree-shaking to detect dead code (#3153)
- Do treat treat hoisted function declarations as "unknown" when checking for call side-effects (#3153)
### Bug Fixes
- Make sure that unknown `import.meta` properties produce valid code in SystemJS (#3152)
- Make sure `treeshake.annotations: false` is respected for class instantiation (#3153)
- Check property access side-effects for class instantiation (#3153)
- Do not suppress break statements inside labeled statements (#3153)
### Pull Requests
- [#3152](https://github.com/rollup/rollup/pull/3152): Allow import.meta.\* for systemjs format (@dmail)
- [#3153](https://github.com/rollup/rollup/pull/3153): Get rid of immutable.js and implement tree-shaking for broken control flow (@lukastaegert)
## 1.23.1
_2019-10-05_
### Bug Fixes
- Fix a regression where the node types had a specific minimal version (#3143)
### Pull Requests
- [#3143](https://github.com/rollup/rollup/pull/3143): Ensure that types packages have star version ranges (@lukastaegert)
## 1.23.0
_2019-10-03_
### Features
- Add placeholders for extensions when preserving modules (#3116)
### Pull Requests
- [#3116](https://github.com/rollup/rollup/pull/3116): Include extensions in preserveModules output filenames for scriptified assets (@Andarist)
- [#3142](https://github.com/rollup/rollup/pull/3142): Fix typo (@tu4mo)
## 1.22.0
_2019-09-29_
### Features
- Add a new "hidden" sourcemap type that generates the map files but omits the sourcemap comment (#3120)
- Generate more efficient code when using `namespaceToStringTag: true` (#3135)
- Make sure namespace objects do not have a prototype (#3136)
### Bug Fixes
- Do not ignore side-effectful iterators by always preserving for..of loops for now (#3132)
- Make sure `--context` is observed as a CLI option (#3134)
- Do not require specific versions for @types dependencies (#3131)
### Pull Requests
- [#3120](https://github.com/rollup/rollup/pull/3120): Generate sourcemaps but omit the comment (@rohitmohan96)
- [#3131](https://github.com/rollup/rollup/pull/3131): Use asterisk for @types/\* dependencies (@frenzzy)
- [#3132](https://github.com/rollup/rollup/pull/3132): Preserve empty for...of loops (@imatlopez)
- [#3133](https://github.com/rollup/rollup/pull/3133): Update dependencies (@lukastaegert)
- [#3134](https://github.com/rollup/rollup/pull/3134): Wire up --context CLI flag (@tchetwin)
- [#3135](https://github.com/rollup/rollup/pull/3135): Remove Symbol polyfill in module namespaces (@mkubilayk)
- [#3136](https://github.com/rollup/rollup/pull/3136): Set null prototype on namespace objects (@rpamely)
## 1.21.4
_2019-09-16_
### Bug Fixes
- Recognize common browser globals (#3117)
- Do not treat "typeof <global>" as a side-effect (#3117)
### Pull Requests
- [#3117](https://github.com/rollup/rollup/pull/3117): Add browser globals to known globals and prevent "typeof" side-effects (@lukastaegert)
## 1.21.3
_2019-09-14_
### Bug Fixes
- Fix a regression where modifying a watched file did not trigger a rebuild (#3112)
### Pull Requests
- [#3112](https://github.com/rollup/rollup/pull/3112): Fix .addWatchFile() dependencies failing to invalidate in watch mode (@tivac)
## 1.21.2
_2019-09-09_
### Bug Fixes
- Fix wrong deprecation message to direct to `this.emitFile` instead of `this.emitAsset`
## 1.21.1
_2019-09-09_
### Bug Fixes
- Allow legacy plugins to still add assets directly to the bundle object (#3105)
### Pull Requests
- [#3105](https://github.com/rollup/rollup/pull/3105): Allow legacy plugins to still add assets directly to the bundle object (@lukastaegert)
## 1.21.0
_2019-09-08_
### Features
- Respect `output.entryFileNames` when preserving modules (#3088)
- Make accessing unknown globals a side-effect unless this is deactivated via `treeshake.unknownGlobalSideEffects` (#3068)
- Respect global objects when checking for pure global functions (#3068)
- Introduce a `type` to more easily distinguish chunks and assets in the output bundle (#3080)
### Bug Fixes
- Recover in watch mode when the initial build fails (#3081)
- Make sure `output.strict` is respected for SystemJS output (#3101)
### Pull Requests
- [#3068](https://github.com/rollup/rollup/pull/3068): Make accessing unknown globals a side-effect (@lukastaegert)
- [#3080](https://github.com/rollup/rollup/pull/3080): OutputBundle Tagged union with 'type = chunk|asset' (@askbeka)
- [#3081](https://github.com/rollup/rollup/pull/3081): Watch files onbuild, even if build fails (@mhkeller)
- [#3088](https://github.com/rollup/rollup/pull/3088): Add support for entryFileNames pattern used in combination with preserveModules option (@Andarist)
- [#3101](https://github.com/rollup/rollup/pull/3101): Remove 'use strict'; from systemjs when strict=false (@askbeka)
## 1.20.3
_2019-08-28_
### Bug Fixes
- Make sure file hashes change when a change of the naming pattern leads to a file name change of a dependency (#3083)
- Fix several issues where reexporting an external "default" export could lead to invalid or incorrect code (#3084)
### Pull Requests
- [#3078](https://github.com/rollup/rollup/pull/3078): Add github actions workflow config for windows (@shellscape)
- [#3083](https://github.com/rollup/rollup/pull/3083): Properly reflect dependency file names in hash (@lukastaegert)
- [#3084](https://github.com/rollup/rollup/pull/3084): Fix "default" reexport issues in non ESM/System formats (@lukastaegert)
## 1.20.2
_2019-08-25_
### Bug Fixes
- Avoid an issue where circular namespace reexports would crash Rollup (#3074)
### Pull Requests
- [#3077](https://github.com/rollup/rollup/pull/3077): Handle namespaces that reexport themselves (@lukastaegert)
## 1.20.1
_2019-08-22_
### Bug Fixes
- Fix an issue where variable names inside dynamic import expressions were not rendered correctly (#3073)
- Fix type definition to allow a single watcher config as well as an array (#3074)
### Pull Requests
- [#3073](https://github.com/rollup/rollup/pull/3073): Fix wrong variable name in import expression (@lukastaegert)
- [#3074](https://github.com/rollup/rollup/pull/3074): Fixes type definition on watch and Watcher constructor (@MicahZoltu)
## 1.20.0
_2019-08-21_
### Features
- Add augmentChunkHash plugin hook to be able to reflect changes in renderChunk in the chunk hash (#2921)
### Bug Fixes
- Do not mutate the acorn options object (#3051)
- Make sure the order of emitted chunks always reflects the order in which they were emitted (#3055)
- Do not hang when there are strings containing comment-like syntax in some scenarios (#3069)
### Pull Requests
- [#2921](https://github.com/rollup/rollup/pull/2921): Add augmentChunkHash plugin hook (@isidrok)
- [#2995](https://github.com/rollup/rollup/pull/2995): Add info on installing locally to docs (@mesqueeb)
- [#3037](https://github.com/rollup/rollup/pull/3037): Refresh pull request labels (@shellscape)
- [#3048](https://github.com/rollup/rollup/pull/3048): Document ROLLUP_WATCH environment variable (@shellscape)
- [#3051](https://github.com/rollup/rollup/pull/3051): Avoid changes to the original options (.acorn) object (@LongTengDao)
- [#3052](https://github.com/rollup/rollup/pull/3052): Minor refactoring: Remove one try-catch (@KSXGitHub)
- [#3053](https://github.com/rollup/rollup/pull/3053): Refactor to use async-await in more places (@KSXGitHub)
- [#3055](https://github.com/rollup/rollup/pull/3055): Provide consistent chunking via a consistent order of entry modules when emitting chunks (@lukastaegert)
- [#3058](https://github.com/rollup/rollup/pull/3058): Remove acorn-bigint and acorn-dynamic-import from bundle (@LongTengDao)
- [#3061](https://github.com/rollup/rollup/pull/3061): Update to acorn@7 (@lukastaegert)
- [#3063](https://github.com/rollup/rollup/pull/3063): Auto-generate license file (@lukastaegert)
- [#3069](https://github.com/rollup/rollup/pull/3069): Prevent infinite loop when scanning for line-breaks and there are comment-like strings (@lukastaegert)
## 1.19.4
_2019-08-07_
### Bug Fixes
- Prevent invalid code when exporting an external namespace (#3034)
- Prevent invalid or non-equivalent code when simplifying expressions in return and throw statements (#3035)
### Pull Requests
- [#3034](https://github.com/rollup/rollup/pull/3034): Avoid generating .\* as export (@LongTengDao)
- [#3035](https://github.com/rollup/rollup/pull/3035): Prevent ASI errors for conditional expressions (@lukastaegert)
- [#3036](https://github.com/rollup/rollup/pull/3036): Fix documents to use https, not http (@giraffate)
## 1.19.3
_2019-08-06_
### Bug Fixes
- Fix wrong URLs in error messages (#3033)
### Pull Requests
- [#3033](https://github.com/rollup/rollup/pull/3033): Fix wrong URLs in error messages (@giraffate)
## 1.19.2
_2019-08-05_
### Bug Fixes
- Add bin file to package
## 1.19.1
_2019-08-05_
### Bug Fixes
- Remove wrong extension in package.json file (#3031)
### Pull Requests
- [#3031](https://github.com/rollup/rollup/pull/3031): Fix wrong extension (@lukastaegert)
## 1.19.0
_2019-08-05_
### Features
- Implement a new unified file emission API for assets and chunks with support for explicit file names (#2999)
- Use the id of the last module in a chunk as base for the chunk name if no better name is available (#3025)
- Use the id of the last module in a chunk as base for the variable name of a chunk in some formats if no better name is available (#2999)
### Bug Fixes
- Do not produce invalid variable names if an empty name is chosen for a virtual module (#3026)
- Fix an issue where a module variable name would conflict with a local variable name in some formats (#3020)
### Pull Requests
- [#2999](https://github.com/rollup/rollup/pull/2999): Unified file emission api (@lukastaegert)
- [#3020](https://github.com/rollup/rollup/pull/3020): Switch to a code-splitting build and update dependencies (@lukastaegert)
- [#3025](https://github.com/rollup/rollup/pull/3025): Use id of last module in chunk as name base for auto-generated chunks (@lukastaegert)
- [#3026](https://github.com/rollup/rollup/pull/3026): Avoid variable from empty module name be empty (@LongTengDao)
## 1.18.0
_2019-08-01_
### Features
- Add `externalLiveBindings: false` option to optimize code when live bindings are not needed (#3010)
### Pull Requests
- [#2997](https://github.com/rollup/rollup/pull/2997): Integrate coverage into CI setup (@lukastaegert)
- [#2998](https://github.com/rollup/rollup/pull/2998): Update readme badges (@lukastaegert)
- [#3010](https://github.com/rollup/rollup/pull/3010): Add option to prevent code for external live bindings (@lukastaegert)
## 1.17.0
_2019-07-15_
### Features
- Allow plugins to access current combined sourcemap in transform hook for coverage instrumentation (#2993)
### Pull Requests
- [#2987](https://github.com/rollup/rollup/pull/2987): Fix code fences for link (@johanholmerin)
- [#2989](https://github.com/rollup/rollup/pull/2989): Bump lodash from 4.17.11 to 4.17.14 (@dependabot)
- [#2993](https://github.com/rollup/rollup/pull/2993): Add getCombinedSourceMap in transform plugin context (@billowz)
## 1.16.7
_2019-07-09_
### Bug Fixes
- Fix an issue where exported import.meta properties would lead to invalid code (#2986)
### Pull Requests
- [#2985](https://github.com/rollup/rollup/pull/2985): Improve sourcemap types (@jridgewell)
- [#2986](https://github.com/rollup/rollup/pull/2986): Only overwrite content when resolving import.meta properties (@lukastaegert)
## 1.16.6
_2019-07-04_
### Bug Fixes
- Do not pass undefined to resolveDynamicImport for unresolvable template literals (#2984)
### Pull Requests
- [#2984](https://github.com/rollup/rollup/pull/2984): Always forward AST nodes for unresolvable dynamic imports (@lukastaegert)
## 1.16.5
_2019-07-04_
### Bug Fixes
- onwarn should still be called when --silent is used (#2982)
- Properly clean up watchers for files that are deleted between builds (#2982)
### Pull Requests
- [#2981](https://github.com/rollup/rollup/pull/2981): Do not skip onwarn handler when --silent is used (@lukastaegert)
- [#2982](https://github.com/rollup/rollup/pull/2982): Make tests run on Node 12, fix watcher cleanup issue (@lukastaegert)
## 1.16.4
_2019-07-02_
### Bug Fixes
- Do not show a TypeScript error when providing a location as number to this.warn and this.error (#2974)
- Use the correct TypeScript type for Sourcemap.version (#2976)
### Pull Requests
- [#2965](https://github.com/rollup/rollup/pull/2965): Use async readFile in getRollupDefaultPlugin (@kaksmet)
- [#2974](https://github.com/rollup/rollup/pull/2974): Align TS types, docs and implementation for this.warn and this.error (@lukastaegert)
- [#2976](https://github.com/rollup/rollup/pull/2976): Fix sourcemap type and update dependencies (@lukastaegert)
## 1.16.3
_2019-06-29_
### Bug Fixes
- Prevent name conflicts with unused function parameters (#2972)
### Pull Requests
- [#2972](https://github.com/rollup/rollup/pull/2972): Deconflict unused parameters (@lukastaegert)
## 1.16.2
_2019-06-22_
### Bug Fixes
- Properly wrap dynamic imports in Promises that can be caught when generating CJS output (#2958)
### Pull Requests
- [#2958](https://github.com/rollup/rollup/pull/2958): Make sure errors from dynamic imports can be caught (@lukastaegert)
## 1.16.1
_2019-06-21_
### Pull Requests
- [#2956](https://github.com/rollup/rollup/pull/2956): Add missing CLI docs for strictDeprecations (@lukastaegert)
## 1.16.0
_2019-06-21_
### Features
- Add strictDeprecations option to throw when currently or upcoming deprecated features are used (#2945)
- Keep annotations and comments when simplifying logical and conditional expressions (#2955)
### Bug Fixes
- Generate proper namespace objects when dynamically importing external dependencies for AMD or CJS formats (#2954)
- Fix dynamically imported variables not being resolved correctly when importing from an entry chunk with only a default export (#2954)
- Do not reexport default when reexporting a namespace (#2954)
### Pull Requests
- [#2945](https://github.com/rollup/rollup/pull/2945): Add option to handle use of features marked for deprecation as errors (@lukastaegert)
- [#2954](https://github.com/rollup/rollup/pull/2954): Improve dynamic import interop (@lukastaegert)
- [#2955](https://github.com/rollup/rollup/pull/2955): Keep annotations and comments when simplifying logical and conditional expressions (@lukastaegert)
## 1.15.6
_2019-06-16_
### Bug Fixes
- No longer use an alternate screen in watch mode to allow scrolling (#2942)
- Prioritize non-external imports over external ones when resolving conflicting namespace re-exports (#2893)
### Pull Requests
- [#2893](https://github.com/rollup/rollup/pull/2893): Improve handling of conflicting namespace exports (@aleclarson)
- [#2942](https://github.com/rollup/rollup/pull/2942): Get rid of alternate screen and simplify screen clearing (@lukastaegert)
## 1.15.5
_2019-06-14_
### Bug Fixes
- Do not include any comments for completely tree-shaken files so that `renderedLength === 0` is a reliable check (#2940)
- Do not cause type errors when returning `null` from `resolveId` (#2941)
### Pull Requests
- [#2940](https://github.com/rollup/rollup/pull/2940): Completely omit files that do not have any included statements (@lukastaegert)
- [#2941](https://github.com/rollup/rollup/pull/2941): Explicitly allow null as return value for various hooks (@lukastaegert)
## 1.15.4
_2019-06-14_
### Bug Fixes
- Improve how asset and chunk URLs are resolved for UMD, IIFE and CJS output (#2937)
### Pull Requests
- [#2937](https://github.com/rollup/rollup/pull/2937): Fix URL resolution to work when the current script contains query parameters (@lukastaegert)
## 1.15.3
_2019-06-13_
### Bug Fixes
- Always reemit assets and chunks from cached transform hooks (#2936)
### Pull Requests
- [#2936](https://github.com/rollup/rollup/pull/2936): Fix repeated re-emission of files emitted from a transform hook (@lukastaegert)
## 1.15.2
_2019-06-13_
### Bug Fixes
- Make sure chunks emitted from transform hooks are also emitted for incremental builds in watch mode (#2933)
### Pull Requests
- [#2933](https://github.com/rollup/rollup/pull/2933): Reemit chunks emitted from transform hooks (@lukastaegert)
## 1.15.1
_2019-06-11_
### Bug Fixes
- Do not fail when reexporting variables in dynamic entry points from other chunks (#2928)
### Pull Requests
- [#2928](https://github.com/rollup/rollup/pull/2928): Handle reexports from dynamic entries across chunk (@lukastaegert)
## 1.15.0
_2019-06-11_
### Features
- Tone down try-catch deoptimization while maintaining polyfill support (#2918)
### Bug Fixes
- Handle feature detection with "typeof" for regular expressios (#2916)
- Deoptimize `'' + variable'` type coercion as expression statement for feature detection (#2917)
- Always observe argument side-effects when tree-shaking (#2924)
### Pull Requests
- [#2916](https://github.com/rollup/rollup/pull/2916): Deoptimize typeof for regular expression literals to better support es6-shim (@lukastaegert)
- [#2917](https://github.com/rollup/rollup/pull/2917): Support implicit type coercion errors in es5-shim (@lukastaegert)
- [#2918](https://github.com/rollup/rollup/pull/2918): Deoptimize try-catch less radically (@lukastaegert)
- [#2924](https://github.com/rollup/rollup/pull/2924): Do not tree-shake arguments with side-effects (@lukastaegert)
## 1.14.6
_2019-06-10_
### Bug Fixes
- Fix an issue where call arguments were not included in try statements (#2914)
### Pull Requests
- [#2914](https://github.com/rollup/rollup/pull/2914): Properly include try statements for each pass when deoptimization is deactivated (@lukastaegert)
## 1.14.5
_2019-06-09_
### Bug Fixes
- Keep external ids unmodified when using the object form of resolveId (#2907)
- Cache dynamic import resolutions when using Rollup cache (#2908)
- Keep all necessary parentheses when tree-shaking call arguments (#2911)
### Pull Requests
- [#2906](https://github.com/rollup/rollup/pull/2906): Update dependencies (@lukastaegert)
- [#2907](https://github.com/rollup/rollup/pull/2907): Do not renormalize external ids when using the object form (@lukastaegert)
- [#2908](https://github.com/rollup/rollup/pull/2908): Cache dynamic ids if possible (@lukastaegert)
- [#2911](https://github.com/rollup/rollup/pull/2911): Fix treeshaken parameters around parentheses (@manucorporat)
## 1.14.4
_2019-06-07_
### Bug Fixes
- Do not omit external re-exports for `moduleSideEffects: false` (#2905)
### Pull Requests
- [#2905](https://github.com/rollup/rollup/pull/2905): Make sure external re-exports are included for moduleSideEffects: false (@lukastaegert)
## 1.14.3
_2019-06-06_
### Bug Fixes
- Generate correct external imports when importing from a directory that would be above the root of the current working directory (#2902)
### Pull Requests
- [#2902](https://github.com/rollup/rollup/pull/2902): Use browser relative path algorithm for chunks (@lukastaegert)
## 1.14.2
_2019-06-05_
### Bug Fixes
- Prevent unnecessary inclusion of external namespace import in certain situations (#2900)
### Pull Requests
- [#2900](https://github.com/rollup/rollup/pull/2900): Handle early bind for member expressions (@lukastaegert)
## 1.14.1
_2019-06-05_
### Bug Fixes
- Fix an issue where try-statements were not included properly when a variable declared inside the statement was accessed outside it (#2898)
- Fix an issue where `await` expressions were not included properly (#2899)
### Pull Requests
- [#2898](https://github.com/rollup/rollup/pull/2898): Properly include try-catch-statements even if they have already been included in some way (@lukastaegert)
- [#2899](https://github.com/rollup/rollup/pull/2899): Fix unintended early return in await inclusion handling (@lukastaegert)
## 1.14.0
_2019-06-05_
### Features
- Deoptimize code inside and called from try-statements for feature detection (#2892)
- Tree-shake unused call arguments (#2892)
### Pull Requests
- [#2892](https://github.com/rollup/rollup/pull/2892): Implement try-statement-deoptimization for feature detection, tree-shake unused arguments (@lukastaegert)
## 1.13.1
_2019-06-01_
### Bug Fixes
- Avoid conflicts between top-level module, require etc. and CommonJS runtimes (#2889)
### Pull Requests
- [#2888](https://github.com/rollup/rollup/pull/2888): Enable full TypeScript strict mode (@lukastaegert)
- [#2889](https://github.com/rollup/rollup/pull/2889): Protect all module globals for CJS output from being redefined (@lukastaegert)
## 1.13.0
_2019-05-31_
### Features
- Omit `exports` and `module` from SystemJS wrapper if possible (#2880)
- Try to use the first letters of names when mangling exports (#2885)
### Bug Fixes
- Avoid conflicts with local variables when using format specific globals to render dynamic imports and file URLs (#2880)
- Do not produce undefined reexports when reexporting from entry points (#2885)
### Pull Requests
- [#2880](https://github.com/rollup/rollup/pull/2880): Deconflict global variables used inside format-specific code (@lukastaegert)
- [#2885](https://github.com/rollup/rollup/pull/2885): Do not produce undefined reexports when reexporting from entry points and refactor chunk linking (@lukastaegert)
## 1.12.5
_2019-05-30_
### Pull Requests
- [#2884](https://github.com/rollup/rollup/pull/2884): Update pluginutils for new micormatch and reduced bundle size (@lukastaegert)
## 1.12.4
_2019-05-27_
### Bug Fixes
- Show correct error stack trace for errors throw in "load" hooks (#2871)
### Pull Requests
- [#2875](https://github.com/rollup/rollup/pull/2875): Mention subfolders in docs (@lukastaegert)
- [#2871](https://github.com/rollup/rollup/pull/2871): Reserve error stack information (@LongTengDao)
## 1.12.3
_2019-05-19_
### Bug Fixes
- Prevent duplicate imports when exports are reexported as default exports (#2866)
### Pull Requests
- [#2755](https://github.com/rollup/rollup/pull/2755): Enable TypeScript strictNullChecks (@edsrzf)
- [#2866](https://github.com/rollup/rollup/pull/2866): Properly deduplicate reexported default exports (@lukastaegert)
## 1.12.2
_2019-05-17_
### Bug Fixes
- Do not fail when using clearScreen:false in watchMode (#2858)
- Properly resolve star reexports when preserving modules (#2860)
### Pull Requests
- [#2858](https://github.com/rollup/rollup/pull/2858): Declare processConfigsErr before use (@humphd)
- [#2860](https://github.com/rollup/rollup/pull/2860): Keep nested exports with preserveModules (@TomCaserta)
- [#2864](https://github.com/rollup/rollup/pull/2864): Cache transitive reexport detection (@lukastaegert)
## 1.12.1
_2019-05-16_
### Bug Fixes
- Extend file name sanitation to also replace "?" and "\*" e.g. when preserving modules with the updated commonjs plugin (#2860)
- Do not ignore module transformer that return an empty string (#2861)
### Pull Requests
- [#2860](https://github.com/rollup/rollup/pull/2860): Update to latest plugins and extend file name sanitation (@lukastaegert)
- [#2861](https://github.com/rollup/rollup/pull/2861): Allow transformers to return an empty string (@lukastaegert)
## 1.12.0
_2019-05-15_
### Features
- Add `treeshake.moduleSideEffects` option to allow removing empty imports without a side-effect check (#2844)
- Extend plugin API to allow marking modules as side-effect-free (#2844)
- Extend `this.resolve` plugin context function with an option to skip the `resolveId` hook of the calling plugin (#2844)
- Add `isEntry` flag to `this.getModuleInfo` plugin context function (#2844)
- Distribute Rollup as optimized ES2015 code (#2851)
### Pull Requests
- [#2844](https://github.com/rollup/rollup/pull/2844): Add options and hooks to control module side effects (@lukastaegert)
- [#2851](https://github.com/rollup/rollup/pull/2851): Switch to ES2015 output (@lukastaegert)
## 1.11.3
_2019-05-05_
### Bug Fixes
- Quote es3 keywords in namespace objects (#2825)
### Pull Requests
- [#2825](https://github.com/rollup/rollup/pull/2825): Add es3 support for namespace object import (@sormy)
## 1.11.2
_2019-05-04_
### Bug Fixes
- Prevent a crash when handling circular namespace exports (#2836)
### Pull Requests
- [#2836](https://github.com/rollup/rollup/pull/2836): Make sure circular `export * from X` does not stack overflow (@Swatinem)
## 1.11.1
_2019-05-04_
### Bug Fixes
- Fix an issue where rendered exports were reported as "removed" in the bundle information (#2835)
### Pull Requests
- [#2835](https://github.com/rollup/rollup/pull/2835): Fix `removedExports` to correctly track the exported item (@Swatinem)
## 1.11.0
_2019-05-03_
### Features
- Add `emitChunk` plugin context function to emit additional entry chunks that can be referenced from the code (#2809)
- Allow `manualChunks` to be a function (#2831)
- Omit `.js` extensions in AMD imports to make sure an AMD `baseUrl` would work (#2809)
- Automatically use the name of the imported module as a base for dynamically imported chunks (#2809)
- Add `resolveFileUrl` plugin hook to replace `resolveAssetUrl` and handle emitted chunks as well (#2809)
- Add `resolve` plugin hook to replace `resolveId` and `isExternal` that returns an object (#2829)
- Allow `resolveDynamicImport` to return an `{id, external}` object to also resolve unresolvable dynamic imports to a module (#2829)
### Bug Fixes
- Do not create invalid code if a dynamic import contains nothing but reexports (#2809)
- Do not fail if modules that define a manual chunk depend on each other (#2809)
- Do not fail if a module that defines a manual chunk is the dependency of a module defining a different manual chunk (#2809)
- No longer fail for unnamed duplicate entry points but combine them (#2809)
- Always return `string | null` from `this.resolveId` even if some `resolveId` hooks return objects (#2829)
- Show proper warnings when `resolveDynamicImport` resolves to a non-external module that does not exist (#2829)
### Pull Requests
- [#2809](https://github.com/rollup/rollup/pull/2809): Add hook for dynamic entry chunk emission (@lukastaegert)
- [#2821](https://github.com/rollup/rollup/pull/2821): Fix syntax error in documentation (@FFxSquall)
- [#2829](https://github.com/rollup/rollup/pull/2829): Improve id resolution (@lukastaegert)
- [#2831](https://github.com/rollup/rollup/pull/2831): Allow manualChunks to be a function (@lukastaegert)
- [#2832](https://github.com/rollup/rollup/pull/2832): Improve `generateBundle` documentation (@lukastaegert)
- [#2833](https://github.com/rollup/rollup/pull/2833): Update dependencies (@lukastaegert)
## 1.10.1
_2019-04-19_
### Bug Fixes
- Invalid options.format values will now trigger a helpful error (#2813)
### Pull Requests
- [#2812](https://github.com/rollup/rollup/pull/2812): Minor documentation update (@dnalborczyk)
- [#2813](https://github.com/rollup/rollup/pull/2813): Catch invalid options.format values (@marijnh)
- [#2816](https://github.com/rollup/rollup/pull/2816): Update all dependencies to fix security issues (@lukastaegert)
## 1.10.0
_2019-04-11_
### Features
- Improve generated code to polyfill `import.meta.url` (#2785)
- Add plugin hook to configure handling of `import.meta` (#2785)
- Improve generated code when accessing URLs of emitted assets (#2796)
- Add plugin hook to configure the generated code when accessing URLs of emitted assets (#2796)
### Bug Fixes
- No longer resolve assets to their parent URL in some cases (#2796)
### Pull Requests
- [#2785](https://github.com/rollup/rollup/pull/2785): Refactor handling of import.meta.url and add option to configure behaviour (@lukastaegert)
- [#2796](https://github.com/rollup/rollup/pull/2796): Improve and fix asset emission (@lukastaegert)
## 1.9.3
_2019-04-10_
### Bug Fixes
- Simplify return expressions that are evaluated before the surrounding function is bound (#2803)
### Pull Requests
- [#2803](https://github.com/rollup/rollup/pull/2803): Handle out-of-order binding of identifiers to improve tree-shaking (@lukastaegert)
## 1.9.2
_2019-04-10_
### Bug Fixes
- Allowing replacing `output.file` with `output.dir` in the `outputOptions` hook (#2802)
### Pull Requests
- [#2802](https://github.com/rollup/rollup/pull/2802): Observe modified output options in bundle.write (@lukastaegert)
## 1.9.1
_2019-04-10_
### Bug Fixes
- Make sure inline comments in dynamic imports are preserved (#2797)
### Pull Requests
- [#2797](https://github.com/rollup/rollup/pull/2797): Emit inline comments inside dynamic import (@manucorporat)
## 1.9.0
_2019-04-05_
### Features
- Add built-in support for bigint (#2789)
### Pull Requests
- [#2789](https://github.com/rollup/rollup/pull/2789): Ship with bigint support built-in (@danielgindi)
- [#2791](https://github.com/rollup/rollup/pull/2791): Use shared extractAssignedNames from rollup-pluginutils (@lukastaegert)
- [#2792](https://github.com/rollup/rollup/pull/2792): Test that rollup-plugin-commonjs works with preserveModules (@lukastaegert)
## 1.8.0
_2019-04-02_
### Features
- Support `module` as alias for `esm` and `commonjs` for `cjs` to match Node (#2783)
### Pull Requests
- [#2782](https://github.com/rollup/rollup/pull/2782): Inline interopDefault in config loading (@guybedford)
- [#2783](https://github.com/rollup/rollup/pull/2783): Support Node-style format aliases (@guybedford)
## 1.7.4
_2019-03-28_
### Bug Fixes
- Improve TypeScript type of the treeshaking options (#2779)
### Pull Requests
- [#2779](https://github.com/rollup/rollup/pull/2779): Make all properties in TreeshakingOptions optional (@ndelangen)
## 1.7.3
_2019-03-24_
### Bug Fixes
- Use getters when re-exporting live-bindings (#2765)
### Pull Requests
- [#2765](https://github.com/rollup/rollup/pull/2765): Support exporting live-bindings from other chunks or external dependencies (@lukastaegert)
## 1.7.2
_2019-03-24_
### Bug Fixes
- Make sure relative external ids are resolved correctly (#2774)
### Pull Requests
- [#2774](https://github.com/rollup/rollup/pull/2774): Resolve relative external ids (@lukastaegert)
## 1.7.1
_2019-03-24_
### Bug Fixes
- Prevent invalid code when exporting several hundred identifiers from a chunk (#2768)
- Do not wrongly deconflict labels (#2776)
### Pull Requests
- [#2768](https://github.com/rollup/rollup/pull/2768): Sanitize shortened internal export names (@lukastaegert)
- [#2769](https://github.com/rollup/rollup/pull/2769): Update dependencies and fix security issue (@lukastaegert)
- [#2776](https://github.com/rollup/rollup/pull/2776): Do not treat break labels as identifiers (@lukastaegert)
## 1.7.0
_2019-03-20_
### Features
- Sort chunk exports by name for greater consistency (#2757)
### Bug Fixes
- Fix a situation where tree-shakeable code would not be removed in an indeterminate manner (#2757)
### Pull Requests
- [#2757](https://github.com/rollup/rollup/pull/2757): Sort modules before binding, sort exports (@lukastaegert)
## 1.6.1
_2019-03-20_
### Bug Fixes
- Avoid name clashes of unused default exports when tree-shaking is false (#2758)
- Do not crash when generating SystemJS bundles containing array patterns with member expressions (#2760)
### Pull Requests
- [#2758](https://github.com/rollup/rollup/pull/2758): Make sure unused default exports are deconflicted when tree-shaking is false (@lukastaegert)
- [#2760](https://github.com/rollup/rollup/pull/2760): Handle member expressions in array patterns (@lukastaegert)
## 1.6.0
_2019-03-08_
### Features
- Add plugin hook to modify output options (#2736)
### Pull Requests
- [#2736](https://github.com/rollup/rollup/pull/2736): Add hook for modifying OutputOptions (@Comandeer)
## 1.5.0
_2019-03-07_
### Features
- Allow resolving to a different id while marking it as external at the same time (#2734)
### Pull Requests
- [#2734](https://github.com/rollup/rollup/pull/2734): Allow resolveId to return an object (@lukastaegert)
## 1.4.2
_2019-03-07_
### Bug Fixes
- Respect variable identity of exports when hashing (#2741)
- Resolve a situations where a variable was imported twice with the same name (#2737)
### Pull Requests
- [#2741](https://github.com/rollup/rollup/pull/2741): Fix hashing when different variable are exported using the same name (@lukastaegert)
- [#2737](https://github.com/rollup/rollup/pull/2737): Fix duplicate imports with conflicting names (@lukastaegert)
## 1.4.1
_2019-03-04_
### Bug Fixes
- Do not treat the import target "" as external by default (#2733)
### Pull Requests
- [#2733](https://github.com/rollup/rollup/pull/2733): Do not treat the import target "" as external by default (@LongTengDao)
## 1.4.0
_2019-03-01_
### Features
- Add option to change the name of the dynamic import function to allow polyfilling it (#2723)
### Pull Requests
- [#2723](https://github.com/rollup/rollup/pull/2723): Add dynamicImportFunction option (@keithamus)
## 1.3.3
_2019-03-01_
### Bug Fixes
- Fix performance regression when handling long chains of calls to property methods (#2732)
### Pull Requests
- [#2730](https://github.com/rollup/rollup/pull/2730): Order types, interfaces, classes, and object members (@lukastaegert)
- [#2732](https://github.com/rollup/rollup/pull/2732): Take chunk export mode into account when reexporting default (@lukastaegert)
## 1.3.2
_2019-02-27_
### Bug Fixes
- Allow ids of default exported classes to be exported separately (#2728)
### Pull Requests
- [#2728](https://github.com/rollup/rollup/pull/2728): Update dependencies (@lukastaegert)
## 1.3.1
_2019-02-27_
### Bug Fixes
- Correctly reexport the default export from entry chunks (#2727)
### Pull Requests
- [#2727](https://github.com/rollup/rollup/pull/2727): Take chunk export mode into account when reexporting default (@lukastaegert)
## 1.3.0
_2019-02-26_
### Features
- Treeshake call expressions prefixed with UglifyJS style `@__PURE__` annotations (#2429)
### Pull Requests
- [#2429](https://github.com/rollup/rollup/pull/2429): Add support for /_#**PURE**_/ comments (@conartist6 and @lukastaegert)
## 1.2.5
_2019-02-26_
### Bug Fixes
- Store external ids reported by plugins in watch mode (#2718)
### Pull Requests
- [#2718](https://github.com/rollup/rollup/pull/2718): Incremental external (@andreas-karlsson)
## 1.2.4
_2019-02-26_
### Bug Fixes
- Fix an issue where a variable was imported twice under the same name (#2715)
### Pull Requests
- [#2715](https://github.com/rollup/rollup/pull/2715): Deduplicate imports referencing default exports and their original variables (@lukastaegert)
## 1.2.3
_2019-02-23_
### Bug Fixes
- Use correct path when rendering dynamic imports where the entry module is empty (#2714)
### Pull Requests
- [#2714](https://github.com/rollup/rollup/pull/2714): Properly render dynamic imports when imported module is empty (@lukastaegert)
## 1.2.2
_2019-02-19_
### Bug Fixes
- Fix wrong external imports when using the `paths` options only for some outputs (#2706)
### Pull Requests
- [#2706](https://github.com/rollup/rollup/pull/2706): Always recreate paths for external modules (@lukastaegert)
## 1.2.1
_2019-02-17_
### Bug Fixes
- Fix ESM version of Rollup (#2705)
### Pull Requests
- [#2705](https://github.com/rollup/rollup/pull/2705): Fix ESM version of Rollup (@lukastaegert)
## 1.2.0
_2019-02-17_
### Features
- Fewer renamed variables due to a completely reimplemented deconflicting logic (#2689)
### Bug Fixes
- Respect rendered and tree-shaken exports when determining chunk hashes (#2695)
- Fix an error when dynamic imports end up in the same chunk as one of their importees (#2677)
- Do not generate invalid code when expressions containing IIFEs are simplified (#2696)
- Do not throw an error when more than ten bundles are watched (#2700)
- Treat re-exported globals in a spec-compliant way (#2691)
- Fix issues related to wrongly renamed variables (#2689)
- Do not throw an error if config files contain non-default exports (#2673)
- Improve type of `RollupOutput.output` to guarantee at least one chunk (#2679)
### Pull Requests
- [#2673](https://github.com/rollup/rollup/pull/2673): Allow config files to have non-default exports (@swansontec)
- [#2677](https://github.com/rollup/rollup/pull/2677): Prevent final resolution and facade creation for inlined dynamic imports (@Rich-Harris and @lukastaegert)
- [#2679](https://github.com/rollup/rollup/pull/2679): Improve type of `RollupOutput.output` (@MattiasBuelens)
- [#2689](https://github.com/rollup/rollup/pull/2689): Reimplement variable deconflicting logic (@lukastaegert)
- [#2691](https://github.com/rollup/rollup/pull/2691): Fix CI issues and update acorn dependency (@lukastaegert)
- [#2693](https://github.com/rollup/rollup/pull/2693): Fix typo in export-globals test (@MattiasBuelens)
- [#2695](https://github.com/rollup/rollup/pull/2695): Respect rendered exports when generating chunk hashes (@lukastaegert)
- [#2696](https://github.com/rollup/rollup/pull/2696): Correctly render function expression inside simplified expression statements (@lukastaegert)
- [#2700](https://github.com/rollup/rollup/pull/2700): Add a fix for MaxListenersExceededWarning (@luwes)
- [#2703](https://github.com/rollup/rollup/pull/2703): Update rollup-pluginutils (@lukastaegert)
## 1.1.2
_2019-01-21_
### Bug Fixes
- Tree-shaken dynamic imports no longer leave behind `undefined` entries in the bundle information (#2663)
- Dynamic imports in dynamically imported files could lead to crashes and would not always create new chunks (#2664)
### Pull Requests
- [#2663](https://github.com/rollup/rollup/pull/2663): Do not include tree-shaken dynamic imports in bundle information (@lukastaegert)
- [#2664](https://github.com/rollup/rollup/pull/2664): Properly handle dynamic imports declared in dynamically imported files (@everdimension)
## 1.1.1
_2019-01-19_
### Bug Fixes
- Make sure object prototype methods are not considered to be falsy when tree-shaking (#2652)
### Pull Requests
- [#2652](https://github.com/rollup/rollup/pull/2652): Make sure object prototype methods are not considered to be falsy (@lukastaegert)
- [#2654](https://github.com/rollup/rollup/pull/2654): Use correct signature for `this.setAssetSource` in docs (@everdimension)
- [#2656](https://github.com/rollup/rollup/pull/2656): Swap descriptions for `[extname]` and `[ext]` in docs (@tivac)
## 1.1.0
_2019-01-09_
### Features
- Make `this.meta` available from the `options` plugin hook (#2642)
- Add a new `writeBundle` plugin hook that is called _after_ all files have been written (#2643)
### Bug Fixes
- Make sure the `acorn` import of the bundled non-ESM acorn plugins is correctly translated to ESM (#2636)
- Make sure input options are actually passed to the `buildStart` hook (#2642)
### Pull Requests
- [#2636](https://github.com/rollup/rollup/pull/2636): Improve how acorn is imported, update dependencies (@lukastaegert)
- [#2642](https://github.com/rollup/rollup/pull/2642): Make this.meta available in options hook, pass input options to buildStart (@lukastaegert)
- [#2643](https://github.com/rollup/rollup/pull/2643): Implement writeBundle hook (@lukastaegert)
## 1.0.2
_2019-01-05_
### Bug Fixes
- Make sure the transform hook is always reevaluated when a file watched by the hook changes (#2633)
- Fix a crash when generating hashes for tree-shaken dynamic imports (#2638)
- Fix a crash and some inconsistencies when using the acorn-bigint plugin (#2640)
### Pull Requests
- [#2633](https://github.com/rollup/rollup/pull/2633): Document `this.addWatchFile` and make sure it also declares transform dependencies (@lukastaegert)
- [#2635](https://github.com/rollup/rollup/pull/2635): Make sure `code` is optional in warning type (@lukastaegert)
- [#2638](https://github.com/rollup/rollup/pull/2638): Do not fail when generating hashes for tree-shaken dynamic imports (@lukastaegert)
- [#2640](https://github.com/rollup/rollup/pull/2640): Always treat bigints as unknown (@lukastaegert)
- [#2641](https://github.com/rollup/rollup/pull/2641): Make sure all CLI options are listed in the summary (@lukastaegert)
## 1.0.1
_2019-01-03_
### Bug Fixes
- Properly handle reexporting an external default export for non-ESM targets when using named exports mode (#2620)
- Do not (wrongly) re-declare input options in the merged `RollupOptions` type (#2622)
### Pull Requests
- [#2620](https://github.com/rollup/rollup/pull/2620): Fixed issue with reexporting default as default with `{exports: named, interop: true}` options (@Andarist)
- [#2622](https://github.com/rollup/rollup/pull/2622): Simplify RollupOptions (@Kinrany)
- [#2627](https://github.com/rollup/rollup/pull/2627): Show how to skip imports for optional plugins (@chris-morgan)
## 1.0.0
_2018-12-28_
### Breaking Changes
- Several (mostly deprecated) options have been removed or renamed (#2293, #2409):
- banner -> output.banner
- dest -> output.file
- entry -> input
- experimentalCodeSplitting -> now always active
- experimentalDynamicImport -> now always active
- experimentalPreserveModules -> preserveModules
- exports -> output.exports
- extend -> output.extend
- footer -> output.footer
- format -> output.format
- freeze -> output.freeze
- globals -> output.globals
- indent -> output.indent
- interop -> output.interop
- intro -> output.intro
- load -> use plugin API
- moduleName -> output.name
- name -> output.name
- noConflict -> output.noConflict
- output.moduleId -> output.amd.id
- outro -> output.outro
- paths -> output.paths
- preferConst -> output.preferConst
- pureExternalModules -> treeshake.pureExternalModules
- resolveExternal -> use plugin API
- resolveId -> use plugin API
- sourcemap -> output.sourcemap
- sourceMap -> output.sourcemap
- sourceMapFile -> output.sourcemapFile
- strict -> output.strict
- targets -> use output as an array
- transform -> use plugin API
- useStrict -> output.strict
- In general, output options can no longer be used as input options (#2409)
- `bundle.generate` and `bundle.write` now return a new format (#2293)
- Several plugin hooks have become deprecated and will display warnings when used (#2409):
- transformBundle
- transformChunk
- ongenerate
- onwrite
- Plugin transform dependencies are deprecated in favour of using the `this.addWatchFile` plugin context function (#2409)
- Accessing `this.watcher` in plugin hooks is deprecated in favour of the `watchChange` plugin hook and the `this.addWatchFile` plugin context function (#2409)
- Using dynamic import statements will by default create a new chunk unless `inlineDynamicImports` is used (#2293)
- Rollup now uses acorn@6 which means that acorn plugins must be compatible with this version; acorn is now external for non-browser builds to make plugins work (#2293)
### Features
- The `--dir` ClI option can now be aliased as `-d` (#2293)
- The `--input` option now supports named entry points via `=` (#2293)
### Bug Fixes
- Both the `--input` option as well as the default CLI option now support named inputs (#2293)
### Pull Requests
- [#2293](https://github.com/rollup/rollup/pull/2293): Unify code paths for 1.0 relase and update documentation (@guybedford and @lukastaegert)
- [#2409](https://github.com/rollup/rollup/pull/2409): Remove old deprecated features and add new deprecation warnings (@guybedford)
- [#2486](https://github.com/rollup/rollup/pull/2486): Upgrade to acorn 6 (@marijnh)
- [#2611](https://github.com/rollup/rollup/pull/2611): Fix hook's name in test description (@Andarist)
- [#2612](https://github.com/rollup/rollup/pull/2612): Fix a self-contradicting comment in the docs (@LongTengDao)
## 0.68.2
_2018-12-23_
### Bug Fixes
- Do not assume hoisted variables to have been initialized (#2607)
### Pull Requests
- [#2607](https://github.com/rollup/rollup/pull/2607): Fix an issues where hoisted variables were assumed to have been initialized (@lye)
## 0.68.1
_2018-12-19_
### Bug Fixes
- Fix an issue with UMD wrappers where a variable is used without being defined (#2600)
### Pull Requests
- [#2600](https://github.com/rollup/rollup/pull/2600): Fix UMD and IIFE wrapper issues and add comprehensive functional wrapper tests (@lukastaegert)
## 0.68.0
_2018-12-16_
### Breaking Changes
- `optimizeChunks` is renamed to `experimentalOptimizeChunks` to reflect this feature is not production-ready yet (#2575)
### Features
- Plugins can iterate all module ids via `this.moduleIds` (#2565)
- Plugins can get graph information about a module via `this.getModuleInfo(id)` (#2565)
- Plugins and JS API users get more information about the generated chunks: `dynamicImports`, `facadeModuleId`, `isDynamicEntry`, `name` (#2575)
- Tree-shaken dynamic imports will no longer create chunks or influence chunking in any way (#2575)
- Dynamic imports will no longer follow the `entryFileNames` but the `chunkFileNames` property reflecting those are solely internally used (#2575)
- If there are chunk naming conflicts, entry chunks will always take precedence (#2575)
- If an entry facade is created, only the facade chunk is marked as `isEntry` (#2575)
- Dynamic chunks will only be marked as `isEntry` if they are actually entry chunks as well; thus there is now a 1-to-1 correspondence between modules listed in `input` and chunks marked as `isEntry` (#2575)
- Chunks no longer contain imports for variables that are tree-shaken in the chunk but used in other chunks (#2584)
- Chunks will always import re-exported variables directly from the chunk where they are originally exported from (#2584)
- Null characters will be pruned from chunk ids to allow for virtually created chunks and make `rollup-plugin-multi-entry` compatible with code-splitting and thus the upcoming 1.0 version (#2590)
- Simplify the UMD wrapper code as much as possible, especially if there are no exports (#2594)
- The UMD wrapper will now work in strict mode by checking for `self` before `this` when determining the global variable (#2594)
### Bug Fixes
- If a facade is created for a dynamic entry point, this facade will be imported instead of the facaded chunk (#2575)
- Manual chunks that include multiple entry points will have proper facades created for all entry points if necessary (#2575)
- If missing exports are shimmed, the shim variable will not be global but created on a per-module basis and is deconflicted with variables having the same name (#2584)
- Missing export shims work properly in SystemJS (#2584)
- `preserveModules` now handles dynamic namespace imports (#2584)
- Fix chunk execution order in certain scenarios (#2584)
- Exports and assignments using destructuring syntax will properly update the exported variables when generating SystemJS output (#2587)
- Hashes in chunk names will now also take dynamic imports into account (#2596)
### Pull Requests
- [#2565](https://github.com/rollup/rollup/pull/2565): Provide module graph information on the plugin context (@samccone)
- [#2575](https://github.com/rollup/rollup/pull/2575): Extend bundle information, tree-shake dynamic imports, fix dynamic import facade creation, support manual chunks with multiple entry points, make `optimizeChunks` experimental (@lukastaegert)
- [#2577](https://github.com/rollup/rollup/pull/2577): Update dependencies (@lukastaegert)
- [#2584](https://github.com/rollup/rollup/pull/2584): Prune tree-shaken chunk imports, fix missing export shimming, support dynamic namespaces when preserving modules, improve chunk execution order (@lukastaegert)
- [#2587](https://github.com/rollup/rollup/pull/2587): Support exports using destructuring declarations and assignments in SystemJS (@lukastaegert)
- [#2590](https://github.com/rollup/rollup/pull/2590): Make sure chunk ids do not contain invalid characters to allow for chunks to correspond to virtual modules (@lukastaegert)
- [#2594](https://github.com/rollup/rollup/pull/2594): Simplify UMD wrapper code and make sure it works in strict mode (@lukastaegert)
- [#2596](https://github.com/rollup/rollup/pull/2596): Take both static and dynamic dependencies into account when calculating hashes (@lukastaegert)
## 0.67.4
_2018-12-03_
### Bug Fixes
- Prevent corrupt source maps for files with very long lines (#2571)
### Pull Requests
- [#2571](https://github.com/rollup/rollup/pull/2571): Fix an issue with long lines in sourcemaps (@mislav)
## 0.67.3
_2018-11-17_
### Bug Fixes
- Make sure the ESM browser build is actually published to npm (#2560)
- Throw proper error when using `inlineDynamicImports` with `experimentalPreserveModules` (#2560)
### Pull Requests
- [#2552](https://github.com/rollup/rollup/pull/2552): Properly include ESM browser build in package (@lukastaegert)
- [#2560](https://github.com/rollup/rollup/pull/2560): Show proper error when using `inlineDynamicImports` with `experimentalPreserveModules` (@clarkdo)
## 0.67.2
_2018-11-17_
### Bug Fixes
- Prevent crash when not returning sourcemaps from `renderChunk` plugin hook (#2558)
### Pull Requests
- [#2558](https://github.com/rollup/rollup/pull/2558): Prevent crash when not returning sourcemaps from `renderChunk` (@kyle1320)
## 0.67.1
_2018-11-11_
### Bug Fixes
- Deconflict CLI entry points with same name but on different paths if no explicit naming is used (#2548)
### Pull Requests
- [#2548](https://github.com/rollup/rollup/pull/2548): Deconflict CLI entry points with same name but on different paths if no explicit naming is used (@lukastaegert)
## 0.67.0
_2018-11-04_
### Breaking Changes
none
### Features
- Do not resolve external dynamic imports via plugins to match the logic for static external imports again (#2505)
- Support virtual modules created by plugins when preserving modules (#2511)
- Add new `output.sourcemapExcludeSources` option to exclude the actual sources from sourcemaps (#2531)
### Bug Fixes
- Fix TypeScript type for sourcemaps (#2507)
- Fix order of external and inter-chunk imports to match the proper execution order (#2508)
- Do not tree-shake children of unknown nodes to e.g. properly handle do-expressions via acorn plugin (#2510)
- Prevent memory leak when using the bundle as cache (#2522)
- Fix mis-placed semicolons for certain SystemJS exports (#2529)
### Pull Requests
- [#2505](https://github.com/rollup/rollup/pull/2505): Do not resolve external dynamic imports via plugins (@lukastaegert)
- [#2507](https://github.com/rollup/rollup/pull/2507): Fix public sourcemap type (@aMarCruz)
- [#2508](https://github.com/rollup/rollup/pull/2508): Improve execution order of chunks and externals (@lukastaegert)
- [#2510](https://github.com/rollup/rollup/pull/2510): Do not tree-shake children of unknown nodes to e.g. properly handle do-expressions via acorn plugin (@devsnek)
- [#2511](https://github.com/rollup/rollup/pull/2511): Create chunks for virtual modules when preserving modules (@lukastaegert)
- [#2522](https://github.com/rollup/rollup/pull/2522): Prevent memory leak when using the bundle as cache (@kyle1320)
- [#2529](https://github.com/rollup/rollup/pull/2529): Fix mis-placed semicolons for certain SystemJS exports (@kyle1320)
- [#2531](https://github.com/rollup/rollup/pull/2531): add `sourcemapExcludeSources` option to exclude the source content from sourcemaps (@kitsonk)
## 0.66.6
_2018-10-10_
- Properly deconflict function and class declaration ids of reassigned default exports ([#2502](https://github.com/rollup/rollup/pull/2502))
## 0.66.5
_2018-10-09_
- Remove cache from memory once no longer needed ([#2496](https://github.com/rollup/rollup/pull/2496))
- Provide better error message when reexporting external namespace reexports ([#2499](https://github.com/rollup/rollup/pull/2499))
## 0.66.4
_2018-10-04_
- Fix links in warnings and errors ([#2471](https://github.com/rollup/rollup/pull/2471))
## 0.66.3
_2018-10-03_
- Detect side-effects in string.replace function arguments ([#2476](https://github.com/rollup/rollup/pull/2476))
- Make sure chunk ids are assigned before creating output bundle ([#2483](https://github.com/rollup/rollup/pull/2483))
- Use proper plugin name in error ([#2470](https://github.com/rollup/rollup/pull/2470))
- Update TypeScript version and fix type errors ([#2488](https://github.com/rollup/rollup/pull/2488))
## 0.66.2
_2018-09-21_
- Add additional information to parse errors messages in JSON and other non-JS files ([#2466](https://github.com/rollup/rollup/pull/2466))
## 0.66.1
_2018-09-19_
- Ignore falsy plugins ([#2464](https://github.com/rollup/rollup/pull/2464))
- Switch back to official TypeScript plugin ([#2465](https://github.com/rollup/rollup/pull/2465))
## 0.66.0
_2018-09-16_
- Support ES2019 optional catch bindings ([#2455](https://github.com/rollup/rollup/pull/2455))
- Add option to transform paths within sourcemaps ([#2430](https://github.com/rollup/rollup/pull/2430))
- Add renderStart and renderEnd plugin hooks ([#2438](https://github.com/rollup/rollup/pull/2438))
- Expose ESM browser build and minify browser builds ([#2437](https://github.com/rollup/rollup/pull/2437)
- Associate hoisted variables in function bodys with function parameters ([#2456](https://github.com/rollup/rollup/pull/2456))
- Fix issue when deconflicting variables used as pattern defaults ([#2446](https://github.com/rollup/rollup/pull/2446))
- Properly deconflict default exported class and function expressions with ids ([#2458](https://github.com/rollup/rollup/pull/2458))
- Faster internal test builds ([#2457](https://github.com/rollup/rollup/pull/2457))
- Switch to rollup-plugin-typescript2 ([#2460](https://github.com/rollup/rollup/pull/2460))
- Fix internal "perf" script ([#2433](https://github.com/rollup/rollup/pull/2433))
- Test that errors are passed to the buildEnd hook ([#2450](https://github.com/rollup/rollup/pull/2450))
## 0.65.2
_2018-09-05_
- Prevent watch mode memory leak ([#2441](https://github.com/rollup/rollup/pull/2441))
## 0.65.1
_2018-09-05_
- Prevent globbing when using chokidar ([#2432](https://github.com/rollup/rollup/pull/2432))
## 0.65.0
_2018-08-25_
- Refactor and unify plugin system ([#2382](https://github.com/rollup/rollup/pull/2382))
- Implement plugin cache API ([#2389](https://github.com/rollup/rollup/pull/2389))
- Add watchChange plugin hook to watch changed files, deprecate asset dependencies ([#2405](https://github.com/rollup/rollup/pull/2405))
- Refine asset handling ([#2369](https://github.com/rollup/rollup/pull/2369))
- Implement `renderChunk` hook to replace `transformChunk` and `transformBundle` hooks ([#2406](https://github.com/rollup/rollup/pull/2406))
- Add rollup version to plugin context ([#2394](https://github.com/rollup/rollup/pull/2394))
- Do not resume stdin in watch mode to fix it for Lerna users ([#2410](https://github.com/rollup/rollup/pull/2410))
- Allow `[format]` placeholder for id generation ([#2387](https://github.com/rollup/rollup/pull/2387))
- Always log error stacks even when a code frame is given ([#2417](https://github.com/rollup/rollup/pull/2417))
- Do not test module ids starting with `\0` as external ([#2400](https://github.com/rollup/rollup/pull/2400))
- Fix tracing of namespace variables ([#2408](https://github.com/rollup/rollup/pull/2408))
- Fix re-tracing of namespace variables ([#2420](https://github.com/rollup/rollup/pull/2420))
- Properly wrap comment annotations in SystemJS exports ([#2408](https://github.com/rollup/rollup/pull/2408))
- Fix renaming of destructured parameters ([#2419](https://github.com/rollup/rollup/pull/2419))
- Do not display version in watch mode when using `--silent` ([#2392](https://github.com/rollup/rollup/pull/2392))
- Make `cacheExpiry` an experimental option for now ([#2401](https://github.com/rollup/rollup/pull/2401))
- Lint test configs on commit ([#2402](https://github.com/rollup/rollup/pull/2402))
- Add code of conduct ([#2388](https://github.com/rollup/rollup/pull/2388))
- Move to CircleCI ([#2390](https://github.com/rollup/rollup/pull/2390))
- Update pull request template ([#2404](https://github.com/rollup/rollup/pull/2404))
## 0.64.1
_2018-08-07_
- Do not render initializers of hoisted variables in dead branches ([#2384](https://github.com/rollup/rollup/pull/2384))
## 0.64.0
_2018-08-07_
- Print memory consumption together with performance timings ([#2370](https://github.com/rollup/rollup/pull/2370))
- Enable plugins to mark imports as external by returning false for resolveId ([#2351](https://github.com/rollup/rollup/pull/2351))
- Always retain empty manual chunks ([#2362](https://github.com/rollup/rollup/pull/2362))
- Ensure CLI warnings are shown on errors and add error for external id collisions ([#2334](https://github.com/rollup/rollup/pull/2334))
- Remove unnecessary dependency, update dependencies, fix linting of test config ([#2376](https://github.com/rollup/rollup/pull/2376))
- Add targeted Github issue templates ([#2356](https://github.com/rollup/rollup/pull/2356))
## 0.63.5
_2018-08-01_
- Ensure onwrite plugin hooks execute in sequence ([#2364](https://github.com/rollup/rollup/pull/2364))
- Always warn when no name is provided for a global module ([#2359](https://github.com/rollup/rollup/pull/2359))
- Add utility type for user created plugins ([#2355](https://github.com/rollup/rollup/pull/2355))
- Remove deprecated es6 format from types ([#2349](https://github.com/rollup/rollup/pull/2349))
- Mark inlineDynamicImports as optional in types ([#2348](https://github.com/rollup/rollup/pull/2348))
## 0.63.4
_2018-07-20_
- Use turbocolor instead of chalk ([#2339](https://github.com/rollup/rollup/pull/2339))
## 0.63.3
_2018-07-20_
- Handle expressions where "in" and "instanceof" are applied to primitive values ([#2344](https://github.com/rollup/rollup/pull/2344))
## 0.63.2
_2018-07-18_
- Fix bind order in for-of loops ([#2338](https://github.com/rollup/rollup/pull/2338))
## 0.63.1
_2018-07-18_
## 0.63.0
_2018-07-17_
- Fix many tree-shaking related issues ([#2315](https://github.com/rollup/rollup/pull/2315))
- Add experimental support for top-level await ([#2235](https://github.com/rollup/rollup/pull/2235))
- Prevent duplicate version printout in watch mode ([#2325](https://github.com/rollup/rollup/pull/2325))
- Respect error frames provided by plugins ([#2309](https://github.com/rollup/rollup/pull/2309))
- Add `esm` format alias to types ([#2327](https://github.com/rollup/rollup/pull/2327))
- Further unify internal test setup ([#2329](https://github.com/rollup/rollup/pull/2329))
## 0.62.0
_2018-06-27_
- Add option to automatically shim missing exports ([#2118](https://github.com/rollup/rollup/pull/2118))
- Inline dynamic imports that are also imported statically and only used in a single chunk ([#2295](https://github.com/rollup/rollup/pull/2295))
- Handle caching and invalidation of assets ([#2267](https://github.com/rollup/rollup/pull/2267))
- Fix plugin related types ([#2299](https://github.com/rollup/rollup/pull/2299))
## 0.61.2
_2018-06-23_
- Improve watcher error handling, only rebuild invalidated outputs ([#2296](https://github.com/rollup/rollup/pull/2296))
- Update dependencies, make watcher more stable ([#2297](https://github.com/rollup/rollup/pull/2297))
## 0.61.1
_2018-06-21_
- Do not try to deconflict "undefined" ([#2291](https://github.com/rollup/rollup/pull/2291))
- Properly track values for loop interator declarations and reassigned namespaces, add smoke test ([#2292](https://github.com/rollup/rollup/pull/2292))
## 0.61.0
_2018-06-20_
- Declare file dependencies via transform plugin hooks ([#2259](https://github.com/rollup/rollup/pull/2259))
- Handle undefined values when evaluating conditionals ([#2264](https://github.com/rollup/rollup/pull/2264))
- Handle known undefined properties when evaluating conditionals ([#2265](https://github.com/rollup/rollup/pull/2265))
- Access watch events via the plugin context ([#2261](https://github.com/rollup/rollup/pull/2261))
- Add option to suppress `__esModule` flag in output ([#2287](https://github.com/rollup/rollup/pull/2287))
- Fix issue when re-declaring variables, track reassignments in more cases ([#2279](https://github.com/rollup/rollup/pull/2279))
- Add VSCode debug settings ([#2276](https://github.com/rollup/rollup/pull/2276))
## 0.60.7
_2018-06-14_
- Fix typing issue ([#2269](https://github.com/rollup/rollup/pull/2269))
## 0.60.6
_2018-06-14_
- Track mutations of included virtual arrays ([#2263](https://github.com/rollup/rollup/pull/2263))
- Update readme ([#2266](https://github.com/rollup/rollup/pull/2266))
## 0.60.5
_2018-06-14_
- Track deep reassignments of global and exported variables and improve performance ([#2254](https://github.com/rollup/rollup/pull/2254))
## 0.60.4
_2018-06-13_
- Properly handle initially uninitialized exports and exports of globals in SystemJS output ([#2258](https://github.com/rollup/rollup/pull/2258))
## 0.60.3
_2018-06-13_
- Fix types to allow watching an array of outputs ([#2262](https://github.com/rollup/rollup/pull/2262))
## 0.60.2
_2018-06-11_
- Permit setting an asset's source in `generateBundle` ([#2256](https://github.com/rollup/rollup/pull/2256))
- Add automatic linting ([#2242](https://github.com/rollup/rollup/pull/2242))
## 0.60.1
_2018-06-07_
- Fix plugin regressions ([#2246](https://github.com/rollup/rollup/pull/2246))
- Avoid conflicts for large numbers of variables ([#2244](https://github.com/rollup/rollup/pull/2244))
## 0.60.0
_2018-06-06_
- New plugin hooks: transformChunk, buildStart, buildEnd; extended plugin context with warn, error, resolveId, isExternal, emitAsset, setAssetSource and getAssetFileName available to any hook ([#2208](https://github.com/rollup/rollup/pull/2208))
- [BREAKING] Deprecate the `legacy` option and thus IE8 support ([#2141](https://github.com/rollup/rollup/pull/2141))
- Detect more known extensions and load .mjs without extension ([#2211](https://github.com/rollup/rollup/pull/2211))
- Add compact output mode ([#2151](https://github.com/rollup/rollup/pull/2151))
- Significantly improve sourcemap generation performance ([#2228](https://github.com/rollup/rollup/pull/2228))
- Enable naming SystemJS modules ([#2028](https://github.com/rollup/rollup/pull/2028))
- Do not use alternate screen if clearScreen is set in watch mode ([#2125](https://github.com/rollup/rollup/pull/2125))
- Allow object input form for code-splitting in watch mode ([#2217](https://github.com/rollup/rollup/pull/2217))
- Track reassignments of methods of exports from outside ([#2240](https://github.com/rollup/rollup/pull/2240))
- Preserve id of default exported functions and classes ([#2234](https://github.com/rollup/rollup/pull/2234))
- Add semicolons after default exports ([#2209](https://github.com/rollup/rollup/pull/2209))
- Fix build problems on Windows ([#2232](https://github.com/rollup/rollup/pull/2232))
- Display install size in readme ([#2196](https://github.com/rollup/rollup/pull/2196))
- Improve preserve modules test ([#2236](https://github.com/rollup/rollup/pull/2236))
## 0.59.4
_2018-05-28_
- Fix performance regression when many return statements are used ([#2218](https://github.com/rollup/rollup/pull/2218))
## 0.59.3
_2018-05-24_
- Fix reassignment tracking for constructor parameters ([#2214](https://github.com/rollup/rollup/pull/2214))
## 0.59.2
_2018-05-21_
- Fix reassignment tracking in for-in loops ([#2205](https://github.com/rollup/rollup/pull/2205))
## 0.59.1
_2018-05-16_
- Fix infinite recursion when determining literal values of circular structures ([#2193](https://github.com/rollup/rollup/pull/2193))
- Fix invalid code when simplifying expressions without spaces ([#2194](https://github.com/rollup/rollup/pull/2194))
## 0.59.0
_2018-05-15_
- Tree-shake statically analysable dynamic conditionals ([#2167](https://github.com/rollup/rollup/pull/2167))
- Do not emit empty chunks when code-splitting or empty files when preserving modules ([#2128](https://github.com/rollup/rollup/pull/2128))
- Support `import.meta.url` ([#2164](https://github.com/rollup/rollup/pull/2164))
- Add `esm` format alias ([#2102](https://github.com/rollup/rollup/pull/2102))
- Use alphanumeric base64 characters when deconflicting variables ([#2188](https://github.com/rollup/rollup/pull/2188))
- Improve handling of external modules imported as both default and named imports ([#2136](https://github.com/rollup/rollup/pull/2136))
- Properly deconflict named imports from other chunks ([#2177](https://github.com/rollup/rollup/pull/2177))
- Fix an issue with namespaces containing reexports ([#2157](https://github.com/rollup/rollup/pull/2157))
- Fix an issue with with incorrectly mapped default exports when code-splitting CJS or AMD modules ([#2178](https://github.com/rollup/rollup/pull/2178))
- Fix an issue with wrong paths of relative external imports ([#2160](https://github.com/rollup/rollup/pull/2160))
- Fix an issue when using default exports and `interop: false` ([#2149](https://github.com/rollup/rollup/pull/2149))
- Fix in issue with invalid syntax in SystemJS output ([#2187](https://github.com/rollup/rollup/pull/2187))
- Fix an issue when tree-shaking call expressions and reassigned variables ([#2186](https://github.com/rollup/rollup/pull/2186))
- Fix file paths in source maps ([#2161](https://github.com/rollup/rollup/pull/2161))
- Fix wrong file name in error message ([#2137](https://github.com/rollup/rollup/pull/2137))
- Always use npm 5 on CI ([#2185](https://github.com/rollup/rollup/pull/2185))
## 0.58.2
_2018-04-23_
- Fix rendering of certain statically resolvable if statements ([#2146](https://github.com/rollup/rollup/pull/2146))
## 0.58.1
_2018-04-18_
- Fix comment detection ([#2129](https://github.com/rollup/rollup/pull/2129))
## 0.58.0
_2018-04-16_
- Support individual chunk names with optional content hashes ([#2068](https://github.com/rollup/rollup/pull/2068))
- Support manually created chunks ([#2084](https://github.com/rollup/rollup/pull/2084))
- Automatically import deep dependencies when code splitting for better performance ([#2073](https://github.com/rollup/rollup/pull/2073))
- Automatically minify internal export/import names for esm and system output ([#2087](https://github.com/rollup/rollup/pull/2087))
- Add option to automatically merge small chunks ([#2090](https://github.com/rollup/rollup/pull/2090))
- Significantly improve tree-shaking performance ([#2119](https://github.com/rollup/rollup/pull/2119))
- Enable tree-shaking for logical expressions ([#2098](https://github.com/rollup/rollup/pull/2098))
- Rework external types and reduce type related dependencies ([#2108](https://github.com/rollup/rollup/pull/2108))
- Support parallel dependency resolution ([#2116](https://github.com/rollup/rollup/pull/2116))
- Improve deprecation handling ([#2076](https://github.com/rollup/rollup/pull/2076))
- Enable `--perf` timings in watch mode ([#2065](https://github.com/rollup/rollup/pull/2065))
- Improve performance timers ([#2111](https://github.com/rollup/rollup/pull/2111))
- Improve error handling for plugins ([#2100](https://github.com/rollup/rollup/pull/2100))
- Improve error when using `--dir` in a single file build ([#2123](https://github.com/rollup/rollup/pull/2123))
- Do not warn for external imports that are unused due to tree-shaking ([#2124](https://github.com/rollup/rollup/pull/2124))
- Update mixed export warning message ([#2107](https://github.com/rollup/rollup/pull/2107))
- Remove duplicate badges from readme ([#2083](https://github.com/rollup/rollup/pull/2083))
- Update readme examples ([#2086](https://github.com/rollup/rollup/pull/2086))
## 0.57.1
_2018-03-17_
- Improve sourcemap generation performance ([#2062](https://github.com/rollup/rollup/pull/2062))
- Add reserved config option namespace and improve CLI interface ([#2063](https://github.com/rollup/rollup/pull/2063))
- Fix issue with default exported function and class expressions ([#2059](https://github.com/rollup/rollup/pull/2059))
- Replace `forEach` with faster `for` loops in some places ([#2064](https://github.com/rollup/rollup/pull/2064))
## 0.57.0
_2018-03-15_
- Add option to preserve the module structure instead of bundling ([#1922](https://github.com/rollup/rollup/pull/1922))
- Enable watch mode when code-splitting ([#2035](https://github.com/rollup/rollup/pull/2035))
- Optionally pass CLI commands to config file ([#1926](https://github.com/rollup/rollup/pull/1926))
- Option to add correct `.toString` tags to namespaces ([#2041](https://github.com/rollup/rollup/pull/2041))
- Option and scripts to display performance timings ([#2045](https://github.com/rollup/rollup/pull/2045))
- Fixes for exported or early accessed namespaces + improved namespace indentation ([#2041](https://github.com/rollup/rollup/pull/2041))
- Include missing TypeScript dependencies ([#1965](https://github.com/rollup/rollup/pull/1965))
- Add #\_PURE annotation to frozen namespaces ([#2044](https://github.com/rollup/rollup/pull/2044))
- Improve sourcemap and tree-shaking performance ([#2052](https://github.com/rollup/rollup/pull/2052))
- Inline sourcemap lookups and make rollup smaller ([#2055](https://github.com/rollup/rollup/pull/2055))
- Use updated magic-string types ([#2057](https://github.com/rollup/rollup/pull/2057))
- [BREAKING] Revert class id preservation from #2025 ([#2048](https://github.com/rollup/rollup/pull/2048))
- [BREAKING] Refactor missing export plugin hook ([#1987](https://github.com/rollup/rollup/pull/1987))
## 0.56.5
_2018-03-07_
- Preserve ids when deconflicting classes ([#2025](https://github.com/rollup/rollup/pull/2025))
- Fix an issue with re-exported namespace imports ([#2034](https://github.com/rollup/rollup/pull/2034))
- Prevent an infinite loop when binding member expressions ([#1963](https://github.com/rollup/rollup/pull/1963))
- Convert code style via prettier ([#2031](https://github.com/rollup/rollup/pull/2031))
- Fix links in documentation ([#2026](https://github.com/rollup/rollup/pull/2026))
## 0.56.4
_2018-03-05_
- Make rollup builds reproducible ([#2024](https://github.com/rollup/rollup/pull/2024))
- Improve error handling for source maps ([#2012](https://github.com/rollup/rollup/pull/2012))
- Properly handle SystemJS default exports without semicolons ([#2019](https://github.com/rollup/rollup/pull/2019))
- Properly handle importing the same variable several times when code-splitting ([#2020](https://github.com/rollup/rollup/pull/2020))
- Improve re-export tracing ([#2021](https://github.com/rollup/rollup/pull/2021))
- Apply "prettier" on commit ([#2017](https://github.com/rollup/rollup/pull/2017))
- Automatically clean up outdated tests ([#2009](https://github.com/rollup/rollup/pull/2009))
- Add SystemJS output to form tests ([#2022](https://github.com/rollup/rollup/pull/2022))
- Improve internal build configuration ([#2016](https://github.com/rollup/rollup/pull/2016))
## 0.56.3
_2018-02-25_
- Fix issues around default exports and module facades ([#2001](https://github.com/rollup/rollup/pull/2001))
- Improve and fix internal chunk interface ([#1994](https://github.com/rollup/rollup/pull/1994))
- Fix superfluous semicolons added after declarations ([#1999](https://github.com/rollup/rollup/pull/1999))
- Improve code-splitting tests ([#1990](https://github.com/rollup/rollup/pull/1990))
## 0.56.2
_2018-02-19_
- Fix handling of reassigned default exports ([#1975](https://github.com/rollup/rollup/pull/1975))
- Fix handling of renamed exports in entry points ([#1977](https://github.com/rollup/rollup/pull/1977))
- Update internal TypeScript version ([#1980](https://github.com/rollup/rollup/pull/1980))
- Omit compiled source files from published types ([#1981](https://github.com/rollup/rollup/pull/1981))
- Fix example in readme file ([#1984](https://github.com/rollup/rollup/pull/1984))
- Fix non-replaced dynamic imports in non-ESM output ([#1985](https://github.com/rollup/rollup/pull/1985))
## 0.56.1
_2018-02-16_
- Fix regression when rendering switch statements ([#1971](https://github.com/rollup/rollup/pull/1971))
## 0.56.0
_2018-02-15_
- Update to ECMAScript 2018 ([#1953](https://github.com/rollup/rollup/pull/1953))
- Rework tree-shaking rendering algorithm ([#1949](https://github.com/rollup/rollup/pull/1949))
- Tree-shake pure prototype calls on literals ([#1916](https://github.com/rollup/rollup/pull/1916))
- Expose AST parser to plugins ([#1945](https://github.com/rollup/rollup/pull/1945))
- Fix namespace re-export deconflicting ([#1960](https://github.com/rollup/rollup/pull/1960))
- Allow globals to be re-exported ([#1959](https://github.com/rollup/rollup/pull/1959))
- Fix internal performance timers ([#1966](https://github.com/rollup/rollup/pull/1966))
## 0.55.5
_2018-02-10_
- Remove OpenCollective dependency ([#1915](https://github.com/rollup/rollup/pull/1915))
## 0.55.4
_2018-02-09_
- Improve name deconflicting of external variables ([#1930](https://github.com/rollup/rollup/pull/1930))
- Improve re-export handling ([#1947](https://github.com/rollup/rollup/pull/1947))
- Mark preserveSymlinks option as optional ([#1939](https://github.com/rollup/rollup/pull/1939))
- Enable code-splitting tests to check directory structures ([#1924](https://github.com/rollup/rollup/pull/1924))
- Improve TypeScript definition test ([#1954](https://github.com/rollup/rollup/pull/1954))
## 0.55.3
_2018-02-01_
- Remove OpenCollective dependency ([#1915](https://github.com/rollup/rollup/pull/1915))
## 0.55.2
_2018-02-01_
- Add option to not follow symlinks ([#1819](https://github.com/rollup/rollup/pull/1819))
- Fix crash in windows shell ([#1928](https://github.com/rollup/rollup/pull/1928))
- Fix and test for external TypeScript errors ([#1903](https://github.com/rollup/rollup/pull/1903))
- Activate OpenCollective ([#1915](https://github.com/rollup/rollup/pull/1915))
- Optimize CI scripts ([#1921](https://github.com/rollup/rollup/pull/1921))
## 0.55.1
_2018-01-26_
- Improve dynamic import workflow ([#1907](https://github.com/rollup/rollup/pull/1907))
- Properly handle multiple dynamic imports of the same module ([#1911](https://github.com/rollup/rollup/pull/1911))
- Fix import specifier deshadowing ([#1912](https://github.com/rollup/rollup/pull/1912))
- Allow plugin load hook to return an empty string ([#1908](https://github.com/rollup/rollup/pull/1908))
- Let onwarn handler accept strings ([#1905](https://github.com/rollup/rollup/pull/1905))
## 0.55.0
_2018-01-23_
- Support code splitting ([#1841](https://github.com/rollup/rollup/pull/1841))
- Support SystemJS as output format ([#1897](https://github.com/rollup/rollup/pull/1897))
- Allow injecting acorn plugins ([#1857](https://github.com/rollup/rollup/pull/1857))
- Add `missingExport` plugin hook ([#1845](https://github.com/rollup/rollup/pull/1845))
- No longer parse config files via bublé ([#1899](https://github.com/rollup/rollup/pull/1899))
- Use externally maintained dynamic import acorn plugin ([#1891](https://github.com/rollup/rollup/pull/1891))
- Fix an error message ([#1886](https://github.com/rollup/rollup/pull/1886))
- Refactor internal rendering options ([#1900](https://github.com/rollup/rollup/pull/1900))
- Extract internal path resolution ([#1879](https://github.com/rollup/rollup/pull/1879))
- Extract internal bundle option handling ([#1880](https://github.com/rollup/rollup/pull/1880))
- Add import description type ([#1884](https://github.com/rollup/rollup/pull/1884))
- Clean up watch options types ([#1860](https://github.com/rollup/rollup/pull/1860))
- Clean up some tests ([#1888](https://github.com/rollup/rollup/pull/1888))
## 0.54.1
_2018-01-17_
- Fix TypeScript errors in emitted type definitions ([#1871](https://github.com/rollup/rollup/pull/1871))
## 0.54.0
_2018-01-12_
- Automatically inline locally resolvable dynamic imports ([#1816](https://github.com/rollup/rollup/pull/1816))
- Preserve directives in function bodies ([#1856](https://github.com/rollup/rollup/pull/1856))
- Refactor an error notification ([#1846](https://github.com/rollup/rollup/pull/1846))
- Refactor a wrong import ([#1863](https://github.com/rollup/rollup/pull/1863))
- Improve emitted TypeScript definitions ([#1864](https://github.com/rollup/rollup/pull/1864))
- Refactor unused import ([#1866](https://github.com/rollup/rollup/pull/1866))
## 0.53.4
_2018-01-10_
- More type cleanup ([#1858](https://github.com/rollup/rollup/pull/1858))
- Use chalks internal helper to detect if colors should be used ([#1853](https://github.com/rollup/rollup/pull/1853))
- Refactor entity handling to use interfaces ([#1840](https://github.com/rollup/rollup/pull/1840))
- Use immutable.js internal types ([#1844](https://github.com/rollup/rollup/pull/1844))
- Ship `TypeScript` declaration files ([#1837](https://github.com/rollup/rollup/pull/1837))
## 0.53.3
_2018-01-02_
- Use correct name when re-exporting from external modules ([#1794](https://github.com/rollup/rollup/pull/1794))
- Disable warnings when `resolveId` returns false ([#1825](https://github.com/rollup/rollup/pull/1825))
## 0.53.2
_2017-12-30_
- Properly handle output arrays in the JavaScript API ([#1827](https://github.com/rollup/rollup/pull/1827))
## 0.53.1
_2017-12-28_
- Properly deprecate more config options ([#1812](https://github.com/rollup/rollup/pull/1812))
- Pass output options to `transformBundle` plugin hook ([#1813](https://github.com/rollup/rollup/pull/1813))
## 0.53.0
_2017-12-22_
- Experimental dynamic import support ([#1790](https://github.com/rollup/rollup/pull/1790))
- Unify config validation ([#1805](https://github.com/rollup/rollup/pull/1805))
## 0.52.3
_2017-12-19_
- Properly hoist default exported functions in more situations ([#1799](https://github.com/rollup/rollup/pull/1799))
- Allow plugin transformations to not overwrite source maps by returning null ([#1797](https://github.com/rollup/rollup/pull/1797))
- Provide more parameters to "external" handler ([#1792](https://github.com/rollup/rollup/pull/1792))
## 0.52.2
_2017-12-15_
- No longer ignore side-effects in JSON.parse and JSON.stringify ([#1785](https://github.com/rollup/rollup/pull/1785))
- Updated links in warnings ([#1776](https://github.com/rollup/rollup/pull/1776))
- No longer prevent self-imports ([#1777](https://github.com/rollup/rollup/pull/1777))
- Properly hoist default exported functions ([#1787](https://github.com/rollup/rollup/pull/1787))
- Prevent corruption when re-exporting default exports ([#1765](https://github.com/rollup/rollup/pull/1765))
## 0.52.1
_2017-12-05_
- Improve deprecation warnings ([#1765](https://github.com/rollup/rollup/pull/1765))
- Properly use stdin ([#1774](https://github.com/rollup/rollup/pull/1774))
- Let --environment be used multiple times ([#1768](https://github.com/rollup/rollup/pull/1768))
- Always transpile config files ([#1759](https://github.com/rollup/rollup/pull/1759))
- Respect globals option in headers of UMD and IIFE files ([#1747](https://github.com/rollup/rollup/pull/1747))
## 0.52.0
_2017-11-25_
- Accept config as promise ([#1731](https://github.com/rollup/rollup/pull/1731))
- Accept promises for intro/outro/banner/footer ([#1253](https://github.com/rollup/rollup/pull/1253))
- Option to prevent freezing of namespace imports ([#1696](https://github.com/rollup/rollup/pull/1696))
- Option to retain all output in watch mode ([#1688](https://github.com/rollup/rollup/pull/1688))
- Options to fine-tune treeshaking ([#1760](https://github.com/rollup/rollup/pull/1760))
## 0.51.8
_2017-11-19_
- Fix speed problems by simplifying treeshaking reassignment handling ([#1740](https://github.com/rollup/rollup/pull/1740))
- Update dependencies ([#1742](https://github.com/rollup/rollup/pull/1742))
## 0.51.7
_2017-11-17_
- Keep "this"-context when calling sequence expressions ([#1724](https://github.com/rollup/rollup/pull/1724))
## 0.51.6
_2017-11-16_
- Use sourcemaps to determine error locations ([#1728](https://github.com/rollup/rollup/pull/1728))
## 0.51.5
_2017-11-11_
- Fix regressions with uninitialised conditional expressions ([#1720](https://github.com/rollup/rollup/pull/1720))
## 0.51.4
_2017-11-11_
- Fix regressions preventing builds ([#1725](https://github.com/rollup/rollup/pull/1725))
## 0.51.3
_2017-11-10_
- Fix regression when treeshaking sequence expressions ([#1717](https://github.com/rollup/rollup/pull/1717))
## 0.51.2
_2017-11-09_
- Fix treeshaking regression when labels are used inside functions ([#1712](https://github.com/rollup/rollup/pull/1712))
## 0.51.1
_2017-11-08_
- Fix an issue with empty return statements ([#1704](https://github.com/rollup/rollup/pull/1704))
## 0.51.0
_2017-11-08_
- Massive improvements to the treeshaking algorithm ([#1667](https://github.com/rollup/rollup/pull/1667))
## 0.50.1
_2017-11-08_
- Fix treeshaking regression ([#1695](https://github.com/rollup/rollup/pull/1695))
- Treeshaking improvements ([#1650](https://github.com/rollup/rollup/pull/1650))
- Enable installation from Github ([#1670](https://github.com/rollup/rollup/pull/1670))
- Update documentation ([#1660](https://github.com/rollup/rollup/pull/1660))
## 0.50.0
_2017-09-16_
- Many treeshaking improvements ([#1624](https://github.com/rollup/rollup/pull/1624))
- Show finish time in watch mode ([#1620](https://github.com/rollup/rollup/pull/1620))
## 0.49.3
_2017-09-08_
- Respect `watch` options ([#1596](https://github.com/rollup/rollup/issues/1596))
- Fix treeshaking regressions ([#1604](https://github.com/rollup/rollup/pull/1604))
- Allow `-o` to work with `output.format` ([#1606](https://github.com/rollup/rollup/pull/1606))
## 0.49.2
_2017-08-29_
- Fix treeshaking regressions ([#1591](https://github.com/rollup/rollup/pull/1591))
## 0.49.1
_2017-08-28_
- Fix treeshaking regressions ([#1586](https://github.com/rollup/rollup/pull/1586))
## 0.49.0
_2017-08-27_
- Completely update the treeshaking algorithm ([#1582](https://github.com/rollup/rollup/pull/1582))
- Only flip screen buffer if appropriate ([#1574](https://github.com/rollup/rollup/pull/1574))
- Guard against two instances creating the same dir ([#1576](https://github.com/rollup/rollup/pull/1576))
## 0.48.2
- Paths is an output option ([#1569](https://github.com/rollup/rollup/pull/1569))
## 0.48.1
- Print deprecation warnings in watch mode, and fix options when watcher restarts ([#1568](https://github.com/rollup/rollup/pull/1568))
## 0.48.0
- Numerous changes to the `options` object and CLI arguments ([#1479](https://github.com/rollup/rollup/issues/1479)). See [this gist](https://gist.github.com/Rich-Harris/d472c50732dab03efeb37472b08a3f32) for a rundown.
## 0.47.6
- Set `process.env.ROLLUP_WATCH` _before_ loading config file
## 0.47.5
- Fix broken multi-bundle configs with `rollup.watch` ([#1532](https://github.com/rollup/rollup/issues/1532))
## 0.47.4
- Delete cached config file before reloading in watch mode
## 0.47.3
- Deshadow aliased imports ([#1550](https://github.com/rollup/rollup/issues/1550))
## 0.47.2
- Rebuild with dependency that npm randomly deleted
## 0.47.1
- Ignore external namespace imports when deshadowing ([#1547](https://github.com/rollup/rollup/issues/1547))
## 0.47.0
- Watch config file, restart `rollup.watch` on change ([#1535](https://github.com/rollup/rollup/issues/1535))
- Correctly render `export { foo } from` declarations in `es` output ([#1543](https://github.com/rollup/rollup/pull/1543))
- Reinstate missing `rollup.VERSION`
## 0.46.3
- init for/for-of loop section head with correct scopes ([#1538](https://github.com/rollup/rollup/issues/1538), [#1539](https://github.com/rollup/rollup/issues/1539))
- Fix namespace imports and re-exports in `es` output ([#1511](https://github.com/rollup/rollup/issues/1511))
- Deshadow indirectly imported namespaces ([#1488](https://github.com/rollup/rollup/issues/1488), [#1505](https://github.com/rollup/rollup/issues/1505))
## 0.46.2
- Pass options to `bundle.write` correctly in `rollup.watch` ([#1533](https://github.com/rollup/rollup/issues/1533))
- init for-in loop section head with correct scopes ([#1480](https://github.com/rollup/rollup/issues/1480))
- support `--no-interop` flag ([#1524](https://github.com/rollup/rollup/issues/1524))
## 0.46.1
- Remove `rollup.watch` from browser build ([#1530](https://github.com/rollup/rollup/issues/1530))
- Remove `source-map-support` dependency ([#1528](https://github.com/rollup/rollup/issues/1528))
## 0.46.0
- `options.format` is now required ([#1491](https://github.com/rollup/rollup/pull/1491))
- if `options.format` is `es6`, it will now throw an error (should be `es`) ([#1491](https://github.com/rollup/rollup/pull/1491))
- Add experimental `rollup.watch` method, replacing [rollup-watch](https://github.com/rollup/rollup-watch) ([#1491](https://github.com/rollup/rollup/pull/1491))
- Batch warnings together in CLI output ([#1491](https://github.com/rollup/rollup/pull/1491))
- Clear screen between rebuilds in `--watch` mode ([#1491](https://github.com/rollup/rollup/pull/1491))
- `onwarn` function's second argument is the default handler, allowing easier filtering without reimplementing any logic ([#1491](https://github.com/rollup/rollup/pull/1491))
- Prevent semi-colon removal after variable declaration that is for loop body ([#1275](https://github.com/rollup/rollup/issues/1275))
- Return `exports` for namespaced but non-extended IIFE bundles ([#1492](https://github.com/rollup/rollup/issues/1492))
- Fix scoping in switch statements ([#1498](https://github.com/rollup/rollup/pull/1498))
- Handle side-effects in tagged template expressions ([#1508](https://github.com/rollup/rollup/pull/1508))
- More descriptive error for missing options.format ([#1510](https://github.com/rollup/rollup/pull/1510))
- Refactor scope handling ([#1517](https://github.com/rollup/rollup/pull/1517))
- Handle failure of a config in multi-config build ([#1513](https://github.com/rollup/rollup/issues/1513))
## 0.45.2
- Fix interop when import is a string ([#1486](https://github.com/rollup/rollup/issues/1486))
- Separate `resolvedIds` from `resolvedExternalIds` ([#1490](https://github.com/rollup/rollup/pull/1490))
- Add `--extend` flag to CLI ([#1482](https://github.com/rollup/rollup/pull/1482))
## 0.45.1
- Remove `weak` from `optionalDependencies` ([#1483](https://github.com/rollup/rollup/issues/1483))
## 0.45.0
- [BREAKING] `bundle.generate(...)` returns a Promise, so that `transformBundle` plugin hooks can be asynchronous ([#1474](https://github.com/rollup/rollup/issues/1474))
## 0.44.0
- [BREAKING] Don't extend existing globals, unless `options.extend` is true ([#827](https://github.com/rollup/rollup/issues/827))
- Fix handling of catch clause parameters ([#1462](https://github.com/rollup/rollup/issues/1462))
## 0.43.1
- Fix memory leak on incremental rebuilds ([#883](https://github.com/rollup/rollup/issues/883))
- Allow `this.warn` and `this.error` to accept a `{line, column}` object as an alternative to a character index ([#1265](https://github.com/rollup/rollup/issues/1265))
- Print more useful error if entry module is 'external' ([#1264](https://github.com/rollup/rollup/issues/1264))
- Catch errors in `bundle.generate` options ([#1463](https://github.com/rollup/rollup/pull/1463))
- Fix magic-string deprecation warning ([#1445](https://github.com/rollup/rollup/pull/1445))
## 0.43.0
- Allow config files to import JSON ([#1426](https://github.com/rollup/rollup/issues/1426))
- Allow undefined imports in interop block ([#1341](https://github.com/rollup/rollup/issues/1341))
- Add `process.env.ROLLUP_WATCH = 'true'` in watch mode ([#1429](https://github.com/rollup/rollup/issues/1429))
- Add `pureExternalModules` option ([#1352](https://github.com/rollup/rollup/issues/1352))
- Allow plugins to specify `options.entry` ([#1270](https://github.com/rollup/rollup/issues/1270))
- Update dependencies
## 0.42.0
- Deprecate `options.moduleId` in favour of `options.amd.id` ([#1365](https://github.com/rollup/rollup/pull/1365))
- Add `options.amd.define` option to specify name of AMD `define` function ([#1365](https://github.com/rollup/rollup/pull/1365))
- Fix incorrect class removal with `treeshake: false` ([#1375](https://github.com/rollup/rollup/pull/1375))
- Deconflict module exports imported as namespaces ([#1384](https://github.com/rollup/rollup/issues/1384))
- Handle bare self-imports ([#1274](https://github.com/rollup/rollup/issues/1274))
- Allow config file to export an array of multiple configs ([#1389](https://github.com/rollup/rollup/pull/1389))
- Handle exponentiation operator, and fail gracefully on unknown operators ([#1416](https://github.com/rollup/rollup/issues/1416))
- Add `watch` option ([#1424](https://github.com/rollup/rollup/pull/1424))
## 0.41.6
- Preserve `originalSourceMap` on incremental rebuilds for loaders with sourcemaps ([#1336](https://github.com/rollup/rollup/issues/1336))
## 0.41.5
- Wrap ternary consequent/alternate sequences in parens ([#1273](https://github.com/rollup/rollup/issues/1273))
- Fix erroneous warning on multiple `export * from` declarations with defaults ([#1278](https://github.com/rollup/rollup/issues/1278))
- Prevent variable conflicts with `treeshake: false` ([#1268](https://github.com/rollup/rollup/issues/1268))
- Allow missing `source` when collapsing sourcemaps ([#1254](https://github.com/rollup/rollup/issues/1254))
- Allow plugins to log with strings ([#1316](https://github.com/rollup/rollup/pull/1316))
## 0.41.4
- Fix cases of multiple `export * from 'external'` declarations ([#1252](https://github.com/rollup/rollup/issues/1252))
- Fix 'TODO' error message ([#1257](https://github.com/rollup/rollup/issues/1257))
## 0.41.3
- Don't treat `this.foo` as possible namespace ([#1258](https://github.com/rollup/rollup/issues/1258))
## 0.41.2
- Optimize `namespace['foo']` references ([#1240](https://github.com/rollup/rollup/pull/1240))
## 0.41.1
- Include `new` expressions where callee is a class with side-effects ([#980](https://github.com/rollup/rollup/issues/980) [#1233](https://github.com/rollup/rollup/issues/1233))
## 0.41.0
- Add `this.warn(...)` and `this.error(...)` methods to plugin `transform` hook contexts ([#1140](https://github.com/rollup/rollup/issues/1140))
- `throw` always considered to be a side effect ([#1227](https://github.com/rollup/rollup/pull/1227))
## 0.40.2
- Add `file` property to sourcemaps for bundles with plugins ([#986](https://github.com/rollup/rollup/issues/986))
- Don't require globals for empty imports ([#1217](https://github.com/rollup/rollup/issues/1217))
## 0.40.1
- Allow missing space between `export default` and declaration ([#1218](https://github.com/rollup/rollup/pull/1218))
## 0.40.0
- [BREAKING] Better, more consistent error logging ([#1212](https://github.com/rollup/rollup/pull/1212))
- Don't use colours and emojis for non-TTY stderr ([#1201](https://github.com/rollup/rollup/issues/1201))
## 0.39.2
- Prevent mutation of cached ASTs (fixes stack overflow with rollup-watch) ([#1205](https://github.com/rollup/rollup/pull/1205))
## 0.39.1
- Ignore `var` initialisers in dead branches ([#1198](https://github.com/rollup/rollup/issues/1198))
## 0.39.0
- [BREAKING] Warnings are objects, rather than strings ([#1194](https://github.com/rollup/rollup/issues/1194))
## 0.38.3
- More informative warning for implicit external dependencies ([#1051](https://github.com/rollup/rollup/issues/1051))
- Warn when creating browser bundle with external dependencies on Node built-ins ([#1051](https://github.com/rollup/rollup/issues/1051))
- Statically analyse LogicalExpression nodes, for better dead code removal ([#1061](https://github.com/rollup/rollup/issues/1061))
## 0.38.2
- Preserve `var` declarations in dead branches ([#997](https://github.com/rollup/rollup/issues/997))
- Warn if exporting a call expression that looks like a function declaration ([#1011](https://github.com/rollup/rollup/issues/1011))
- Wrap function expressions in parentheses if necessary ([#1011](https://github.com/rollup/rollup/issues/1011))
## 0.38.1
- Fix sourcemap comment removal ([#1104](https://github.com/rollup/rollup/issues/1104))
- Warn if empty bundle is generated ([#444](https://github.com/rollup/rollup/issues/444))
- Support ES2017 syntax ([#492](https://github.com/rollup/rollup/issues/492))
- Remove unused imports from external modules ([#595](https://github.com/rollup/rollup/issues/595))
- Remove unused function and class declarations inside function bodies ([#1108](https://github.com/rollup/rollup/issues/1108), [#1178](https://github.com/rollup/rollup/issues/1178))
- Deconflict function expression IDs ([#1176](https://github.com/rollup/rollup/issues/1176))
## 0.38.0
- [BREAKING] `export { foo as default }` creates live binding ([#1078](https://github.com/rollup/rollup/issues/1078))
- Prevent sourceMappingURL removal edge case ([#988](https://github.com/rollup/rollup/issues/988))
- Bind function expression IDs to the correct scope ([#1083](https://github.com/rollup/rollup/issues/1083))
- Correctly deshadow destructured parameters with assignments ([#1008](https://github.com/rollup/rollup/issues/1008))
## 0.37.2
- Remove unused `new` expressions without side-effects ([#179](https://github.com/rollup/rollup/issues/179))
- Only remove valid sourceMappingURL comments ([#1132](https://github.com/rollup/rollup/issues/1132))
- Ensure blocks containing activated `var` declarations are included in output ([#1113](https://github.com/rollup/rollup/issues/1113))
- Support plugin outros ([#1116](https://github.com/rollup/rollup/issues/1116))
## 0.37.1
- Follow symlinks ([#447](https://github.com/rollup/rollup/issues/447))
- Fix tree-shaking of recursive functions and other cases ([#1120](https://github.com/rollup/rollup/issues/1120), [#1142](https://github.com/rollup/rollup/issues/1142))
- Support module names that require quotes ([#582](https://github.com/rollup/rollup/issues/582), [#584](https://github.com/rollup/rollup/issues/584))
- Fix [#957](https://github.com/rollup/rollup/issues/957)
## 0.37.0
- [BREAKING] Default exports are not included in reified namespaces ([#1028](https://github.com/rollup/rollup/issues/1028))
- Parentheses do not defeat tree-shaking ([#1101](https://github.com/rollup/rollup/issues/1101), [#1128](https://github.com/rollup/rollup/issues/1128))
- More `legacy` fixes: do not create getters ([#1069](https://github.com/rollup/rollup/pull/1069)), do not include `__esModule` ([#1068](https://github.com/rollup/rollup/pull/1068)), quote reserved property names ([#1057](https://github.com/rollup/rollup/pull/1057))
- Fix missing namespace member warnings ([#1045](https://github.com/rollup/rollup/issues/1045))
- Fix TypeError in arrow function without braces returning a function ([#1062](https://github.com/rollup/rollup/pull/1062))
## 0.36.4
- Only depend on program-level call expressions ([#977](https://github.com/rollup/rollup/issues/977))
## 0.36.3
- Add `legacy` option for IE8 support ([#989](https://github.com/rollup/rollup/pull/989))
## 0.36.2
- Insert semicolons where necessary to fix broken code ([#1004](https://github.com/rollup/rollup/issues/1004))
- Include module ID and location when warning about top-level `this` ([#1012](https://github.com/rollup/rollup/pull/1012))
- More informative error for missing exports ([#1033](https://github.com/rollup/rollup/issues/1033))
- `options.moduleContext` for per-module context overrides ([#1023](https://github.com/rollup/rollup/pull/1023))
## 0.36.1
- Include naked block statements ([#981](https://github.com/rollup/rollup/issues/981))
- Correctly include falsy alternate statements in optimised if blocks ([#973](https://github.com/rollup/rollup/issues/973))
- Prevent omission of default exports that are only used by the exporting module ([#967](https://github.com/rollup/rollup/pull/967))
- Prevent warning on `auto` exports with ES output ([#966](https://github.com/rollup/rollup/pull/966))
## 0.36.0
- `export { foo as default }` no longer creates a live binding ([#860](https://github.com/rollup/rollup/issues/860))
## 0.35.15
- Warn on missing unused imports in deshadowing phase ([#928](https://github.com/rollup/rollup/issues/928))
- Always add a newline to the end of bundles ([#958](https://github.com/rollup/rollup/issues/958))
## 0.35.14
- Include all parent statements of expression with effects, up to function boundary ([#930](https://github.com/rollup/rollup/issues/930))
## 0.35.13
- Include superclasses when including their subclasses ([#932](https://github.com/rollup/rollup/issues/932))
## 0.35.12
- Add `interop: false` option to disable unwrapping of external imports ([#939](https://github.com/rollup/rollup/issues/939))
## 0.35.11
- Deconflict reified namespaces with other declarations ([#910](https://github.com/rollup/rollup/issues/910))
## 0.35.10
- Only remove EmptyStatement nodes directly inside blocks ([#913](https://github.com/rollup/rollup/issues/931))
## 0.35.9
- Support Node 0.12 ([#909](https://github.com/rollup/rollup/issues/909))
## 0.35.8
- Correctly deshadow re-assigned module functions ([#910](https://github.com/rollup/rollup/issues/910))
## 0.35.7
- Refactor `flushTime.js` ([#922](https://github.com/rollup/rollup/pull/922))
## 0.35.6
- Fix browser build
## 0.35.5
- Allow empty for loop heads ([#919](https://github.com/rollup/rollup/issues/919))
## 0.35.4
- Preserve effects in for-of and for-in loops ([#870](https://github.com/rollup/rollup/issues/870))
- Remove empty statements ([#918](https://github.com/rollup/rollup/pull/918))
## 0.35.3
- Render identifiers inside template literals
## 0.35.2
- Fix broken build caused by out of date locally installed dependencies
## 0.35.1
- Rewrite deconflicted class identifiers ([#915](https://github.com/rollup/rollup/pull/915))
- Include `dependencies` in `bundle.modules` objects ([#903](https://github.com/rollup/rollup/issues/903))
- Update to Acorn 4 ([#914](https://github.com/rollup/rollup/pull/914))
## 0.35.0
- Rewrite analysis/tree-shaking code ([#902](https://github.com/rollup/rollup/pull/902))
- Include conditional mutations of global objects ([#901](https://github.com/rollup/rollup/issues/901))
- Only reify namespaces if necessary ([#898](https://github.com/rollup/rollup/issues/898))
- Track mutations of aliased globals ([#893](https://github.com/rollup/rollup/issues/893))
- Include duplicated var declarations ([#716](https://github.com/rollup/rollup/issues/716))
## 0.34.13
- Pass `{ format }` through to `transformBundle` ([#867](https://github.com/rollup/rollup/issues/867))
## 0.34.12
- Fix `rollup --watch` ([#887](https://github.com/rollup/rollup/issues/887))
- Case-sensitive paths ([#862](https://github.com/rollup/rollup/issues/862))
## 0.34.11
- Prevent leaky state when `bundle` is reused ([#875](https://github.com/rollup/rollup/issues/875))
- Ensure `intro` appears before interop block ([#880](https://github.com/rollup/rollup/issues/880))
## 0.34.10
- Allow custom `options.context` to replace top-level `this` ([#851](https://github.com/rollup/rollup/issues/851))
- Fix `noConflict` when used via `rollup --config` ([#846](https://github.com/rollup/rollup/issues/846))
- Place `outro` block _after_ export block ([#852](https://github.com/rollup/rollup/issues/852))
## 0.34.9
- Disable indentation by default, for faster bundle generation ([#812](https://github.com/rollup/rollup/pull/812))
- More helpful error on missing entry file ([#802](https://github.com/rollup/rollup/issues/802))
- Preserve comments before import declarations ([#815](https://github.com/rollup/rollup/pull/815))
## 0.34.8
- Wrap UMD factory function in parens to avoid lazy parsing ([#774](https://github.com/rollup/rollup/pull/774))
## 0.34.7
- Leave it up to resolveId to normalize the entry path ([#835](https://github.com/rollup/rollup/pull/835))
- Cache decoded mappings ([#834](https://github.com/rollup/rollup/pull/834))
## 0.34.5
- Fix circular export ([#813](https://github.com/rollup/rollup/issues/813))
## 0.34.4
- Module render performance tweak ([#823](https://github.com/rollup/rollup/pull/823))
## 0.34.3
- Avoid infinite recursion in `Bundle.sort()` ([#800](https://github.com/rollup/rollup/pull/800))
## 0.34.2
- resolveId calls are cached now to improve incremental build
- Fixed error message recursion in plugins
## 0.34.1
- Support `paths` config ([#754](https://github.com/rollup/rollup/issues/754))
- Allow `export *` from external module, internally
## 0.34.0
- Use resolved IDs for relative imports that are also external modules, to allow `options.globals` to work with them ([#763](https://github.com/rollup/rollup/issues/763))
- Ensure reassigned exports are declared in an ES bundle, and remove empty `exports.foo;` statements ([#755](https://github.com/rollup/rollup/issues/755))
- Add newline after sourcemap comment ([#756](https://github.com/rollup/rollup/issues/756))
## 0.33.2
- Add `bundle` as second argument to `ongenerate` and `onwrite` hooks ([#773](https://github.com/rollup/rollup/pull/773))
- Warn on top-level `this` ([#770](https://github.com/rollup/rollup/issues/770))
## 0.33.1
- Fix `--no-strict` option ([#751](https://github.com/rollup/rollup/pull/751))
- Fix Windows edge case with case-sensitive paths ([#760](https://github.com/rollup/rollup/pull/760))
## 0.33.0
- Downgrade missing transformer sourcemap to a warning, not an error, and print the name of the offending plugin if possible ([#746](https://github.com/rollup/rollup/issues/746))
- Warn if same name is re-exported from two modules ([#722](https://github.com/rollup/rollup/issues/722))
## 0.32.4
- Add `ongenerate` and `onwrite` plugin hooks ([#742](https://github.com/rollup/rollup/pull/742))
## 0.32.3
- Generated correct sourcemaps with reified namespaces ([#668](https://github.com/rollup/rollup/issues/668))
- Exclude plugin helper modules from sourcemaps ([#747](https://github.com/rollup/rollup/pull/747))
## 0.32.2
- Allow `--globals` to work with `--external` or `options.external` in whatever configuration ([#743](https://github.com/rollup/rollup/issues/743))
## 0.32.1
- Preserve side-effects to default exports that coincide with used named exports ([#733](https://github.com/rollup/rollup/issues/733))
- Support `rollup -c node:pkgname` ([#736](https://github.com/rollup/rollup/issues/736))
## 0.32.0
- Deprecate `es6` format in favour of `es` ([#468](https://github.com/rollup/rollup/issues/468))
- Add correct `jsnext:main` build ([#726](https://github.com/rollup/rollup/pull/726))
## 0.31.2
- Allow `load` plugins to provide sourcemap ([#715](https://github.com/rollup/rollup/pull/715))
- Allow `sourceMapFile` in config options ([#717](https://github.com/rollup/rollup/issues/717))
## 0.31.1
- Logging for errors emitted by `rollup-watch` ([#712](https://github.com/rollup/rollup/issues/712))
## 0.31.0
- Rewrite top-level `this` as `undefined` ([#707](https://github.com/rollup/rollup/pull/707))
- Pass `options.acorn` to Acorn ([#564](https://github.com/rollup/rollup/issues/564))
## 0.30.0
- Bundle CLI ([#700](https://github.com/rollup/rollup/issues/700))
- Ensure absolute paths are normalised ([#704](https://github.com/rollup/rollup/issues/704))
- Allow `rollup --watch` to work with targets
## 0.29.1
- Merge `target` options with main options ([#701](https://github.com/rollup/rollup/issues/701))
- Update magic-string ([#690](https://github.com/rollup/rollup/issues/690))
## 0.29.0
- `rollup --watch` ([#284](https://github.com/rollup/rollup/issues/284))
## 0.28.0
- Experimental support for incremental rebuilds ([#658](https://github.com/rollup/rollup/pull/658))
## 0.27.1
- Ensure names exported from a module are not replaced with reserved words ([#696](https://github.com/rollup/rollup/pull/696))
- Revert ([#692](https://github.com/rollup/rollup/pull/692)) – resolved IDs must be strings
## 0.27.0
- Use native promises instead of `es6-promise` ([#689](https://github.com/rollup/rollup/issues/689))
- Support multiple targets in config files ([#655](https://github.com/rollup/rollup/issues/655))
- Allow `resolveId` plugin functions to return non-strings ([#692](https://github.com/rollup/rollup/pull/692))
## 0.26.7
- Distinguish between default and namespace imports of external module ([#637](https://github.com/rollup/rollup/issues/637))
- Add `__esModule` property to named exports in AMD, CJS and UMD modes ([#650](https://github.com/rollup/rollup/issues/650))
## 0.26.6
- Deconflict named imports from external modules in ES bundles ([#659](https://github.com/rollup/rollup/issues/659))
- Support `options.preferConst` to generate `const` declarations for exports rather than `var` declarations ([#653](https://github.com/rollup/rollup/issues/653))
## 0.26.5
- Preserve `debugger` statements ([#664](https://github.com/rollup/rollup/issues/664))
- Allow `options.external` to be a function ([#522](https://github.com/rollup/rollup/issues/522))
## 0.26.4
- Prevent plugin-provided external IDs being normalised ([#630](https://github.com/rollup/rollup/issues/630), [#633](https://github.com/rollup/rollup/issues/633))
- Throw if module exports/re-exports the same name twice, or has multiple default exports ([#679](https://github.com/rollup/rollup/issues/679))
- Warn about `eval` security issue ([#675](<(https://github.com/rollup/rollup/issues/675)>))
## 0.26.3
- Ensure reference is not incorrectly marked as a reassignment ([#648](https://github.com/rollup/rollup/issues/648))
## 0.26.2
- Sanity check output of `load` hook ([#607](https://github.com/rollup/rollup/issues/607))
- Correct scoping for ID class expressions ([#626](https://github.com/rollup/rollup/issues/626))
- Warn if named and default exports are used together in auto mode ([#587](https://github.com/rollup/rollup/issues/587))
- Allow variable initialisers to be rewritten if necessary ([#632](https://github.com/rollup/rollup/issues/632))
- Prevent double `var` with no-treeshake option ([#639](https://github.com/rollup/rollup/pull/639))
## 0.26.1
- Add `treeshake: false`/`--no-treeshake` option for debugging ([#505](https://github.com/rollup/rollup/issues/505))
- Update build process to use Bublé ([#620](https://github.com/rollup/rollup/pull/620))
## 0.26.0
- Add `noConflict`/`--no-conflict` option for UMD builds ([#580](https://github.com/rollup/rollup/pull/580))
- Normalise relative external paths ([#591](https://github.com/rollup/rollup/pull/591))
- Report files causing transform errors ([#609](https://github.com/rollup/rollup/pull/609))
- Handle sourcemap segments with a single member ([#619](https://github.com/rollup/rollup/pull/619))
- Update dependencies
## 0.25.8
- Unixize entry path ([#586](https://github.com/rollup/rollup/pull/586))
## 0.25.7
- Expand deshadowed shorthand properties ([#575](https://github.com/rollup/rollup/issues/575))
- Allow external files to be non-existent ([#532](https://github.com/rollup/rollup/issues/532))
## 0.25.6
- Fix a regression introduced by #566 ([#569](https://github.com/rollup/rollup/issues/569))
- Prune dead conditional expressions more carefully ([#567](https://github.com/rollup/rollup/issues/567))
## 0.25.5
- Make sure shorthand destructuring assignments don't break ([#528](https://github.com/rollup/rollup/issues/528))
- Allow 'exports' key ([#542](https://github.com/rollup/rollup/issues/542))
- Ensure `foo. bar` where `foo` is a namespace import is rewritten correctly ([#566](https://github.com/rollup/rollup/issues/566))
- Fix an edge case for exported globals (e.g. `export { document }`) ([#562](https://github.com/rollup/rollup/issues/562))
## 0.25.4
- Fix misnamed exports of default imports in ES bundles ([#513](https://github.com/rollup/rollup/issues/513))
- CLI: warn on missing config ([#515](https://github.com/rollup/rollup/pull/515))
- Detect side-effects in non-top-level member expression assignment ([#476](https://github.com/rollup/rollup/issues/476))
- Don't remove computed property class keys ([#504](https://github.com/rollup/rollup/issues/504))
- Augment existing global object rather than replacing ([#493](https://github.com/rollup/rollup/issues/493))
- Don't fail on `export {}`, warn instead ([#486](https://github.com/rollup/rollup/issues/486))
## 0.25.3
- Handle non-objects and `null` in `_interopDefault` ([#474](https://github.com/rollup/rollup/issues/474))
## 0.25.2
- Skip dead branches of a conditional expression (#[465](https://github.com/rollup/rollup/pull/465))
- Allow globals to be exported ([#472](https://github.com/rollup/rollup/pull/472))
- Ensure reassigned exports are exported ([#484](https://github.com/rollup/rollup/issues/484))
## 0.25.1
- Throw error if namespace is called ([#446](https://github.com/rollup/rollup/issues/446))
- Prevent shadowing bug in ES6 output ([#441](https://github.com/rollup/rollup/pull/441))
- Prevent `var exports.foo` ([#426](https://github.com/rollup/rollup/issues/426))
- Prevent double export of aliased symbols ([#438](https://github.com/rollup/rollup/issues/438))
- Provide more informative error if Rollup is used in-browser without appropriate `resolveId`/`load` hooks ([#275](https://github.com/rollup/rollup/issues/275))
- Use `_interopDefault` function to DRY out code with many external dependencies, in CommonJS output ([#458](https://github.com/rollup/rollup/pull/458))
## 0.25.0
- **breaking** Module order is determined according to spec, rather than in a way designed to prevent runtime errors. Rollup will warn if it detects runtime errors are likely ([#435](https://github.com/rollup/rollup/issues/435))
- Prevent overly aggressive tree-shaking with complex call expressions ([#440](https://github.com/rollup/rollup/issues/440))
## 0.24.1
- Handle calls to default exports other that are not function expressions or references to function declarations ([#421](https://github.com/rollup/rollup/issues/421))
- Ensure namespace blocks are created for chained imports ([#430](https://github.com/rollup/rollup/issues/430))
- Include references in computed property keys ([#434](https://github.com/rollup/rollup/issues/434))
- Use CLI `--external` option correctly ([#417](https://github.com/rollup/rollup/pull/417))
- Allow relative imports to be treated as external, if absolute paths are provided in `options.external` ([#410](https://github.com/rollup/rollup/issues/410))
- Make IIFE output adhere to Crockford style ([#415](https://github.com/rollup/rollup/pull/415))
## 0.24.0
- No longer attempts to resolve IDs in `options.external` ([#407](https://github.com/rollup/rollup/issues/407))
- Fix broken sourcemap resolution in cases where some modules are transformed and others aren't ([#404](https://github.com/rollup/rollup/issues/404))
## 0.23.2
- Ensure `dest` or `sourceMapFile` is resolved against CWD for purposes of sourcemap generation ([#344](https://github.com/rollup/rollup/issues/344))
- Support `banner`, `footer`, `intro` and `outro` options via CLI ([#330](https://github.com/rollup/rollup/issues/330))
- Allow `options.global` to be a function rather than an object, and warn on missing names ([#293](https://github.com/rollup/rollup/issues/293))
- Ensure side-effects are captured in cyclical call expressions ([#397](https://github.com/rollup/rollup/issues/397))
- Fix parse error with body-less arrow function expressions ([#403](https://github.com/rollup/rollup/issues/403))
## 0.23.1
- Reinstate missing fix from ([#392](https://github.com/rollup/rollup/pull/392))
## 0.23.0
- Add `bundleTransform` plugin hook and option ([#387](https://github.com/rollup/rollup/pull/387))
- Correctly store names in sourcemaps, regardless of transformers
- Add `--environment` option to CLI ([#388](https://github.com/rollup/rollup/pull/388))
- Handle destructuring in exports ([#374](https://github.com/rollup/rollup/issues/374))
- Fix UMD global exports bug introduced in 0.22.1 ([#392](https://github.com/rollup/rollup/pull/392))
## 0.22.2
- Prevent lost `var` keywords ([#390](https://github.com/rollup/rollup/issues/390))
## 0.22.1
- Update expected option keys ([#379](https://github.com/rollup/rollup/issues/379))
- Handle transformers that return stringified sourcemaps ([#377](https://github.com/rollup/rollup/issues/377))
- Automatically create missing namespaces if `moduleName` contains dots ([#378](https://github.com/rollup/rollup/issues/378))
- Ignore external dependency warnings coming from config file ([#333](https://github.com/rollup/rollup/issues/333))
- Update to latest magic-string for performance boost
## 0.22.0
- Duplicate warnings are squelched ([#362](https://github.com/rollup/rollup/issues/362))
- Plugins can manipulate or override the `options` object ([#371](https://github.com/rollup/rollup/pull/371))
## 0.21.3
- Validate option keys ([#348](https://github.com/rollup/rollup/pull/348))
- Allow namespaces imports to sit alongside named imports ([#355](https://github.com/rollup/rollup/issues/355))
- Count references inside destructured objects ([#364](https://github.com/rollup/rollup/issues/364))
- Preserve top-level `delete` statements ([#352](https://github.com/rollup/rollup/issues/352))
## 0.21.2
- Missing relative imports are an error, not a warning ([#321](https://github.com/rollup/rollup/issues/321))
- Fixed incorrectly renamed default exports in ES6 bundles ([#339](https://github.com/rollup/rollup/issues/339))
- Fixed infinite recursion bug ([#341](https://github.com/rollup/rollup/issues/341))
## 0.21.1
- Remove `aggressive: true` (was too aggressive) ([#309](https://github.com/rollup/rollup/pull/309))
- Handle top-level block statements ([#326](https://github.com/rollup/rollup/issues/326))
- Optimise namespaces with default exports ([#314](https://github.com/rollup/rollup/issues/314))
## 0.21.0
- Only include statements whose side-effects are relevant (i.e. contribute to exports or affect global state) ([#253](https://github.com/rollup/rollup/pull/253)) ([#253](https://github.com/rollup/rollup/pull/253))
- Exclude dead branches from analysis and inclusion ([#249](https://github.com/rollup/rollup/pull/249))
- Add `aggressive: true` option to eliminate all side-effects outside entry module
- More informative error when re-exporting non-existent binding ([#274](https://github.com/rollup/rollup/issues/274))
- Fix infinite recursion bug ([#291](https://github.com/rollup/rollup/issues/291))
- Log errors when using `rollup --config` ([#288](https://github.com/rollup/rollup/pull/288))
- Return rejected promises on startup instead of throwing error, if options are invalid ([#303](https://github.com/rollup/rollup/pull/303))
## 0.20.5
- Ensure re-exports don't create a local binding ([#270](https://github.com/rollup/rollup/pull/270))
## 0.20.4
- Check file exists at resolve time, to allow filenames with non-extension dots in them ([#250](https://github.com/rollup/rollup/pull/250))
- Import `Promise` where used, for Node 0.10 support ([#254](https://github.com/rollup/rollup/issues/254))
- Allow asynchronous transformer plugins ([#260](https://github.com/rollup/rollup/issues/260))
- Don't assume re-exported bindings are globals when deconflicting ([#267](https://github.com/rollup/rollup/issues/267))
## 0.20.3
- Fix bug where multiple `export *` declarations caused error ([#244](https://github.com/rollup/rollup/pulls/244))
- Missing namespace exports are a warning, not an error ([#244](https://github.com/rollup/rollup/pulls/244))
- Plugins can provide `banner` and `footer` options (string, or function that returns a string) ([#235](https://github.com/rollup/rollup/issues/235))
- Warn on encountering `eval` ([#186](https://github.com/rollup/rollup/issues/186))
## 0.20.2
- Handle errors in build config file
- More robust deconflicting, in cases where e.g. `foo$1` already exists
- Use Rollup CLI for own build process
## 0.20.1
- Support `--config` file to enable plugins with CLI ([#226](https://github.com/rollup/rollup/pulls/226))
- Prevent `default` being used as variable name ([#215](https://github.com/rollup/rollup/issues/215))
- Update deps
## 0.20.0
- Support for [plugins](https://github.com/rollup/rollup/wiki/Plugins) ([#207](https://github.com/rollup/rollup/pulls/207))
- BREAKING – `options.transform`, `options.load`, `options.resolveId`, `options.resolveExternal` and `options.external` are no longer supported, and should be handled by plugins. [More info](https://github.com/rollup/rollup/wiki/Plugins)
- BREAKING – the .js extension is only added if it looks like there's no extension, allowing e.g. `import data from 'data.json'` (with the appropriate transformer). For safety, always include the file extension – import `./foo.js`, not `./foo`
## 0.19.2
- Fix exporting namespaces to include all of their exports ([#204](https://github.com/rollup/rollup/issues/204))
- Namespace exotic objects are frozen to ensure that its properties cannot be modified, reconfigured, redefined or deleted ([#203](https://github.com/rollup/rollup/pulls/203))
- Fix `ReferenceError: Promise is not defined` in node v0.10 ([#189](https://github.com/rollup/rollup/issues/189))
## 0.19.1
- Fix `module.basename()` when used with custom `resolveId` function
- Use [rollup-babel](https://github.com/rollup/rollup-babel) to build self
- Exposed the version string through the API: `require( 'rollup' ).VERSION`
## 0.19.0
- **breaking** The `transform` option is no longer passed through to custom loaders. Loaders should only concern themselves with providing source code; transformation will _always_ take place
- `options.transform` functions can return a string, or a `{code, map, ast}` object. Where possible, sourcemap chains will be flattened ([#175](https://github.com/rollup/rollup/pull/175))
- `options.resolveId`, `options.resolveExternal` and `options.load` can each be a function or an array of functions. If an array, the first non-null/undefined return value is used. In both cases, failed resolution/loading will fall back to the defaults, unless an error is thrown. ([#174](https://github.com/rollup/rollup/pull/174))
- New `intro` and `outro` options – similar to `banner` and `footer` except inserted _inside_ any format-specific wrapper
- Multiple var declarations in an export block (e.g. `export let a = 1, b = 2`) are split up to facilitate tree-shaking ([#171](https://github.com/rollup/rollup/issues/171))
- More informative error when using a missing namespace property ([#169](https://github.com/rollup/rollup/pull/169))
- Update various dependencies
## 0.18.5
- Allow namespaces to be assigned to variables ([#168](https://github.com/rollup/rollup/issues/168))
- Promote `chalk` and `source-map-support` to `dependencies`, as they're used by the CLI ([#167](https://github.com/rollup/rollup/pull/167))
## 0.18.4
- Make external modules configurable (i.e. `external.config.foo = 'bar'`) without erroring
## 0.18.3
- Crop indent exclusion ranges to exclude enclosing quotes ([#166](https://github.com/rollup/rollup/issues/166))
## 0.18.2
- Include definitions of namespace members that are exported as defaults
## 0.18.1
- Include `acorn.parse` in bundle, remove `sander` from dependencies, simplify build
## 0.18.0
- Internal rewrite
- Reinstate statically-analysable namespace imports
- Avoid using getters in namespace blocks where possible ([#144](https://github.com/rollup/rollup/issues/144))
- Track variable aliases ([#96](https://github.com/rollup/rollup/issues/96))
- Prevent multiline strings being indented ([#164](https://github.com/rollup/rollup/issues/164))
## 0.17.4
- Allow imports from hidden directories (replay of [#133](https://github.com/rollup/rollup/issues/133))
## 0.17.3
- Handle parenthesised default exports ([#136](https://github.com/rollup/rollup/issues/136))
## 0.17.2
- Allow use of scoped npm packages ([#131](https://github.com/rollup/rollup/issues/131))
## 0.17.1
- Allow namespaces to be passed to a function ([#149](https://github.com/rollup/rollup/issues/149))
## 0.17.0
- Roll back to 0.15.0 and reapply subsequent fixes pending resolution of ([#132](https://github.com/rollup/rollup/issues/132)) and related issues
## 0.16.4
- Fix import paths with `.` ([#133](https://github.com/rollup/rollup/issues/133))
- Prevent sourceMappingURL confusion leading to broken sourcemap
- Add code coverage reporting [#130](https://github.com/rollup/rollup/pull/130))
- Add `modules` property to user-facing `bundle` – an array with `{id}` objects ([#128](https://github.com/rollup/rollup/issues/128))
## 0.16.3
- Prevent adjacent blocks of multiple var declarations causing magic-string failure ([#105](https://github.com/rollup/rollup/issues/105))
## 0.16.2
- Top-level function calls and assignments to globals are treated as side-effects, and always included
- Import files from subdirectories of external packages, e.g. `import mod from 'foo/sub/mod'` ([#126](https://github.com/rollup/rollup/issues/126))
## 0.16.1
- Handle assignment patterns, and destructured/rest parameters, when analysing scopes
- Fix bug preventing project from self-building (make base `Identifier` class markable)
## 0.16.0
- Internal refactoring ([#99](https://github.com/rollup/rollup/pull/99))
- Optimisation for statically-analysable namespace imports ([#99](https://github.com/rollup/rollup/pull/99))
- Windows support (theoretically!) ([#117](https://github.com/rollup/rollup/pull/117) / [#119](https://github.com/rollup/rollup/pull/119))
## 0.15.0
- Load all modules specified by `import` statements, and do tree-shaking synchronously once loading is complete. This results in simpler and faster code, and enables future improvements ([#97](https://github.com/rollup/rollup/pull/97))
- Only rewrite `foo` as `exports.foo` when it makes sense to ([#92](https://github.com/rollup/rollup/issues/92))
- Fix bug with shadowed variables that are eventually exported ([#91](https://github.com/rollup/rollup/issues/91))
- Exclude unused function declarations that happen to modify a used name ([#90](https://github.com/rollup/rollup/pull/90))
- Simplify internal `Scope` model – scopes always attach to blocks, never function expressions/declarations
## 0.14.1
- `export { name } from './other'` does not create a local binding ([#16](https://github.com/rollup/rollup/issues/16))
- A single binding can be exported under multiple names ([#18](https://github.com/rollup/rollup/issues/18))
- `useStrict` option exposed to CLI as `--strict`/`--no-strict` ([#81](https://github.com/rollup/rollup/issues/81))
- Neater exports from ES6 bundles
## 0.14.0
- Internal refactoring
- Correctly deconflict generated default export names ([#72](https://github.com/rollup/rollup/issues/72))
- Handle `export { x } from 'y'` declarations ([#74](https://github.com/rollup/rollup/issues/74))
- Dedupe named imports from external modules in ES6 bundles ([#77](https://github.com/rollup/rollup/issues/77))
## 0.13.0
- Support `banner` and `footer` options ([#66](https://github.com/rollup/rollup/pull/66))
- Remove pre-existing sourcemap comments ([#66](https://github.com/rollup/rollup/pull/66))
- Deconflict external imports ([#66](https://github.com/rollup/rollup/pull/66))
- Use existing AST, if provided ([#66](https://github.com/rollup/rollup/pull/66))
- Rename internal namespace exports as appropriate ([#66](https://github.com/rollup/rollup/pull/66))
- Remove uninitialised var declarations that get exported ([#66](https://github.com/rollup/rollup/pull/66))
- Rename variables named `exports` to avoid conflicts ([#66](https://github.com/rollup/rollup/pull/66))
## 0.12.1
- Don't attempt to mark statements belonging to external modules ([#68](https://github.com/rollup/rollup/issues/68))
- Correctly deshadow variables that conflict with imports ([#68](https://github.com/rollup/rollup/issues/68))
## 0.12.0
- Internal re-architecting, resulting in more efficient bundling with reduced memory usage
- Shorthand properties are expanded if necessary ([#61](https://github.com/rollup/rollup/issues/61))
- Fixed various bugs with bundle external dependencies, particularly when generating ES6 bundles ([#59](https://github.com/rollup/rollup/issues/59))
- Add `--globals` option to CLI ([#60](https://github.com/rollup/rollup/pull/60))
- Allow imports of external modules for side-effects ([#55](https://github.com/rollup/rollup/pull/55))
- Prevent Rollup hanging on non-existent external module ([#54](https://github.com/rollup/rollup/pull/54))
## 0.11.4
- Side-effect preservation applies to internal default exports ([#43](https://github.com/rollup/rollup/issues/43))
## 0.11.3
- Class methods are not incorrectly renamed ([#42](https://github.com/rollup/rollup/issues/42))
- External modules are assigned names before canonical names are determined ([#42](https://github.com/rollup/rollup/issues/42))
## 0.11.2
- Correctly handle computed properties (e.g. `foo[bar]`) when discovering dependencies ([#47](https://github.com/rollup/rollup/pull/47))
## 0.11.1
- Support for `export * from '..'` ([#46](https://github.com/rollup/rollup/pull/46))
## 0.11.0
- Experimental browser-friendly build (`dist/rollup.browser.js`) ([#25](https://github.com/rollup/rollup/issues/25))
- Internal re-architecting to make discovery process simpler and more performant
- Preservation of side-effects that happen in a separate module to the affected definition ([#39](https://github.com/rollup/rollup/issues/39))
## 0.10.0
- Better sorting algorithm – sorting happens at the module level, rather than the statement level. This avoids certain edge cases
- IIFEs are ignored for the purposes of distinguishing between 'strong' and 'weak' dependencies
- Empty `var` declarations for exported bindings are omitted
## 0.9.1
- Much faster statement insertion (fixes major 0.9.0 performance regression)
## 0.9.0
- BREAKING - `resolvePath` is now `resolveId`. The returned `id` (which by default is a filepath) is passed to the `load` function, which can optionally be overridden, and which is applied to all modules including the entry module. This allows custom resolver and loading logic for integration with third party systems (e.g. JSPM) or, eventually, in-browser usage ([#30](https://github.com/rollup/rollup/issues/30))
- A statement cannot appear after later statements from the same bundle ([#34](https://github.com/rollup/rollup/issues/34))
- Tricky cyclical dependencies are handled ([#36](https://github.com/rollup/rollup/issues/36))
- `sourcemap` option is used by CLI (was omitted previously)
## 0.8.3
- Correctly rename functions that have arguments with the same name ([#32](https://github.com/rollup/rollup/issues/32))
- Ensure unused default exports are given a legal name ([#33](https://github.com/rollup/rollup/issues/33))
## 0.8.2
- Support `moduleId` and `moduleName` via CLI ([#24](https://github.com/rollup/rollup/issues/24))
## 0.8.1
- Anonymous functions that are exported as default are converted to named function declarations for correct hoisting, rather than being bound to functions ([#29](https://github.com/rollup/rollup/issues/29))
- Automatically-generated default export names are deconflicted with local definitions ([#29](https://github.com/rollup/rollup/issues/29))
## 0.8.0
- Top-level variable declarations with multiple declarators are split up, to avoid unnecessary code importing and incorrectly-ordered statements ([#26](https://github.com/rollup/rollup/issues/26))
- `this` at the top level is `undefined` ([#28](https://github.com/rollup/rollup/issues/28))
## 0.7.8
- Avoid using `path.parse` - unsupported in node 0.10
## 0.7.7
- Promise `source-map-support` from `devDependencies` to `dependencies` ([#23](https://github.com/rollup/rollup/issues/23))
## 0.7.6
- Better placement of `export default` statements ([#21](https://github.com/rollup/rollup/issues/21))
- Prevent function calls and property assignments from being treated as rebinding for sake of unbound default exports
- Add `--external foo,bar,baz` option to CLI (equivalent to `external: ['foo', 'bar', 'baz']`)
- Add CLI tests
## 0.7.5
- Prevent accidental conflicts with the global namespace ([#20](https://github.com/rollup/rollup/issues/20))
## 0.7.4
- More precise statement re-ordering to satisfy `export default` constraint (fixes bug introduced in 0.7.3)
## 0.7.3
- Default exports are not bound. To enable this, statements within a module are sorted to retain their original order ([#15](https://github.com/rollup/rollup/issues/15))
- Better positioning of comments ([#14](https://github.com/rollup/rollup/issues/14))
- Various fixes to get Travis-CI rigged up
## 0.7.2
- Fix sourcemap paths on Windows ([#6](https://github.com/rollup/rollup/pull/6))
## 0.7.1
- Named functions can be used as default exports from a bundle
- Method calls are assumed to mutate the owner (i.e. `foo.bar()` mutates `foo`) ([#13](https://github.com/rollup/rollup/issues/13))
- `options.indent` can be used to control indentation of resulting bundle. `options.true` (default) means 'auto', `options.false` means empty string. Alternatively specify whitespace e.g. `' '` or `'\t'` ([#5](https://github.com/rollup/rollup/issues/5))
## 0.7.0
- Ensure statements are always separated by a newline ([#9](https://github.com/rollup/rollup/pull/9))
- Use CommonJS `exports` correctly (UMD exports)
- Throw error if `moduleName` is required but missing (UMD exports)
- Attach IIFE global to `this` rather than `window`
- Allow names inside bundle to the the names of `Object.prototype` properties ([#12](https://github.com/rollup/rollup/pull/12))
- Keep exports live ([#11](https://github.com/rollup/rollup/pull/11))
## 0.6.5
- Add sourceMappingURL comment to code, as appropriate
- Higher resolution sourcemaps
## 0.6.4
- Fix CJS bundling with default export
## 0.6.3
- Fix exports and external module imports with some output formats
- Fix endless cycle bug on Windows ([#3](https://github.com/rollup/rollup/pull/3)) - thanks @Bobris
## 0.6.2
- Permit assignments to properties of imported bindings
## 0.6.1
- Support for basic transformers
## 0.6.0
- BREAKING - `rollup.rollup` and `bundle.write` both take a single options argument
- BREAKING - external modules must be declared upfront with `options.external: [...]`
- Non-relative module paths will be resolved by looking for `jsnext:main` fields in the appropriate `package.json` files. This behaviour can be overridden by passing an alternative `resolveExternal` function
- Fix sourcemap options
- Include CLI files in npm package (duh)
## 0.5.0
- Command line interface
- Sourcemap generation
- Correct behaviour with `export { x as y } from 'z'`
## 0.4.1
- More import name deconflicting
## 0.4.0
- Self-hosting! `rollup.rollup` now rolls up rollup
- Fix bug with comments inside a statement later being appended to it
- Prevent shadowing of external modules
- Rewrite computed property identifiers where necessary
- Preserve original statement order where possible
- Internal refactoring
## 0.3.1
- Saner deconflicting
- Rename namespace imports from external modules correctly
## 0.3.0
- Basic functionality present, mostly spec-compliant
## 0.2.1
- Include dist files in npm package (duh)
## 0.2.0
- First release capable of doing anything useful
- Still lots of basic functionality missing
## 0.1.0
- Initial experiment
|