rollup 2.61.1 → 2.62.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 +29 -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 +144 -85
- package/dist/es/shared/watch.js +6 -4
- 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 +1 -0
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +5 -3
- package/dist/shared/loadConfigFile.js +2 -2
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +145 -84
- package/dist/shared/watch-cli.js +2 -2
- package/dist/shared/watch.js +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.62.0
|
|
4
|
+
|
|
5
|
+
_2021-12-24_
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- Only resolve this.load once the code of the module is available (#4296)
|
|
10
|
+
- Mark additional string prototype methods as side-effect-free and correct typings of existing ones (#4299)
|
|
11
|
+
- Mark additional array prototype methods as side-effect-free and correct typings of existing ones (#4309)
|
|
12
|
+
- Expose if a module is included after tree-shaking in its ModuleInfo (#4305)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- Fix how fsevents is included to improve watch mode on MacOS (#4312)
|
|
17
|
+
|
|
18
|
+
### Pull Requests
|
|
19
|
+
|
|
20
|
+
- [#4299](https://github.com/rollup/rollup/pull/4299): Add additional string prototype methods (@dnalborczyk)
|
|
21
|
+
- [#4300](https://github.com/rollup/rollup/pull/4300): Bump deps, fix expected test result for core-js (@dnalborczyk)
|
|
22
|
+
- [#4302](https://github.com/rollup/rollup/pull/4302): Replace type assertion with type guard (@dnalborczyk)
|
|
23
|
+
- [#4304](https://github.com/rollup/rollup/pull/4304): Re-use reserved names set (@dnalborczyk)
|
|
24
|
+
- [#4305](https://github.com/rollup/rollup/pull/4305): Expose isIncluded in module info (@william57m)
|
|
25
|
+
- [#4306](https://github.com/rollup/rollup/pull/4306): Fix git line breaks on windows (@dnalborczyk)
|
|
26
|
+
- [#4307](https://github.com/rollup/rollup/pull/4307): Add macos to pipeline (@dnalborczyk)
|
|
27
|
+
- [#4309](https://github.com/rollup/rollup/pull/4309): Add additional array prototype methods (@dnalborczyk)
|
|
28
|
+
- [#4311](https://github.com/rollup/rollup/pull/4311): Add Deno instructions to docs (@jespertheend)
|
|
29
|
+
- [#4312](https://github.com/rollup/rollup/pull/4312): fsevents integration (@dnalborczyk)
|
|
30
|
+
- [#4313](https://github.com/rollup/rollup/pull/4313): Remove non-existing static functions from known globals (@dnalborczyk)
|
|
31
|
+
|
|
3
32
|
## 2.61.1
|
|
4
33
|
|
|
5
34
|
_2021-12-11_
|
package/dist/bin/rollup
CHANGED