rollup 2.39.1 → 2.40.0
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 +14 -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 +258 -253
- package/dist/es/shared/watch.js +448 -448
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +442 -442
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +258 -253
- package/dist/shared/watch-cli.js +18 -18
- package/dist/shared/watch.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.40.0
|
|
4
|
+
*2021-02-26*
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
* Make sure that entry point variable names take precedence over variable names in dependencies when deconflicting (#3977)
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
* Replace `:` in generated file names to prevent invalid files on Windows (#3972)
|
|
11
|
+
|
|
12
|
+
### Pull Requests
|
|
13
|
+
* [#3972](https://github.com/rollup/rollup/pull/3972): Don't allow `:` in file names (@lukastaegert)
|
|
14
|
+
* [#3976](https://github.com/rollup/rollup/pull/3976): Add soft breaks to guide to improve mobile experience (@lukastaegert)
|
|
15
|
+
* [#3977](https://github.com/rollup/rollup/pull/3977): Reverse module deconflicting order (@lukastaegert)
|
|
16
|
+
|
|
3
17
|
## 2.39.1
|
|
4
18
|
*2021-02-23*
|
|
5
19
|
|
package/dist/bin/rollup
CHANGED