rollup 1.11.3 → 1.12.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +47 -0
- package/bin/rollup +774 -1154
- package/dist/rollup.browser.es.js +3 -3
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +74 -48
- package/dist/rollup.es.js +26107 -30792
- package/dist/rollup.js +26107 -30792
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,52 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 1.12.3
|
|
4
|
+
*2019-05-19*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Prevent duplicate imports when exports are reexported as default exports (#2866)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#2755](https://github.com/rollup/rollup/pull/2755): Enable TypeScript strictNullChecks (@edsrzf)
|
|
11
|
+
* [#2866](https://github.com/rollup/rollup/pull/2866): Properly deduplicate reexported default exports (@lukastaegert)
|
|
12
|
+
|
|
13
|
+
## 1.12.2
|
|
14
|
+
*2019-05-17*
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Do not fail when using clearScreen:false in watchMode (#2858)
|
|
18
|
+
* Properly resolve star reexports when preserving modules (#2860)
|
|
19
|
+
|
|
20
|
+
### Pull Requests
|
|
21
|
+
* [#2858](https://github.com/rollup/rollup/pull/2858): Declare processConfigsErr before use (@humphd)
|
|
22
|
+
* [#2860](https://github.com/rollup/rollup/pull/2860): Keep nested exports with preserveModules (@TomCaserta)
|
|
23
|
+
* [#2864](https://github.com/rollup/rollup/pull/2864): Cache transitive reexport detection (@lukastaegert)
|
|
24
|
+
|
|
25
|
+
## 1.12.1
|
|
26
|
+
*2019-05-16*
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
* Extend file name sanitation to also replace "?" and "*" e.g. when preserving modules with the updated commonjs plugin (#2860)
|
|
30
|
+
* Do not ignore module transformer that return an empty string (#2861)
|
|
31
|
+
|
|
32
|
+
### Pull Requests
|
|
33
|
+
* [#2860](https://github.com/rollup/rollup/pull/2860): Update to latest plugins and extend file name sanitation (@lukastaegert)
|
|
34
|
+
* [#2861](https://github.com/rollup/rollup/pull/2861): Allow transformers to return an empty string (@lukastaegert)
|
|
35
|
+
|
|
36
|
+
## 1.12.0
|
|
37
|
+
*2019-05-15*
|
|
38
|
+
|
|
39
|
+
### Features
|
|
40
|
+
* Add `treeshake.moduleSideEffects` option to allow removing empty imports without a side-effect check (#2844)
|
|
41
|
+
* Extend plugin API to allow marking modules as side-effect-free (#2844)
|
|
42
|
+
* Extend `this.resolve` plugin context function with an option to skip the `resolveId` hook of the calling plugin (#2844)
|
|
43
|
+
* Add `isEntry` flag to `this.getModuleInfo` plugin context function (#2844)
|
|
44
|
+
* Distribute Rollup as optimized ES2015 code (#2851)
|
|
45
|
+
|
|
46
|
+
### Pull Requests
|
|
47
|
+
* [#2844](https://github.com/rollup/rollup/pull/2844): Add options and hooks to control module side effects (@lukastaegert)
|
|
48
|
+
* [#2851](https://github.com/rollup/rollup/pull/2851): Switch to ES2015 output (@lukastaegert)
|
|
49
|
+
|
|
3
50
|
## 1.11.3
|
|
4
51
|
*2019-05-05*
|
|
5
52
|
|