rollup 2.69.1 → 2.70.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 +44 -0
- package/dist/bin/rollup +2 -3
- package/dist/es/rollup.browser.js +3 -4
- package/dist/es/rollup.js +2 -3
- package/dist/es/shared/rollup.js +132 -95
- package/dist/es/shared/watch.js +22 -11
- package/dist/loadConfigFile.js +2 -3
- package/dist/rollup.browser.js +3 -4
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.d.ts +33 -16
- package/dist/rollup.js +2 -3
- package/dist/shared/index.js +2 -3
- package/dist/shared/loadConfigFile.js +2 -3
- package/dist/shared/mergeOptions.js +2 -3
- package/dist/shared/rollup.js +124 -87
- package/dist/shared/watch-cli.js +5 -6
- package/dist/shared/watch.js +22 -11
- package/package.json +5 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,49 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.70.1
|
|
4
|
+
|
|
5
|
+
_2022-03-14_
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Handle unfinished hook action errors as regular errors and avoid console logging (#4434)
|
|
10
|
+
- Allow access to "dist" folder in a Node 17 compatible way (#4436)
|
|
11
|
+
|
|
12
|
+
### Pull Requests
|
|
13
|
+
|
|
14
|
+
- [#4434](https://github.com/rollup/rollup/pull/4434): Track unfinished hook actions as regular errors (@lukastaegert)
|
|
15
|
+
- [#4436](https://github.com/rollup/rollup/pull/4436): Update package.json (@frank-dspeed)
|
|
16
|
+
|
|
17
|
+
## 2.70.0
|
|
18
|
+
|
|
19
|
+
_2022-03-07_
|
|
20
|
+
|
|
21
|
+
### Features
|
|
22
|
+
|
|
23
|
+
- Make the `watchChange` and `closeWatcher` hooks asynchronous and make Rollup wait for these hooks before continuing (#4427)
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
- Do not abort watch mode for errors in `watchChange` but display them properly (#4427)
|
|
28
|
+
|
|
29
|
+
### Pull Requests
|
|
30
|
+
|
|
31
|
+
- [#4427](https://github.com/rollup/rollup/pull/4427): Do not abort watch mode on errors in watchChange (@lukastaegert)
|
|
32
|
+
|
|
33
|
+
## 2.69.2
|
|
34
|
+
|
|
35
|
+
_2022-03-06_
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- Mark `Object.entries` and `Object.fromEntries` as pure (#4429)
|
|
40
|
+
- Make sure new properties on Array.prototype and Object.prototype are not evaluated as "undefined" (#4428)
|
|
41
|
+
|
|
42
|
+
### Pull Requests
|
|
43
|
+
|
|
44
|
+
- [#4428](https://github.com/rollup/rollup/pull/4428): Treat unknown prototype props as unknown (@lukastaegert)
|
|
45
|
+
- [#4429](https://github.com/rollup/rollup/pull/4429): Treat unknown prototype props as unknown (@869288142)
|
|
46
|
+
|
|
3
47
|
## 2.69.1
|
|
4
48
|
|
|
5
49
|
_2022-03-04_
|
package/dist/bin/rollup
CHANGED
|
@@ -2,9 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
@license
|
|
5
|
-
Rollup.js v2.
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
Rollup.js v2.70.1
|
|
6
|
+
Mon, 14 Mar 2022 05:50:08 GMT - commit b8315e03f9790d610a413316fbf6d565f9340cab
|
|
8
7
|
|
|
9
8
|
https://github.com/rollup/rollup
|
|
10
9
|
|