rollup 2.18.0 → 2.18.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 +12 -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 +12 -5
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +2 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +17 -4
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +12 -5
- 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,17 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.18.1
|
|
4
|
+
*2020-06-26*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Make sure synthetic exports are present when a module is imported dynamically (#3648)
|
|
8
|
+
* Strip the `rollup-plugin-` prefix off the plugin name when looking for the plugin export in a CLI plugin without a default export (#3647)
|
|
9
|
+
* Convert plugin names with dashes to camel case when looking for the plugin export in a CLI plugin without a default export (#3647)
|
|
10
|
+
|
|
11
|
+
### Pull Requests
|
|
12
|
+
* [#3647](https://github.com/rollup/rollup/pull/3647): Strip rollup-plugin prefix to find named plugin exports, throw when export cannot be found (@lukastaegert)
|
|
13
|
+
* [#3648](https://github.com/rollup/rollup/pull/3648): Always create a dynamic namespace object when a module with synthetic named exports is imported dynamically (@lukastaegert)
|
|
14
|
+
|
|
3
15
|
## 2.18.0
|
|
4
16
|
*2020-06-22*
|
|
5
17
|
|
package/dist/bin/rollup
CHANGED