rollup 2.37.0 → 2.37.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 +7 -1
- 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 +66 -5306
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- 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 +68 -5308
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,16 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.37.1
|
|
4
|
+
*2021-01-20*
|
|
5
|
+
|
|
6
|
+
### Pull Requests
|
|
7
|
+
* [#3929](https://github.com/rollup/rollup/pull/3929): Deduplicate acorn import (@lukastaegert)
|
|
8
|
+
|
|
3
9
|
## 2.37.0
|
|
4
10
|
*2021-01-19*
|
|
5
11
|
|
|
6
12
|
### Features
|
|
7
|
-
* Always check modules for side
|
|
13
|
+
* Always check modules for side effects that only indirectly reexport a used variable (#3840)
|
|
8
14
|
* Warn if a circular dependency would cause wrong execution order when preserving modules (#3840)
|
|
9
15
|
|
|
10
16
|
### Bug Fixes
|
package/dist/bin/rollup
CHANGED