rollup 2.66.1 → 2.67.3

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,21 +1,21 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.66.1
4
- Tue, 25 Jan 2022 07:58:28 GMT - commit f523f0098d3e98f87abef54f48f39d06a7cc7eec
3
+ Rollup.js v2.67.3
4
+ Fri, 18 Feb 2022 05:29:45 GMT - commit fa4e1b720f64ffae24fcbf99a44b605842ac7f23
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
8
8
 
9
9
  Released under the MIT License.
10
10
  */
11
- import require$$0$1, { resolve } from 'path';
11
+ import require$$0$2, { resolve } from 'path';
12
+ import process$1 from 'process';
12
13
  import { defaultOnWarn, ensureArray, warnUnknownOptions, objectifyOptionWithPresets, treeshakePresets, objectifyOption, generatedCodePresets, picomatch as picomatch$2, getAugmentedNamespace, fseventsImporter, createFilter, rollupInternal } from './rollup.js';
13
14
  import require$$2$1, { platform } from 'os';
14
- import require$$0$2 from 'events';
15
- import fs$4 from 'fs';
15
+ import require$$0$3 from 'events';
16
+ import require$$0$1 from 'fs';
16
17
  import require$$2 from 'util';
17
18
  import require$$1 from 'stream';
18
- import 'process';
19
19
  import 'perf_hooks';
20
20
  import 'crypto';
21
21
 
@@ -176,9 +176,9 @@ function mergeOutputOptions(config, overrides, warn) {
176
176
 
177
177
  var chokidar$1 = {};
178
178
 
179
- const fs$3 = fs$4;
179
+ const fs$3 = require$$0$1;
180
180
  const { Readable } = require$$1;
181
- const sysPath$3 = require$$0$1;
181
+ const sysPath$3 = require$$0$2;
182
182
  const { promisify: promisify$3 } = require$$2;
183
183
  const picomatch$1 = picomatch$2;
184
184
 
@@ -776,7 +776,7 @@ var isGlob$2 = function isGlob(str, options) {
776
776
  };
777
777
 
778
778
  var isGlob$1 = isGlob$2;
779
- var pathPosixDirname = require$$0$1.posix.dirname;
779
+ var pathPosixDirname = require$$0$2.posix.dirname;
780
780
  var isWin32 = require$$2$1.platform() === 'win32';
781
781
 
782
782
  var slash = '/';
@@ -2499,7 +2499,7 @@ const require$$0 = [
2499
2499
 
2500
2500
  var binaryExtensions$1 = require$$0;
2501
2501
 
2502
- const path = require$$0$1;
2502
+ const path = require$$0$2;
2503
2503
  const binaryExtensions = binaryExtensions$1;
2504
2504
 
2505
2505
  const extensions = new Set(binaryExtensions);
@@ -2510,7 +2510,7 @@ var constants = {};
2510
2510
 
2511
2511
  (function (exports) {
2512
2512
 
2513
- const {sep} = require$$0$1;
2513
+ const {sep} = require$$0$2;
2514
2514
  const {platform} = process;
2515
2515
  const os = require$$2$1;
2516
2516
 
@@ -2575,8 +2575,8 @@ exports.isLinux = platform === 'linux';
2575
2575
  exports.isIBMi = os.type() === 'OS400';
2576
2576
  }(constants));
2577
2577
 
2578
- const fs$2 = fs$4;
2579
- const sysPath$2 = require$$0$1;
2578
+ const fs$2 = require$$0$1;
2579
+ const sysPath$2 = require$$0$2;
2580
2580
  const { promisify: promisify$2 } = require$$2;
2581
2581
  const isBinaryPath = isBinaryPath$1;
2582
2582
  const {
@@ -3222,8 +3222,8 @@ var fseventsHandler = {exports: {}};
3222
3222
 
3223
3223
  const require$$3 = /*@__PURE__*/getAugmentedNamespace(fseventsImporter);
3224
3224
 
3225
- const fs$1 = fs$4;
3226
- const sysPath$1 = require$$0$1;
3225
+ const fs$1 = require$$0$1;
3226
+ const sysPath$1 = require$$0$2;
3227
3227
  const { promisify: promisify$1 } = require$$2;
3228
3228
 
3229
3229
  let fsevents;
@@ -3745,9 +3745,9 @@ async _addToFsEvents(path, transform, forceAdd, priorDepth) {
3745
3745
  fseventsHandler.exports = FsEventsHandler$1;
3746
3746
  fseventsHandler.exports.canUse = canUse;
3747
3747
 
3748
- const { EventEmitter } = require$$0$2;
3749
- const fs = fs$4;
3750
- const sysPath = require$$0$1;
3748
+ const { EventEmitter } = require$$0$3;
3749
+ const fs = require$$0$1;
3750
+ const sysPath = require$$0$2;
3751
3751
  const { promisify } = require$$2;
3752
3752
  const readdirp = readdirp_1;
3753
3753
  const anymatch = anymatch$2.exports.default;
@@ -4805,7 +4805,7 @@ class Watcher {
4805
4805
  this.buildDelay = configs.reduce((buildDelay, { watch }) => watch && typeof watch.buildDelay === 'number'
4806
4806
  ? Math.max(buildDelay, watch.buildDelay)
4807
4807
  : buildDelay, this.buildDelay);
4808
- process.nextTick(() => this.run());
4808
+ process$1.nextTick(() => this.run());
4809
4809
  }
4810
4810
  close() {
4811
4811
  if (this.buildTimeout)
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.66.1
4
- Tue, 25 Jan 2022 07:58:28 GMT - commit f523f0098d3e98f87abef54f48f39d06a7cc7eec
3
+ Rollup.js v2.67.3
4
+ Fri, 18 Feb 2022 05:29:45 GMT - commit fa4e1b720f64ffae24fcbf99a44b605842ac7f23
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -12,11 +12,11 @@
12
12
 
13
13
  require('fs');
14
14
  require('path');
15
+ require('process');
15
16
  require('url');
16
17
  const loadConfigFile_js = require('./shared/loadConfigFile.js');
17
18
  require('./shared/rollup.js');
18
19
  require('./shared/mergeOptions.js');
19
- require('process');
20
20
  require('tty');
21
21
  require('perf_hooks');
22
22
  require('crypto');