rollup 2.7.5 → 2.7.6

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/dist/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:48:24 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
3
+ Rollup.js v2.7.6
4
+ Thu, 30 Apr 2020 18:55:10 GMT - commit 468010ba801b1e59573b6aa7319461a449aa43df
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:48:24 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
3
+ Rollup.js v2.7.6
4
+ Thu, 30 Apr 2020 18:55:10 GMT - commit 468010ba801b1e59573b6aa7319461a449aa43df
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -3435,6 +3435,7 @@ const { promisify } = util;
3435
3435
  const readdir = promisify(fs.readdir);
3436
3436
  const stat = promisify(fs.stat);
3437
3437
  const lstat = promisify(fs.lstat);
3438
+ const realpath = promisify(fs.realpath);
3438
3439
 
3439
3440
  /**
3440
3441
  * @typedef {Object} EntryInfo
@@ -3532,11 +3533,7 @@ class ReaddirpStream extends Readable {
3532
3533
  this._rdOptions = { encoding: 'utf8', withFileTypes: this._isDirent };
3533
3534
 
3534
3535
  // Launch stream with one parent, the root dir.
3535
- try {
3536
- this.parents = [this._exploreDir(root, 1)];
3537
- } catch (error) {
3538
- this.destroy(error);
3539
- }
3536
+ this.parents = [this._exploreDir(root, 1)];
3540
3537
  this.reading = false;
3541
3538
  this.parent = undefined;
3542
3539
  }
@@ -3552,7 +3549,10 @@ class ReaddirpStream extends Readable {
3552
3549
  if (files.length > 0) {
3553
3550
  const slice = files.splice(0, batch).map(dirent => this._formatEntry(dirent, path));
3554
3551
  for (const entry of await Promise.all(slice)) {
3555
- if (this._isDirAndMatchesFilter(entry)) {
3552
+ if (this.destroyed) return;
3553
+
3554
+ const entryType = await this._getEntryType(entry);
3555
+ if (entryType === 'directory' && this._directoryFilter(entry)) {
3556
3556
  if (depth <= this._maxDepth) {
3557
3557
  this.parents.push(this._exploreDir(entry.fullPath, depth + 1));
3558
3558
  }
@@ -3561,7 +3561,7 @@ class ReaddirpStream extends Readable {
3561
3561
  this.push(entry);
3562
3562
  batch--;
3563
3563
  }
3564
- } else if (this._isFileAndMatchesFilter(entry)) {
3564
+ } else if ((entryType === 'file' || this._includeAsFile(entry)) && this._fileFilter(entry)) {
3565
3565
  if (this._wantsFile) {
3566
3566
  this.push(entry);
3567
3567
  batch--;
@@ -3575,6 +3575,7 @@ class ReaddirpStream extends Readable {
3575
3575
  break;
3576
3576
  }
3577
3577
  this.parent = await parent;
3578
+ if (this.destroyed) return;
3578
3579
  }
3579
3580
  }
3580
3581
  } catch (error) {
@@ -3595,10 +3596,11 @@ class ReaddirpStream extends Readable {
3595
3596
  }
3596
3597
 
3597
3598
  async _formatEntry(dirent, path$1) {
3598
- const basename = this._isDirent ? dirent.name : dirent;
3599
- const fullPath = path.resolve(path.join(path$1, basename));
3600
- const entry = {path: path.relative(this._root, fullPath), fullPath, basename};
3599
+ let entry;
3601
3600
  try {
3601
+ const basename = this._isDirent ? dirent.name : dirent;
3602
+ const fullPath = path.resolve(path.join(path$1, basename));
3603
+ entry = {path: path.relative(this._root, fullPath), fullPath, basename};
3602
3604
  entry[this._statsProp] = this._isDirent ? dirent : await this._stat(fullPath);
3603
3605
  } catch (err) {
3604
3606
  this._onError(err);
@@ -3610,24 +3612,43 @@ class ReaddirpStream extends Readable {
3610
3612
  if (isNormalFlowError(err) && !this.destroyed) {
3611
3613
  this.emit('warn', err);
3612
3614
  } else {
3613
- throw err;
3615
+ this.destroy(err);
3614
3616
  }
3615
3617
  }
3616
3618
 
3617
- _isDirAndMatchesFilter(entry) {
3619
+ async _getEntryType(entry) {
3618
3620
  // entry may be undefined, because a warning or an error were emitted
3619
3621
  // and the statsProp is undefined
3620
3622
  const stats = entry && entry[this._statsProp];
3621
- return stats && stats.isDirectory() && this._directoryFilter(entry);
3623
+ if (!stats) {
3624
+ return;
3625
+ }
3626
+ if (stats.isFile()) {
3627
+ return 'file';
3628
+ }
3629
+ if (stats.isDirectory()) {
3630
+ return 'directory';
3631
+ }
3632
+ if (stats && stats.isSymbolicLink()) {
3633
+ try {
3634
+ const entryRealPath = await realpath(entry.fullPath);
3635
+ const entryRealPathStats = await lstat(entryRealPath);
3636
+ if (entryRealPathStats.isFile()) {
3637
+ return 'file';
3638
+ }
3639
+ if (entryRealPathStats.isDirectory()) {
3640
+ return 'directory';
3641
+ }
3642
+ } catch (error) {
3643
+ this._onError(error);
3644
+ }
3645
+ }
3622
3646
  }
3623
3647
 
3624
- _isFileAndMatchesFilter(entry) {
3648
+ _includeAsFile(entry) {
3625
3649
  const stats = entry && entry[this._statsProp];
3626
- const isFileType = stats && (
3627
- (this._wantsEverything && !stats.isDirectory()) ||
3628
- (stats.isFile() || stats.isSymbolicLink())
3629
- );
3630
- return isFileType && this._fileFilter(entry);
3650
+
3651
+ return stats && this._wantsEverything && !stats.isDirectory();
3631
3652
  }
3632
3653
  }
3633
3654
 
@@ -4221,6 +4242,7 @@ exports.FSEVENT_DELETED = 'deleted';
4221
4242
  exports.FSEVENT_MOVED = 'moved';
4222
4243
  exports.FSEVENT_CLONED = 'cloned';
4223
4244
  exports.FSEVENT_UNKNOWN = 'unknown';
4245
+ exports.FSEVENT_TYPE_FILE = 'file';
4224
4246
  exports.FSEVENT_TYPE_DIRECTORY = 'directory';
4225
4247
  exports.FSEVENT_TYPE_SYMLINK = 'symlink';
4226
4248
 
@@ -4919,6 +4941,7 @@ const {
4919
4941
  FSEVENT_MOVED,
4920
4942
  // FSEVENT_CLONED,
4921
4943
  FSEVENT_UNKNOWN,
4944
+ FSEVENT_TYPE_FILE,
4922
4945
  FSEVENT_TYPE_DIRECTORY,
4923
4946
  FSEVENT_TYPE_SYMLINK,
4924
4947
 
@@ -4929,15 +4952,12 @@ const {
4929
4952
  EMPTY_FN: EMPTY_FN$1,
4930
4953
  IDENTITY_FN
4931
4954
  } = constants$2;
4932
- const FS_MODE_READ = 'r';
4933
4955
 
4934
4956
  const Depth = (value) => isNaN(value) ? {} : {depth: value};
4935
4957
 
4936
4958
  const stat$2 = promisify$2(fs.stat);
4937
- const open$1 = promisify$2(fs.open);
4938
- const close$1 = promisify$2(fs.close);
4939
4959
  const lstat$2 = promisify$2(fs.lstat);
4940
- const realpath = promisify$2(fs.realpath);
4960
+ const realpath$1 = promisify$2(fs.realpath);
4941
4961
 
4942
4962
  const statMethods$1 = { stat: stat$2, lstat: lstat$2 };
4943
4963
 
@@ -5084,6 +5104,14 @@ const calcDepth = (path$1, root) => {
5084
5104
  return i;
5085
5105
  };
5086
5106
 
5107
+ // returns boolean indicating whether the fsevents' event info has the same type
5108
+ // as the one returned by fs.stat
5109
+ const sameTypes = (info, stats) => (
5110
+ info.type === FSEVENT_TYPE_DIRECTORY && stats.isDirectory() ||
5111
+ info.type === FSEVENT_TYPE_SYMLINK && stats.isSymbolicLink() ||
5112
+ info.type === FSEVENT_TYPE_FILE && stats.isFile()
5113
+ );
5114
+
5087
5115
  /**
5088
5116
  * @mixin
5089
5117
  */
@@ -5114,13 +5142,16 @@ addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts) {
5114
5142
  this.handleEvent(event, path, fullPath, realPath, parent, watchedDir, item, info, opts);
5115
5143
  }
5116
5144
 
5117
- async checkFd(path, fullPath, realPath, parent, watchedDir, item, info, opts) {
5145
+ async checkExists(path, fullPath, realPath, parent, watchedDir, item, info, opts) {
5118
5146
  try {
5119
- const fd = await open$1(path, FS_MODE_READ);
5147
+ const stats = await stat$2(path);
5120
5148
  if (this.fsw.closed) return;
5121
- await close$1(fd);
5122
5149
  if (this.fsw.closed) return;
5123
- this.addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts);
5150
+ if (sameTypes(info, stats)) {
5151
+ this.addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts);
5152
+ } else {
5153
+ this.handleEvent(EV_UNLINK, path, fullPath, realPath, parent, watchedDir, item, info, opts);
5154
+ }
5124
5155
  } catch (error) {
5125
5156
  if (error.code === 'EACCES') {
5126
5157
  this.addOrChange(path, fullPath, realPath, parent, watchedDir, item, info, opts);
@@ -5134,9 +5165,10 @@ handleEvent(event, path, fullPath, realPath, parent, watchedDir, item, info, opt
5134
5165
  if (this.fsw.closed || this.checkIgnored(path)) return;
5135
5166
 
5136
5167
  if (event === EV_UNLINK) {
5168
+ const isDirectory = info.type === FSEVENT_TYPE_DIRECTORY;
5137
5169
  // suppress unlink events on never before seen files
5138
- if (info.type === FSEVENT_TYPE_DIRECTORY || watchedDir.has(item)) {
5139
- this.fsw._remove(parent, item);
5170
+ if (isDirectory || watchedDir.has(item)) {
5171
+ this.fsw._remove(parent, item, isDirectory);
5140
5172
  }
5141
5173
  } else {
5142
5174
  if (event === EV_ADD$1) {
@@ -5201,13 +5233,13 @@ _watchWithFsEvents(watchPath, realPath, transform, globFilter) {
5201
5233
  } catch (error) {}
5202
5234
  if (this.fsw.closed) return;
5203
5235
  if (this.checkIgnored(path$1, stats)) return;
5204
- if (stats) {
5236
+ if (sameTypes(info, stats)) {
5205
5237
  this.addOrChange(path$1, fullPath, realPath, parent, watchedDir, item, info, opts);
5206
5238
  } else {
5207
5239
  this.handleEvent(EV_UNLINK, path$1, fullPath, realPath, parent, watchedDir, item, info, opts);
5208
5240
  }
5209
5241
  } else {
5210
- this.checkFd(path$1, fullPath, realPath, parent, watchedDir, item, info, opts);
5242
+ this.checkExists(path$1, fullPath, realPath, parent, watchedDir, item, info, opts);
5211
5243
  }
5212
5244
  } else {
5213
5245
  switch (info.event) {
@@ -5216,7 +5248,7 @@ _watchWithFsEvents(watchPath, realPath, transform, globFilter) {
5216
5248
  return this.addOrChange(path$1, fullPath, realPath, parent, watchedDir, item, info, opts);
5217
5249
  case FSEVENT_DELETED:
5218
5250
  case FSEVENT_MOVED:
5219
- return this.checkFd(path$1, fullPath, realPath, parent, watchedDir, item, info, opts);
5251
+ return this.checkExists(path$1, fullPath, realPath, parent, watchedDir, item, info, opts);
5220
5252
  }
5221
5253
  }
5222
5254
  };
@@ -5249,7 +5281,7 @@ async _handleFsEventsSymlink(linkPath, fullPath, transform, curDepth) {
5249
5281
  this.fsw._incrReadyCount();
5250
5282
 
5251
5283
  try {
5252
- const linkTarget = await realpath(linkPath);
5284
+ const linkTarget = await realpath$1(linkPath);
5253
5285
  if (this.fsw.closed) return;
5254
5286
  if (this.fsw._isIgnored(linkTarget)) {
5255
5287
  return this.fsw._emitReady();
@@ -5385,7 +5417,7 @@ async _addToFsEvents(path$1, transform, forceAdd, priorDepth) {
5385
5417
  } else {
5386
5418
  let realPath;
5387
5419
  try {
5388
- realPath = await realpath(wh.watchPath);
5420
+ realPath = await realpath$1(wh.watchPath);
5389
5421
  } catch (e) {}
5390
5422
  this.initWatch(realPath, path$1, wh, processPath);
5391
5423
  }
@@ -5550,12 +5582,13 @@ class DirEntry {
5550
5582
  const {items} = this;
5551
5583
  if (!items) return;
5552
5584
  items.delete(item);
5585
+ if (items.size > 0) return;
5553
5586
 
5554
- if (!items.size) {
5555
- const dir = this.path;
5556
- try {
5557
- await readdir$1(dir);
5558
- } catch (err) {
5587
+ const dir = this.path;
5588
+ try {
5589
+ await readdir$1(dir);
5590
+ } catch (err) {
5591
+ if (this._removeWatcher) {
5559
5592
  this._removeWatcher(path.dirname(dir), path.basename(dir));
5560
5593
  }
5561
5594
  }
@@ -5881,7 +5914,7 @@ unwatch(paths_) {
5881
5914
  * @returns {Promise<void>}.
5882
5915
  */
5883
5916
  close() {
5884
- if (this.closed) return this;
5917
+ if (this.closed) return this._closePromise;
5885
5918
  this.closed = true;
5886
5919
 
5887
5920
  // Memory management.
@@ -5899,7 +5932,9 @@ close() {
5899
5932
  ['closers', 'watched', 'streams', 'symlinkPaths', 'throttled'].forEach(key => {
5900
5933
  this[`_${key}`].clear();
5901
5934
  });
5902
- return closers.length ? Promise.all(closers).then(() => undefined) : Promise.resolve();
5935
+
5936
+ this._closePromise = closers.length ? Promise.all(closers).then(() => undefined) : Promise.resolve();
5937
+ return this._closePromise;
5903
5938
  }
5904
5939
 
5905
5940
  /**
@@ -6000,16 +6035,15 @@ async _emit(event, path$1, val1, val2, val3) {
6000
6035
  (event === EV_ADD$2 || event === EV_ADD_DIR$2 || event === EV_CHANGE$2)
6001
6036
  ) {
6002
6037
  const fullPath = opts.cwd ? path.join(opts.cwd, path$1) : path$1;
6038
+ let stats;
6003
6039
  try {
6004
- const stats = await stat$3(fullPath);
6005
- // Suppress event when fs_stat fails, to avoid sending undefined 'stat'
6006
- if (!stats) return;
6007
- args.push(stats);
6008
- this.emitWithAll(event, args);
6040
+ stats = await stat$3(fullPath);
6009
6041
  } catch (err) {}
6010
- } else {
6011
- this.emitWithAll(event, args);
6042
+ // Suppress event when fs_stat fails, to avoid sending undefined 'stat'
6043
+ if (!stats || this.closed) return;
6044
+ args.push(stats);
6012
6045
  }
6046
+ this.emitWithAll(event, args);
6013
6047
 
6014
6048
  return this;
6015
6049
  }
@@ -6218,13 +6252,15 @@ _hasReadPermissions(stats) {
6218
6252
  * @param {String} item base path of item/directory
6219
6253
  * @returns {void}
6220
6254
  */
6221
- _remove(directory, item) {
6255
+ _remove(directory, item, isDirectory) {
6222
6256
  // if what is being deleted is a directory, get that directory's paths
6223
6257
  // for recursive deleting and cleaning of watched object
6224
6258
  // if it is not a directory, nestedDirectoryChildren will be empty array
6225
6259
  const path$1 = path.join(directory, item);
6226
6260
  const fullPath = path.resolve(path$1);
6227
- const isDirectory = this._watched.has(path$1) || this._watched.has(fullPath);
6261
+ isDirectory = isDirectory != null
6262
+ ? isDirectory
6263
+ : this._watched.has(path$1) || this._watched.has(fullPath);
6228
6264
 
6229
6265
  // prevent duplicate handling in case of arriving here nearly simultaneously
6230
6266
  // via multiple paths (such as _handleFile and _handleDir)
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:48:24 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
3
+ Rollup.js v2.7.6
4
+ Thu, 30 Apr 2020 18:55:10 GMT - commit 468010ba801b1e59573b6aa7319461a449aa43df
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:48:24 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
3
+ Rollup.js v2.7.6
4
+ Thu, 30 Apr 2020 18:55:10 GMT - commit 468010ba801b1e59573b6aa7319461a449aa43df
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:48:24 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
3
+ Rollup.js v2.7.6
4
+ Thu, 30 Apr 2020 18:55:10 GMT - commit 468010ba801b1e59573b6aa7319461a449aa43df
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -28,7 +28,7 @@ var crypto = require('crypto');
28
28
  var fs = require('fs');
29
29
  var events = require('events');
30
30
 
31
- var version = "2.7.5";
31
+ var version = "2.7.6";
32
32
 
33
33
  function unwrapExports (x) {
34
34
  return x && x.__esModule && Object.prototype.hasOwnProperty.call(x, 'default') ? x['default'] : x;
@@ -15041,7 +15041,9 @@ class Module {
15041
15041
  else if (variable instanceof ExportDefaultVariable) {
15042
15042
  variable = variable.getOriginalVariable();
15043
15043
  }
15044
- relevantDependencies.add(variable.module);
15044
+ if (variable.module) {
15045
+ relevantDependencies.add(variable.module);
15046
+ }
15045
15047
  }
15046
15048
  if (this.isEntryPoint || this.dynamicallyImportedBy.length > 0 || this.graph.preserveModules) {
15047
15049
  for (const exportName of [...this.getReexports(), ...this.getExports()]) {
@@ -15052,7 +15054,9 @@ class Module {
15052
15054
  else if (variable instanceof ExportDefaultVariable) {
15053
15055
  variable = variable.getOriginalVariable();
15054
15056
  }
15055
- relevantDependencies.add(variable.module);
15057
+ if (variable.module) {
15058
+ relevantDependencies.add(variable.module);
15059
+ }
15056
15060
  }
15057
15061
  }
15058
15062
  if (this.graph.treeshakingOptions) {
@@ -16726,7 +16730,7 @@ class Chunk$1 {
16726
16730
  else if (variable instanceof ExportDefaultVariable) {
16727
16731
  variable = variable.getOriginalVariable();
16728
16732
  }
16729
- if (variable.module.chunk !== this) {
16733
+ if (variable.module && variable.module.chunk !== this) {
16730
16734
  this.imports.add(variable);
16731
16735
  if (!(variable instanceof NamespaceVariable && this.graph.preserveModules) &&
16732
16736
  variable.module instanceof Module) {
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:48:24 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
3
+ Rollup.js v2.7.6
4
+ Thu, 30 Apr 2020 18:55:10 GMT - commit 468010ba801b1e59573b6aa7319461a449aa43df
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:48:24 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
3
+ Rollup.js v2.7.6
4
+ Thu, 30 Apr 2020 18:55:10 GMT - commit 468010ba801b1e59573b6aa7319461a449aa43df
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "rollup",
3
- "version": "2.7.5",
3
+ "version": "2.7.6",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -71,7 +71,7 @@
71
71
  "@rollup/plugin-node-resolve": "^7.1.3",
72
72
  "@rollup/plugin-replace": "^2.3.2",
73
73
  "@types/micromatch": "^4.0.1",
74
- "@types/node": "^13.13.2",
74
+ "@types/node": "^13.13.4",
75
75
  "@types/require-relative": "^0.8.0",
76
76
  "@types/signal-exit": "^3.0.0",
77
77
  "@types/yargs-parser": "^15.0.0",
@@ -83,7 +83,7 @@
83
83
  "acorn-static-class-features": "^0.2.1",
84
84
  "acorn-walk": "^7.1.1",
85
85
  "buble": "^0.20.0",
86
- "chokidar": "^3.3.1",
86
+ "chokidar": "^3.4.0",
87
87
  "codecov": "^3.6.5",
88
88
  "colorette": "^1.1.0",
89
89
  "core-js": "^3.6.5",
@@ -98,20 +98,20 @@
98
98
  "hash.js": "^1.1.7",
99
99
  "husky": "^4.2.5",
100
100
  "is-reference": "^1.1.4",
101
- "lint-staged": "^10.1.7",
101
+ "lint-staged": "^10.2.1",
102
102
  "locate-character": "^2.0.5",
103
103
  "magic-string": "^0.25.7",
104
104
  "markdownlint-cli": "^0.22.0",
105
105
  "micromatch": "^4.0.2",
106
- "mocha": "^7.1.1",
106
+ "mocha": "^7.1.2",
107
107
  "node-fetch": "^2.6.0",
108
108
  "nyc": "^15.0.1",
109
109
  "prettier": "^2.0.5",
110
110
  "pretty-bytes": "^5.3.0",
111
- "pretty-ms": "^6.0.1",
111
+ "pretty-ms": "^7.0.0",
112
112
  "require-relative": "^0.8.7",
113
113
  "requirejs": "^2.3.6",
114
- "rollup": "^2.7.1",
114
+ "rollup": "^2.7.5",
115
115
  "rollup-plugin-license": "^2.0.0",
116
116
  "rollup-plugin-string": "^3.0.0",
117
117
  "rollup-plugin-terser": "^5.3.0",
@@ -122,12 +122,12 @@
122
122
  "shx": "^0.3.2",
123
123
  "signal-exit": "^3.0.3",
124
124
  "source-map": "^0.7.3",
125
- "source-map-support": "^0.5.18",
125
+ "source-map-support": "^0.5.19",
126
126
  "sourcemap-codec": "^1.4.8",
127
127
  "systemjs": "^6.3.1",
128
- "terser": "^4.6.11",
128
+ "terser": "^4.6.13",
129
129
  "tslib": "^1.11.1",
130
- "tslint": "^6.1.1",
130
+ "tslint": "^6.1.2",
131
131
  "typescript": "^3.8.3",
132
132
  "url-parse": "^1.4.7",
133
133
  "yargs-parser": "^18.1.3"
@@ -1,20 +0,0 @@
1
- /*
2
- @license
3
- Rollup.js v2.7.5
4
- Wed, 29 Apr 2020 19:47:57 GMT - commit a2b48832de11ad38eacfeacad08ba4dfceecfe96
5
-
6
-
7
- https://github.com/rollup/rollup
8
-
9
- Released under the MIT License.
10
- */
11
- 'use strict';
12
-
13
- var path = require('path');
14
- var util = require('util');
15
-
16
-
17
-
18
- exports.require$$1 = util;
19
- exports.sysPath = path;
20
- //# sourceMappingURL=_util_commonjs-external.js.map