rollup 2.61.0 → 2.64.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 +88 -0
- package/dist/bin/rollup +11 -23
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +4 -2
- package/dist/es/shared/rollup.js +382 -268
- package/dist/es/shared/watch.js +22 -18
- 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 +19 -3
- package/dist/rollup.js +4 -2
- package/dist/shared/index.js +15 -13
- package/dist/shared/loadConfigFile.js +10 -11
- package/dist/shared/mergeOptions.js +12 -5
- package/dist/shared/rollup.js +427 -310
- package/dist/shared/watch-cli.js +21 -29
- package/dist/shared/watch.js +8 -18
- package/package.json +9 -9
package/dist/es/rollup.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.64.0
|
|
4
|
+
Fri, 14 Jan 2022 14:02:32 GMT - commit 82a3e2634a9d51b5040752e4fb2fd264651d504e
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
https://github.com/rollup/rollup
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
*/
|
|
11
11
|
export { version as VERSION, defineConfig, rollup, watch } from './shared/rollup.js';
|
|
12
12
|
import 'path';
|
|
13
|
+
import 'process';
|
|
14
|
+
import 'perf_hooks';
|
|
13
15
|
import 'crypto';
|
|
14
16
|
import 'fs';
|
|
15
17
|
import 'events';
|