rollup 2.60.0 → 2.61.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 +54 -0
- package/dist/bin/rollup +3 -2
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +680 -696
- package/dist/es/shared/watch.js +4 -6
- package/dist/loadConfigFile.js +3 -2
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +3 -5
- package/dist/shared/loadConfigFile.js +96 -37
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +679 -697
- package/dist/shared/watch-cli.js +36 -13
- package/dist/shared/watch.js +2 -2
- package/package.json +21 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# rollup changelog
|
|
2
2
|
|
|
3
|
+
## 2.61.1
|
|
4
|
+
|
|
5
|
+
_2021-12-11_
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- Only resolve this.load once the code of the module is available (#4296)
|
|
10
|
+
|
|
11
|
+
### Pull Requests
|
|
12
|
+
|
|
13
|
+
- [#4296](https://github.com/rollup/rollup/pull/4296): Make sure this.load waits for modules that are already loading (@lukastaegert)
|
|
14
|
+
- [#4298](https://github.com/rollup/rollup/pull/4298): use set for reserved words (@dnalborczyk)
|
|
15
|
+
|
|
16
|
+
## 2.61.0
|
|
17
|
+
|
|
18
|
+
_2021-12-09_
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
- Support ergonomic brand checks for private fields (#4293)
|
|
23
|
+
|
|
24
|
+
### Bug Fixes
|
|
25
|
+
|
|
26
|
+
- Improve handling of directory creation on systems with restrictive open files limit (#4288)
|
|
27
|
+
|
|
28
|
+
### Pull Requests
|
|
29
|
+
|
|
30
|
+
- [#4288](https://github.com/rollup/rollup/pull/4288): modifymkdirpath (@mgrabowski84)
|
|
31
|
+
- [#4293](https://github.com/rollup/rollup/pull/4293): bump deps (@dnalborczyk)
|
|
32
|
+
|
|
33
|
+
## 2.60.2
|
|
34
|
+
|
|
35
|
+
_2021-11-30_
|
|
36
|
+
|
|
37
|
+
### Bug Fixes
|
|
38
|
+
|
|
39
|
+
- Produce correct output when dynamic import paths contain quotes (#4286)
|
|
40
|
+
|
|
41
|
+
### Pull Requests
|
|
42
|
+
|
|
43
|
+
- [#4286](https://github.com/rollup/rollup/pull/4286): Escape dynamic import paths (@danielroe)
|
|
44
|
+
|
|
45
|
+
## 2.60.1
|
|
46
|
+
|
|
47
|
+
_2021-11-22_
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
- Make sure virtual files have proper file extensions when preserving modules (#4270)
|
|
52
|
+
|
|
53
|
+
### Pull Requests
|
|
54
|
+
|
|
55
|
+
- [#4270](https://github.com/rollup/rollup/pull/4270): Use entryFileNames when generating filenames for virtual modules (@BPScott)
|
|
56
|
+
|
|
3
57
|
## 2.60.0
|
|
4
58
|
|
|
5
59
|
_2021-11-11_
|
package/dist/bin/rollup
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
4
|
@license
|
|
5
|
-
Rollup.js v2.
|
|
6
|
-
|
|
5
|
+
Rollup.js v2.61.1
|
|
6
|
+
Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
https://github.com/rollup/rollup
|
|
@@ -24,6 +24,7 @@ const require$$1 = require('module');
|
|
|
24
24
|
require('crypto');
|
|
25
25
|
require('events');
|
|
26
26
|
require('url');
|
|
27
|
+
require('process');
|
|
27
28
|
require('tty');
|
|
28
29
|
|
|
29
30
|
function _interopNamespaceDefault(e) {
|