rollup 2.60.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 +71 -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 +724 -690
- package/dist/es/shared/watch.js +2 -2
- package/dist/loadConfigFile.js +3 -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 +2 -2
- package/dist/shared/loadConfigFile.js +96 -37
- package/dist/shared/mergeOptions.js +2 -2
- package/dist/shared/rollup.js +724 -690
- package/dist/shared/watch-cli.js +36 -13
- package/dist/shared/watch.js +2 -2
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,76 @@
|
|
|
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
|
+
|
|
32
|
+
## 2.61.1
|
|
33
|
+
|
|
34
|
+
_2021-12-11_
|
|
35
|
+
|
|
36
|
+
### Bug Fixes
|
|
37
|
+
|
|
38
|
+
- Only resolve this.load once the code of the module is available (#4296)
|
|
39
|
+
|
|
40
|
+
### Pull Requests
|
|
41
|
+
|
|
42
|
+
- [#4296](https://github.com/rollup/rollup/pull/4296): Make sure this.load waits for modules that are already loading (@lukastaegert)
|
|
43
|
+
- [#4298](https://github.com/rollup/rollup/pull/4298): use set for reserved words (@dnalborczyk)
|
|
44
|
+
|
|
45
|
+
## 2.61.0
|
|
46
|
+
|
|
47
|
+
_2021-12-09_
|
|
48
|
+
|
|
49
|
+
### Features
|
|
50
|
+
|
|
51
|
+
- Support ergonomic brand checks for private fields (#4293)
|
|
52
|
+
|
|
53
|
+
### Bug Fixes
|
|
54
|
+
|
|
55
|
+
- Improve handling of directory creation on systems with restrictive open files limit (#4288)
|
|
56
|
+
|
|
57
|
+
### Pull Requests
|
|
58
|
+
|
|
59
|
+
- [#4288](https://github.com/rollup/rollup/pull/4288): modifymkdirpath (@mgrabowski84)
|
|
60
|
+
- [#4293](https://github.com/rollup/rollup/pull/4293): bump deps (@dnalborczyk)
|
|
61
|
+
|
|
62
|
+
## 2.60.2
|
|
63
|
+
|
|
64
|
+
_2021-11-30_
|
|
65
|
+
|
|
66
|
+
### Bug Fixes
|
|
67
|
+
|
|
68
|
+
- Produce correct output when dynamic import paths contain quotes (#4286)
|
|
69
|
+
|
|
70
|
+
### Pull Requests
|
|
71
|
+
|
|
72
|
+
- [#4286](https://github.com/rollup/rollup/pull/4286): Escape dynamic import paths (@danielroe)
|
|
73
|
+
|
|
3
74
|
## 2.60.1
|
|
4
75
|
|
|
5
76
|
_2021-11-22_
|
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.62.0
|
|
6
|
+
Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
|
|
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) {
|