rollup 2.58.0 → 2.59.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 +46 -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 +927 -884
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- 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 +927 -884
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,51 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.59.0
|
|
4
|
+
|
|
5
|
+
_2021-11-01_
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- Support static class initialization blocks (#4249)
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
- Fix an issue with the CommonJS plugin when module.exports has inherited properties (#4256)
|
|
14
|
+
|
|
15
|
+
### Pull Requests
|
|
16
|
+
|
|
17
|
+
- [#4236](https://github.com/rollup/rollup/pull/4236): typescript bug class field initialization order (@dnalborczyk)
|
|
18
|
+
- [#4249](https://github.com/rollup/rollup/pull/4249): Support for class static initialization block (@dnalborczyk and @lukastaegert)
|
|
19
|
+
- [#4256](https://github.com/rollup/rollup/pull/4256): Skip inherited properties in synthetic namespaces (@lukastaegert)
|
|
20
|
+
|
|
21
|
+
## 2.58.3
|
|
22
|
+
|
|
23
|
+
_2021-10-25_
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- Republish 2.58.1 with npm 6 as files were missing
|
|
28
|
+
|
|
29
|
+
## 2.58.2
|
|
30
|
+
|
|
31
|
+
_2021-10-25_
|
|
32
|
+
|
|
33
|
+
### Bug Fixes
|
|
34
|
+
|
|
35
|
+
- Republish 2.58.1 as files were missing
|
|
36
|
+
|
|
37
|
+
## 2.58.1
|
|
38
|
+
|
|
39
|
+
_2021-10-25_
|
|
40
|
+
|
|
41
|
+
### Bug Fixes
|
|
42
|
+
|
|
43
|
+
- Fix an issue with the CommonJS plugin when module.exports is falsy (#4247)
|
|
44
|
+
|
|
45
|
+
### Pull Requests
|
|
46
|
+
|
|
47
|
+
- [#4247](https://github.com/rollup/rollup/pull/4247): Handle falsy synthetic namespaces (@lukastaegert)
|
|
48
|
+
|
|
3
49
|
## 2.58.0
|
|
4
50
|
|
|
5
51
|
_2021-10-01_
|
package/dist/bin/rollup
CHANGED