rollup 2.50.5 → 2.51.2
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 +42 -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 +58 -18
- 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 +58 -17
- 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,47 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.51.2
|
|
4
|
+
*2021-06-11*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Include modules imported from no-treeshake modules even if they would be empty (#4138)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#4138](https://github.com/rollup/rollup/pull/4138): Include all dependencies from modules with no-treeshake (@lukastaegert)
|
|
11
|
+
|
|
12
|
+
## 2.51.1
|
|
13
|
+
*2021-06-08*
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
* Fix error when using `defineConfig` (#4134)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
* [#4134](https://github.com/rollup/rollup/pull/4134): export `rollup.defineConfig` at runtime (@mshrtsr)
|
|
20
|
+
|
|
21
|
+
## 2.51.0
|
|
22
|
+
*2021-06-06*
|
|
23
|
+
|
|
24
|
+
### Features
|
|
25
|
+
* Add a helper for IntelliSense support in config files (#4127)
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
* Improve performance when generating source maps (#4122)
|
|
29
|
+
|
|
30
|
+
### Pull Requests
|
|
31
|
+
* [#4122](https://github.com/rollup/rollup/pull/4122): User Map to optimize performance (@izevo)
|
|
32
|
+
* [#4127](https://github.com/rollup/rollup/pull/4127): Export defineConfig defines the auxiliary function of the configuration (@rxliuli)
|
|
33
|
+
|
|
34
|
+
## 2.50.6
|
|
35
|
+
*2021-06-03*
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
* Do not consider the object spread operator as side effect when `propertyReadSideEffects` are false (#4119)
|
|
39
|
+
* Detect side effects when returning thenables from async arrow functions (#4120)
|
|
40
|
+
|
|
41
|
+
### Pull Requests
|
|
42
|
+
* [#4119](https://github.com/rollup/rollup/pull/4119): Respect propertyReadSideEffects in spread elements (@lukastaegert)
|
|
43
|
+
* [#4120](https://github.com/rollup/rollup/pull/4120): Detect async arrow thenable side effects (@lukastaegert)
|
|
44
|
+
|
|
3
45
|
## 2.50.5
|
|
4
46
|
*2021-05-30*
|
|
5
47
|
|
package/dist/bin/rollup
CHANGED