rollup 2.39.0 → 2.41.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 +43 -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 +594 -553
- package/dist/es/shared/watch.js +448 -448
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -0
- package/dist/rollup.d.ts +2 -2
- 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 +594 -553
- package/dist/shared/watch-cli.js +18 -18
- package/dist/shared/watch.js +2 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.41.1
|
|
4
|
+
*2021-03-11*
|
|
5
|
+
|
|
6
|
+
### Pull Requests
|
|
7
|
+
* [#3990](https://github.com/rollup/rollup/pull/3990): Add browser sourcemap and remove log (@lukastaegert)
|
|
8
|
+
|
|
9
|
+
## 2.41.0
|
|
10
|
+
*2021-03-09*
|
|
11
|
+
|
|
12
|
+
### Features
|
|
13
|
+
* Add option to `treeshake.propertyReadSideEffects` to keep all property accesses (#3985)
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Also respect pure comment annotations when a plugin provides an AST in the transform hook provided they use this.parse (#3981)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#3981](https://github.com/rollup/rollup/pull/3981): Move pure comment annotation to Graph.contextParse (@yannayl)
|
|
20
|
+
* [#3985](https://github.com/rollup/rollup/pull/3985): implement --treeshake.propertyReadSideEffects=always to handle getters with side effects (@kzc)
|
|
21
|
+
|
|
22
|
+
## 2.40.0
|
|
23
|
+
*2021-02-26*
|
|
24
|
+
|
|
25
|
+
### Features
|
|
26
|
+
* Make sure that entry point variable names take precedence over variable names in dependencies when deconflicting (#3977)
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
* Replace `:` in generated file names to prevent invalid files on Windows (#3972)
|
|
30
|
+
|
|
31
|
+
### Pull Requests
|
|
32
|
+
* [#3972](https://github.com/rollup/rollup/pull/3972): Don't allow `:` in file names (@lukastaegert)
|
|
33
|
+
* [#3976](https://github.com/rollup/rollup/pull/3976): Add soft breaks to guide to improve mobile experience (@lukastaegert)
|
|
34
|
+
* [#3977](https://github.com/rollup/rollup/pull/3977): Reverse module deconflicting order (@lukastaegert)
|
|
35
|
+
|
|
36
|
+
## 2.39.1
|
|
37
|
+
*2021-02-23*
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
* Make sure local variables named Symbol, Object or Promise do not conflict with code generated by Rollup (#3971)
|
|
41
|
+
|
|
42
|
+
### Pull Requests
|
|
43
|
+
* [#3964](https://github.com/rollup/rollup/pull/3964): Remove extra word (@jamonholmgren)
|
|
44
|
+
* [#3971](https://github.com/rollup/rollup/pull/3971): Avoid conflicts with local variables named Symbol, Object, Promise (@lukastaegert)
|
|
45
|
+
|
|
3
46
|
## 2.39.0
|
|
4
47
|
*2021-02-12*
|
|
5
48
|
|
package/dist/bin/rollup
CHANGED