rollup 2.75.7 → 3.0.0-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/LICENSE.md +2 -2
- package/dist/bin/rollup +92 -86
- package/dist/es/rollup.browser.js +3 -3
- package/dist/es/rollup.js +2 -2
- package/dist/es/shared/rollup.js +1608 -1517
- 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 +28 -55
- package/dist/rollup.js +2 -2
- package/dist/shared/index.js +2 -2
- package/dist/shared/loadConfigFile.js +19 -10
- package/dist/shared/mergeOptions.js +3 -2
- package/dist/shared/rollup.js +1537 -1446
- package/dist/shared/watch-cli.js +17 -17
- package/dist/shared/watch.js +2 -2
- package/package.json +26 -26
- package/CHANGELOG.md +0 -6629
package/dist/es/shared/watch.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
/*
|
|
2
2
|
@license
|
|
3
|
-
Rollup.js
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.0.0-1
|
|
4
|
+
Fri, 08 Jul 2022 11:35:32 GMT - commit 48ce34db70ebc2b4c1be38e6b8b02881be90b9f1
|
|
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
|
|
4
|
-
|
|
3
|
+
Rollup.js v3.0.0-1
|
|
4
|
+
Fri, 08 Jul 2022 11:35:32 GMT - commit 48ce34db70ebc2b4c1be38e6b8b02881be90b9f1
|
|
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
|