rollup 2.75.5 → 2.76.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 +52 -0
- package/dist/bin/rollup +18 -18
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +650 -730
- package/dist/es/shared/watch.js +3 -2
- package/dist/loadConfigFile.js +6 -6
- package/dist/rollup.browser.js +3 -3
- package/dist/rollup.browser.js.map +1 -1
- package/dist/rollup.d.ts +2 -0
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +20 -12
- package/dist/shared/mergeOptions.js +3 -2
- package/dist/shared/rollup.js +650 -730
- package/dist/shared/watch-cli.js +17 -17
- package/dist/shared/watch.js +2 -2
- package/package.json +19 -19
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.76.0
|
|
4
|
+
Fri, 08 Jul 2022 08:35:58 GMT - commit 0eb042740eb41812b9e96e0e7b6ed8aa4cab04a7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -162,6 +162,7 @@ function mergeOutputOptions(config, overrides, warn) {
|
|
|
162
162
|
preserveModulesRoot: getOption('preserveModulesRoot'),
|
|
163
163
|
sanitizeFileName: getOption('sanitizeFileName'),
|
|
164
164
|
sourcemap: getOption('sourcemap'),
|
|
165
|
+
sourcemapBaseUrl: getOption('sourcemapBaseUrl'),
|
|
165
166
|
sourcemapExcludeSources: getOption('sourcemapExcludeSources'),
|
|
166
167
|
sourcemapFile: getOption('sourcemapFile'),
|
|
167
168
|
sourcemapPathTransform: getOption('sourcemapPathTransform'),
|
package/dist/loadConfigFile.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js v2.
|
|
4
|
-
|
|
3
|
+
Rollup.js v2.76.0
|
|
4
|
+
Fri, 08 Jul 2022 08:35:58 GMT - commit 0eb042740eb41812b9e96e0e7b6ed8aa4cab04a7
|
|
5
5
|
|
|
6
6
|
https://github.com/rollup/rollup
|
|
7
7
|
|
|
@@ -9,19 +9,19 @@
|
|
|
9
9
|
*/
|
|
10
10
|
'use strict';
|
|
11
11
|
|
|
12
|
-
const loadConfigFile = require('./shared/loadConfigFile.js');
|
|
13
12
|
require('path');
|
|
14
13
|
require('process');
|
|
15
14
|
require('url');
|
|
15
|
+
const loadConfigFile_js = require('./shared/loadConfigFile.js');
|
|
16
16
|
require('./shared/rollup.js');
|
|
17
|
+
require('./shared/mergeOptions.js');
|
|
18
|
+
require('tty');
|
|
17
19
|
require('perf_hooks');
|
|
18
20
|
require('crypto');
|
|
19
21
|
require('fs');
|
|
20
22
|
require('events');
|
|
21
|
-
require('tty');
|
|
22
|
-
require('./shared/mergeOptions.js');
|
|
23
23
|
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
module.exports =
|
|
26
|
+
module.exports = loadConfigFile_js.loadAndParseConfigFile;
|
|
27
27
|
//# sourceMappingURL=loadConfigFile.js.map
|