rollup 2.50.4 → 2.51.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 +3 -3
- package/dist/es/shared/rollup.js +59 -13
- 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.d.ts +3 -0
- package/dist/rollup.js +3 -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 +59 -12
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.51.1
|
|
4
|
+
*2021-06-08*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Fix error when using `defineConfig` (#4134)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#4134](https://github.com/rollup/rollup/pull/4134): export `rollup.defineConfig` at runtime (@mshrtsr)
|
|
11
|
+
|
|
12
|
+
## 2.51.0
|
|
13
|
+
*2021-06-06*
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
* Add a helper for IntelliSense support in config files (#4127)
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
* Improve performance when generating source maps (#4122)
|
|
20
|
+
|
|
21
|
+
### Pull Requests
|
|
22
|
+
* [#4122](https://github.com/rollup/rollup/pull/4122): User Map to optimize performance (@izevo)
|
|
23
|
+
* [#4127](https://github.com/rollup/rollup/pull/4127): Export defineConfig defines the auxiliary function of the configuration (@rxliuli)
|
|
24
|
+
|
|
25
|
+
## 2.50.6
|
|
26
|
+
*2021-06-03*
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
* Do not consider the object spread operator as side effect when `propertyReadSideEffects` are false (#4119)
|
|
30
|
+
* Detect side effects when returning thenables from async arrow functions (#4120)
|
|
31
|
+
|
|
32
|
+
### Pull Requests
|
|
33
|
+
* [#4119](https://github.com/rollup/rollup/pull/4119): Respect propertyReadSideEffects in spread elements (@lukastaegert)
|
|
34
|
+
* [#4120](https://github.com/rollup/rollup/pull/4120): Detect async arrow thenable side effects (@lukastaegert)
|
|
35
|
+
|
|
36
|
+
## 2.50.5
|
|
37
|
+
*2021-05-30*
|
|
38
|
+
|
|
39
|
+
### Bug Fixes
|
|
40
|
+
* Detect side effects when accessing thenables (#4115)
|
|
41
|
+
|
|
42
|
+
### Pull Requests
|
|
43
|
+
* [#4114](https://github.com/rollup/rollup/pull/4114): use `colorette` instead of `turbocolor` (@ryuever)
|
|
44
|
+
* [#4115](https://github.com/rollup/rollup/pull/4115): Tracks side effects of thenables (@lukastaegert)
|
|
45
|
+
|
|
3
46
|
## 2.50.4
|
|
4
47
|
*2021-05-29*
|
|
5
48
|
|
package/dist/bin/rollup
CHANGED