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.
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.75.7
4
- Mon, 20 Jun 2022 07:24:02 GMT - commit 057171c2d3bc2092b7f543fc05ead01f12595f12
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'),
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.75.7
4
- Mon, 20 Jun 2022 07:24:02 GMT - commit 057171c2d3bc2092b7f543fc05ead01f12595f12
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 = loadConfigFile.loadAndParseConfigFile;
26
+ module.exports = loadConfigFile_js.loadAndParseConfigFile;
27
27
  //# sourceMappingURL=loadConfigFile.js.map