rollup 2.31.0 → 2.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +40 -0
- package/dist/bin/rollup +2 -2
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +43 -30
- package/dist/es/shared/watch.js +53 -25
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.d.ts +20 -8
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +6 -4
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +43 -30
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +53 -25
- package/package.json +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.33.1
|
|
4
|
+
*2020-11-02*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Add `syntheticNamedExports` to `this.getModuleInfo` to align with documentation (#3841)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3847](https://github.com/rollup/rollup/pull/3847): Expose syntheticNamedExports to ModuleInfo (@Amareis)
|
|
11
|
+
* [#3852](https://github.com/rollup/rollup/pull/3852): Fix typo on docs (@jpsc)
|
|
12
|
+
|
|
13
|
+
## 2.33.0
|
|
14
|
+
*2020-11-01*
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
* Add parameter to "watchChange" hook to denote if a change was an addition, update or deletion (#3841)
|
|
18
|
+
* Add "closeWatcher" hook to allow plugins to clean up resources when the watcher is closed (#3841)
|
|
19
|
+
* Add "this.getWatchFiles" function to plugin context to get the current set of watched files (#3841)
|
|
20
|
+
|
|
21
|
+
### Pull Requests
|
|
22
|
+
* [#3841](https://github.com/rollup/rollup/pull/3841): Improved watcher hooks (@Amareis)
|
|
23
|
+
* [#3848](https://github.com/rollup/rollup/pull/3848): Add options hook to asyncpluginhooks (@intrnl)
|
|
24
|
+
|
|
25
|
+
## 2.32.1
|
|
26
|
+
*2020-10-21*
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
* Print warning location for plugin warnings if only `loc` is supplied (#3824)
|
|
30
|
+
|
|
31
|
+
### Pull Requests
|
|
32
|
+
* [#3824](https://github.com/rollup/rollup/pull/3824): plugin warnings not showing warning.loc (@luciotato)
|
|
33
|
+
|
|
34
|
+
## 2.32.0
|
|
35
|
+
*2020-10-16*
|
|
36
|
+
|
|
37
|
+
### Features
|
|
38
|
+
* Extend `preserveEntrySignatures` with a value `"exports-only"` to allow extension only if an entry does not have exports (#3823)
|
|
39
|
+
|
|
40
|
+
### Pull Requests
|
|
41
|
+
* [#3823](https://github.com/rollup/rollup/pull/3823): Add "exports-only" option to preserveSignature (@lukastaegert)
|
|
42
|
+
|
|
3
43
|
## 2.31.0
|
|
4
44
|
*2020-10-15*
|
|
5
45
|
|
package/dist/bin/rollup
CHANGED