rollup 2.33.2 → 2.33.3
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 +10 -0
- package/README.md +2 -2
- 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 +14 -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.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 +14 -13
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.33.3
|
|
4
|
+
*2020-11-18*
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
* Do not use `.js` extension when importing AMD files from a UMD bundle (#3872)
|
|
8
|
+
|
|
9
|
+
### Pull Requests
|
|
10
|
+
* [#3861](https://github.com/rollup/rollup/pull/3861): Update chat/support links (@shellscape)
|
|
11
|
+
* [#3872](https://github.com/rollup/rollup/pull/3872): Also removeExtensionFromRelativeAmdId in UMD finaliser (@tjenkinson)
|
|
12
|
+
|
|
3
13
|
## 2.33.2
|
|
4
14
|
*2020-11-14*
|
|
5
15
|
|
package/README.md
CHANGED
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
<a href="https://david-dm.org/rollup/rollup">
|
|
23
23
|
<img src="https://david-dm.org/rollup/rollup/status.svg" alt="dependency status">
|
|
24
24
|
</a>
|
|
25
|
-
<a href='https://
|
|
26
|
-
<img src='https://
|
|
25
|
+
<a href='https://is.gd/rollup_chat?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge'>
|
|
26
|
+
<img src='https://img.shields.io/discord/466787075518365708?color=778cd1&label=chat' alt='Join the chat at https://is.gd/rollup_chat'>
|
|
27
27
|
</a>
|
|
28
28
|
</p>
|
|
29
29
|
|
package/dist/bin/rollup
CHANGED