rollup 2.32.1 → 2.33.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 +41 -0
- package/README.md +2 -2
- 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 +49 -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 +19 -7
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +49 -30
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +53 -25
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,46 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.33.3
|
|
4
|
+
*2020-11-18*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Do not use `.js` extension when importing AMD files from a UMD bundle (#3872)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3861](https://github.com/rollup/rollup/pull/3861): Update chat/support links (@shellscape)
|
|
11
|
+
* [#3872](https://github.com/rollup/rollup/pull/3872): Also removeExtensionFromRelativeAmdId in UMD finaliser (@tjenkinson)
|
|
12
|
+
|
|
13
|
+
## 2.33.2
|
|
14
|
+
*2020-11-14*
|
|
15
|
+
|
|
16
|
+
### Bug Fixes
|
|
17
|
+
* Fix an issue where statements were ignored after a conditional return in a labeled statement (#3871)
|
|
18
|
+
|
|
19
|
+
### Pull Requests
|
|
20
|
+
* [#3871](https://github.com/rollup/rollup/pull/3871): Correctly track label usage in try statements (@Amareis)
|
|
21
|
+
|
|
22
|
+
## 2.33.1
|
|
23
|
+
*2020-11-02*
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
* Add `syntheticNamedExports` to `this.getModuleInfo` to align with documentation (#3847)
|
|
27
|
+
|
|
28
|
+
### Pull Requests
|
|
29
|
+
* [#3847](https://github.com/rollup/rollup/pull/3847): Expose syntheticNamedExports to ModuleInfo (@Amareis)
|
|
30
|
+
* [#3852](https://github.com/rollup/rollup/pull/3852): Fix typo on docs (@jpsc)
|
|
31
|
+
|
|
32
|
+
## 2.33.0
|
|
33
|
+
*2020-11-01*
|
|
34
|
+
|
|
35
|
+
### Features
|
|
36
|
+
* Add parameter to "watchChange" hook to denote if a change was an addition, update or deletion (#3841)
|
|
37
|
+
* Add "closeWatcher" hook to allow plugins to clean up resources when the watcher is closed (#3841)
|
|
38
|
+
* Add "this.getWatchFiles" function to plugin context to get the current set of watched files (#3841)
|
|
39
|
+
|
|
40
|
+
### Pull Requests
|
|
41
|
+
* [#3841](https://github.com/rollup/rollup/pull/3841): Improved watcher hooks (@Amareis)
|
|
42
|
+
* [#3848](https://github.com/rollup/rollup/pull/3848): Add options hook to asyncpluginhooks (@intrnl)
|
|
43
|
+
|
|
3
44
|
## 2.32.1
|
|
4
45
|
*2020-10-21*
|
|
5
46
|
|
package/README.md
CHANGED
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
<a href="https://david-dm.org/rollup/rollup">
|
|
23
23
|
<img src="https://david-dm.org/rollup/rollup/status.svg" alt="dependency status">
|
|
24
24
|
</a>
|
|
25
|
-
<a href='https://
|
|
26
|
-
<img src='https://
|
|
25
|
+
<a href='https://is.gd/rollup_chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge'>
|
|
26
|
+
<img src='https://img.shields.io/discord/466787075518365708?color=778cd1&label=chat' alt='Join the chat at https://is.gd/rollup_chat'>
|
|
27
27
|
</a>
|
|
28
28
|
</p>
|
|
29
29
|
|
package/dist/bin/rollup
CHANGED