rollup 2.69.2 → 2.70.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 -3
- package/dist/es/rollup.browser.js +3 -4
- package/dist/es/rollup.js +2 -3
- package/dist/es/shared/rollup.js +1098 -1043
- 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 +46 -33
- 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 +1090 -1035
- package/dist/shared/watch-cli.js +5 -6
- package/dist/shared/watch.js +22 -11
- package/package.json +23 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.70.2
|
|
4
|
+
|
|
5
|
+
_2022-04-15_
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Do not enforce undefined return values in TypeScript types (#4463)
|
|
10
|
+
|
|
11
|
+
### Pull Requests
|
|
12
|
+
|
|
13
|
+
- [#4463](https://github.com/rollup/rollup/pull/4463): use void for options hook instead of undefined (@ycmjason)
|
|
14
|
+
|
|
15
|
+
## 2.70.1
|
|
16
|
+
|
|
17
|
+
_2022-03-14_
|
|
18
|
+
|
|
19
|
+
### Bug Fixes
|
|
20
|
+
|
|
21
|
+
- Handle unfinished hook action errors as regular errors and avoid console logging (#4434)
|
|
22
|
+
- Allow access to "dist" folder in a Node 17 compatible way (#4436)
|
|
23
|
+
|
|
24
|
+
### Pull Requests
|
|
25
|
+
|
|
26
|
+
- [#4434](https://github.com/rollup/rollup/pull/4434): Track unfinished hook actions as regular errors (@lukastaegert)
|
|
27
|
+
- [#4436](https://github.com/rollup/rollup/pull/4436): Update package.json (@frank-dspeed)
|
|
28
|
+
|
|
29
|
+
## 2.70.0
|
|
30
|
+
|
|
31
|
+
_2022-03-07_
|
|
32
|
+
|
|
33
|
+
### Features
|
|
34
|
+
|
|
35
|
+
- Make the `watchChange` and `closeWatcher` hooks asynchronous and make Rollup wait for these hooks before continuing (#4427)
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- Do not abort watch mode for errors in `watchChange` but display them properly (#4427)
|
|
40
|
+
|
|
41
|
+
### Pull Requests
|
|
42
|
+
|
|
43
|
+
- [#4427](https://github.com/rollup/rollup/pull/4427): Do not abort watch mode on errors in watchChange (@lukastaegert)
|
|
44
|
+
|
|
3
45
|
## 2.69.2
|
|
4
46
|
|
|
5
47
|
_2022-03-06_
|
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.2
|
|
6
|
+
Fri, 15 Apr 2022 05:14:21 GMT - commit 030c56fd6b186a0ddfd57d143ad703f34fd2c17a
|
|
8
7
|
|
|
9
8
|
https://github.com/rollup/rollup
|
|
10
9
|
|