rollup 2.61.1 → 2.62.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/dist/rollup.d.ts CHANGED
@@ -169,6 +169,7 @@ interface ModuleInfo {
169
169
  importers: readonly string[];
170
170
  isEntry: boolean;
171
171
  isExternal: boolean;
172
+ isIncluded: boolean | null;
172
173
  meta: CustomPluginOptions;
173
174
  syntheticNamedExports: boolean | string;
174
175
  }
package/dist/rollup.js CHANGED
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.61.1
4
- Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
3
+ Rollup.js v2.62.0
4
+ Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.61.1
4
- Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
3
+ Rollup.js v2.62.0
4
+ Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -3056,13 +3056,15 @@ var nodefsHandler = NodeFsHandler$1;
3056
3056
 
3057
3057
  var fseventsHandler = {exports: {}};
3058
3058
 
3059
+ const require$$3 = /*@__PURE__*/rollup.getAugmentedNamespace(rollup.fseventsImporter);
3060
+
3059
3061
  const fs$1 = fs$4;
3060
3062
  const sysPath$1 = path$1;
3061
3063
  const { promisify: promisify$1 } = require$$2;
3062
3064
 
3063
3065
  let fsevents;
3064
3066
  try {
3065
- fsevents = require('../../../src/watch/fsevents-importer').getFsEvents();
3067
+ fsevents = require$$3.getFsEvents();
3066
3068
  } catch (error) {
3067
3069
  if (process.env.CHOKIDAR_PRINT_FSEVENTS_REQUIRE_ERROR) console.error(error);
3068
3070
  }
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.61.1
4
- Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
3
+ Rollup.js v2.62.0
4
+ Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.61.1
4
- Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
3
+ Rollup.js v2.62.0
4
+ Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.61.1
4
- Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
3
+ Rollup.js v2.62.0
4
+ Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -26,7 +26,7 @@ function _interopNamespaceDefault(e) {
26
26
  return n;
27
27
  }
28
28
 
29
- var version$1 = "2.61.1";
29
+ var version$1 = "2.62.0";
30
30
 
31
31
  function ensureArray$1(items) {
32
32
  if (Array.isArray(items)) {
@@ -582,19 +582,45 @@ const getHashFromObjectOption = (optionName) => optionName.split('.').join('').t
582
582
 
583
583
  let fsEvents;
584
584
  let fsEventsImportError;
585
- function loadFsEvents() {
585
+ async function loadFsEvents() {
586
586
  const moduleName = 'fsevents';
587
- return Promise.resolve().then(() => /*#__PURE__*/_interopNamespaceDefault(require(moduleName)))
588
- .then(namespace => {
589
- fsEvents = namespace.default;
590
- })
591
- .catch(err => {
587
+ try {
588
+ ({ default: fsEvents } = await Promise.resolve().then(() => /*#__PURE__*/_interopNamespaceDefault(require(moduleName))));
589
+ }
590
+ catch (err) {
592
591
  fsEventsImportError = err;
593
- });
592
+ }
593
+ }
594
+ // A call to this function will be injected into the chokidar code
595
+ function getFsEvents() {
596
+ if (fsEventsImportError)
597
+ throw fsEventsImportError;
598
+ return fsEvents;
594
599
  }
595
600
 
601
+ const fseventsImporter = {
602
+ __proto__: null,
603
+ loadFsEvents,
604
+ getFsEvents
605
+ };
606
+
596
607
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
597
608
 
609
+ function getAugmentedNamespace(n) {
610
+ if (n.__esModule) return n;
611
+ var a = Object.defineProperty({}, '__esModule', {value: true});
612
+ Object.keys(n).forEach(function (k) {
613
+ var d = Object.getOwnPropertyDescriptor(n, k);
614
+ Object.defineProperty(a, k, d.get ? d : {
615
+ enumerable: true,
616
+ get: function () {
617
+ return n[k];
618
+ }
619
+ });
620
+ });
621
+ return a;
622
+ }
623
+
598
624
  var charToInteger = {};
599
625
  var chars$1 = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=';
600
626
  for (var i = 0; i < chars$1.length; i++) {
@@ -2225,20 +2251,70 @@ const BLANK = Object.freeze(Object.create(null));
2225
2251
  const EMPTY_OBJECT = Object.freeze({});
2226
2252
  const EMPTY_ARRAY = Object.freeze([]);
2227
2253
 
2228
- const reservedWords$2 = 'break case class catch const continue debugger default delete do else export extends finally for function if import in instanceof let new return super switch this throw try typeof var void while with yield enum await implements package protected static interface private public'.split(' ');
2229
- const builtins$2 = 'Infinity NaN undefined null true false eval uneval isFinite isNaN parseFloat parseInt decodeURI decodeURIComponent encodeURI encodeURIComponent escape unescape Object Function Boolean Symbol Error EvalError InternalError RangeError ReferenceError SyntaxError TypeError URIError Number Math Date String RegExp Array Int8Array Uint8Array Uint8ClampedArray Int16Array Uint16Array Int32Array Uint32Array Float32Array Float64Array Map Set WeakMap WeakSet SIMD ArrayBuffer DataView JSON Promise Generator GeneratorFunction Reflect Proxy Intl'.split(' ');
2230
- const blacklisted = new Set(reservedWords$2.concat(builtins$2));
2254
+ const RESERVED_NAMES = new Set([
2255
+ 'await',
2256
+ 'break',
2257
+ 'case',
2258
+ 'catch',
2259
+ 'class',
2260
+ 'const',
2261
+ 'continue',
2262
+ 'debugger',
2263
+ 'default',
2264
+ 'delete',
2265
+ 'do',
2266
+ 'else',
2267
+ 'enum',
2268
+ 'eval',
2269
+ 'export',
2270
+ 'extends',
2271
+ 'false',
2272
+ 'finally',
2273
+ 'for',
2274
+ 'function',
2275
+ 'if',
2276
+ 'implements',
2277
+ 'import',
2278
+ 'in',
2279
+ 'instanceof',
2280
+ 'interface',
2281
+ 'let',
2282
+ 'NaN',
2283
+ 'new',
2284
+ 'null',
2285
+ 'package',
2286
+ 'private',
2287
+ 'protected',
2288
+ 'public',
2289
+ 'return',
2290
+ 'static',
2291
+ 'super',
2292
+ 'switch',
2293
+ 'this',
2294
+ 'throw',
2295
+ 'true',
2296
+ 'try',
2297
+ 'typeof',
2298
+ 'undefined',
2299
+ 'var',
2300
+ 'void',
2301
+ 'while',
2302
+ 'with',
2303
+ 'yield'
2304
+ ]);
2305
+ const RESERVED_NAMES$1 = RESERVED_NAMES;
2306
+
2231
2307
  const illegalCharacters = /[^$_a-zA-Z0-9]/g;
2232
2308
  const startsWithDigit = (str) => /\d/.test(str[0]);
2233
2309
  function isLegal(str) {
2234
- if (startsWithDigit(str) || blacklisted.has(str)) {
2310
+ if (startsWithDigit(str) || RESERVED_NAMES$1.has(str)) {
2235
2311
  return false;
2236
2312
  }
2237
2313
  return !illegalCharacters.test(str);
2238
2314
  }
2239
2315
  function makeLegal(str) {
2240
2316
  str = str.replace(/-(\w)/g, (_, letter) => letter.toUpperCase()).replace(illegalCharacters, '_');
2241
- if (startsWithDigit(str) || blacklisted.has(str))
2317
+ if (startsWithDigit(str) || RESERVED_NAMES$1.has(str))
2242
2318
  str = `_${str}`;
2243
2319
  return str || '_';
2244
2320
  }
@@ -2280,6 +2356,7 @@ class ExternalModule {
2280
2356
  },
2281
2357
  isEntry: false,
2282
2358
  isExternal: true,
2359
+ isIncluded: null,
2283
2360
  meta,
2284
2361
  syntheticNamedExports: false
2285
2362
  };
@@ -5522,8 +5599,6 @@ const knownGlobals = {
5522
5599
  __proto__: null,
5523
5600
  [ValueProperties]: PURE,
5524
5601
  create: PF,
5525
- getNotifier: PF,
5526
- getOwn: PF,
5527
5602
  getOwnPropertyDescriptor: PF,
5528
5603
  getOwnPropertyNames: PF,
5529
5604
  getOwnPropertySymbols: PF,
@@ -6565,61 +6640,10 @@ function toBase64(num) {
6565
6640
  return outStr;
6566
6641
  }
6567
6642
 
6568
- const RESERVED_NAMES = new Set([
6569
- 'await',
6570
- 'break',
6571
- 'case',
6572
- 'catch',
6573
- 'class',
6574
- 'const',
6575
- 'continue',
6576
- 'debugger',
6577
- 'default',
6578
- 'delete',
6579
- 'do',
6580
- 'else',
6581
- 'enum',
6582
- 'eval',
6583
- 'export',
6584
- 'extends',
6585
- 'false',
6586
- 'finally',
6587
- 'for',
6588
- 'function',
6589
- 'if',
6590
- 'implements',
6591
- 'import',
6592
- 'in',
6593
- 'instanceof',
6594
- 'interface',
6595
- 'let',
6596
- 'new',
6597
- 'null',
6598
- 'package',
6599
- 'private',
6600
- 'protected',
6601
- 'public',
6602
- 'return',
6603
- 'static',
6604
- 'super',
6605
- 'switch',
6606
- 'this',
6607
- 'throw',
6608
- 'true',
6609
- 'try',
6610
- 'typeof',
6611
- 'undefined',
6612
- 'var',
6613
- 'void',
6614
- 'while',
6615
- 'with',
6616
- 'yield'
6617
- ]);
6618
-
6619
6643
  function getSafeName(baseName, usedNames) {
6620
6644
  let safeName = baseName;
6621
6645
  let count = 1;
6622
- while (usedNames.has(safeName) || RESERVED_NAMES.has(safeName)) {
6646
+ while (usedNames.has(safeName) || RESERVED_NAMES$1.has(safeName)) {
6623
6647
  safeName = `${baseName}$${toBase64(count++)}`;
6624
6648
  }
6625
6649
  usedNames.add(safeName);
@@ -6730,16 +6754,27 @@ const literalNumberMembers = assembleMemberDescriptions({
6730
6754
  valueOf: returnsNumber
6731
6755
  }, objectMembers);
6732
6756
  const literalStringMembers = assembleMemberDescriptions({
6757
+ anchor: returnsString,
6758
+ at: returnsUnknown,
6759
+ big: returnsString,
6760
+ blink: returnsString,
6761
+ bold: returnsString,
6733
6762
  charAt: returnsString,
6734
6763
  charCodeAt: returnsNumber,
6735
- codePointAt: returnsNumber,
6764
+ codePointAt: returnsUnknown,
6736
6765
  concat: returnsString,
6737
6766
  endsWith: returnsBoolean,
6767
+ fixed: returnsString,
6768
+ fontcolor: returnsString,
6769
+ fontsize: returnsString,
6738
6770
  includes: returnsBoolean,
6739
6771
  indexOf: returnsNumber,
6772
+ italics: returnsString,
6740
6773
  lastIndexOf: returnsNumber,
6774
+ link: returnsString,
6741
6775
  localeCompare: returnsNumber,
6742
- match: returnsBoolean,
6776
+ match: returnsUnknown,
6777
+ matchAll: returnsUnknown,
6743
6778
  normalize: returnsString,
6744
6779
  padEnd: returnsString,
6745
6780
  padStart: returnsString,
@@ -6750,17 +6785,32 @@ const literalStringMembers = assembleMemberDescriptions({
6750
6785
  returns: UNKNOWN_LITERAL_STRING
6751
6786
  }
6752
6787
  },
6788
+ replaceAll: {
6789
+ value: {
6790
+ callsArgs: [1],
6791
+ returns: UNKNOWN_LITERAL_STRING
6792
+ }
6793
+ },
6753
6794
  search: returnsNumber,
6754
6795
  slice: returnsString,
6796
+ small: returnsString,
6755
6797
  split: returnsUnknown,
6756
6798
  startsWith: returnsBoolean,
6799
+ strike: returnsString,
6800
+ sub: returnsString,
6757
6801
  substr: returnsString,
6758
6802
  substring: returnsString,
6803
+ sup: returnsString,
6759
6804
  toLocaleLowerCase: returnsString,
6760
6805
  toLocaleUpperCase: returnsString,
6761
6806
  toLowerCase: returnsString,
6807
+ toString: returnsString,
6762
6808
  toUpperCase: returnsString,
6763
6809
  trim: returnsString,
6810
+ trimEnd: returnsString,
6811
+ trimLeft: returnsString,
6812
+ trimRight: returnsString,
6813
+ trimStart: returnsString,
6764
6814
  valueOf: returnsString
6765
6815
  }, objectMembers);
6766
6816
  function getLiteralMembersForValue(value) {
@@ -8576,6 +8626,8 @@ const ARRAY_PROTOTYPE = new ObjectEntity({
8576
8626
  filter: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NEW_ARRAY,
8577
8627
  find: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN,
8578
8628
  findIndex: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NUMBER,
8629
+ flat: METHOD_DEOPTS_SELF_RETURNS_NEW_ARRAY,
8630
+ flatMap: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_NEW_ARRAY,
8579
8631
  forEach: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_UNKNOWN,
8580
8632
  includes: METHOD_RETURNS_BOOLEAN,
8581
8633
  indexOf: METHOD_RETURNS_NUMBER,
@@ -8593,6 +8645,8 @@ const ARRAY_PROTOTYPE = new ObjectEntity({
8593
8645
  some: METHOD_CALLS_ARG_DEOPTS_SELF_RETURNS_BOOLEAN,
8594
8646
  sort: METHOD_CALLS_ARG_MUTATES_SELF_RETURNS_SELF,
8595
8647
  splice: METHOD_MUTATES_SELF_RETURNS_NEW_ARRAY,
8648
+ toLocaleString: METHOD_RETURNS_STRING,
8649
+ toString: METHOD_RETURNS_STRING,
8596
8650
  unshift: METHOD_MUTATES_SELF_RETURNS_NUMBER,
8597
8651
  values: METHOD_DEOPTS_SELF_RETURNS_UNKNOWN
8598
8652
  }, OBJECT_PROTOTYPE, true);
@@ -12045,13 +12099,19 @@ class SyntheticNamedExportVariable extends Variable {
12045
12099
  }
12046
12100
  }
12047
12101
 
12102
+ var BuildPhase;
12103
+ (function (BuildPhase) {
12104
+ BuildPhase[BuildPhase["LOAD_AND_PARSE"] = 0] = "LOAD_AND_PARSE";
12105
+ BuildPhase[BuildPhase["ANALYSE"] = 1] = "ANALYSE";
12106
+ BuildPhase[BuildPhase["GENERATE"] = 2] = "GENERATE";
12107
+ })(BuildPhase || (BuildPhase = {}));
12108
+
12048
12109
  function getId(m) {
12049
12110
  return m.id;
12050
12111
  }
12051
12112
 
12052
12113
  function getOriginalLocation(sourcemapChain, location) {
12053
- // This cast is guaranteed. If it were a missing Map, it wouldn't have a mappings.
12054
- const filteredSourcemapChain = sourcemapChain.filter(sourcemap => sourcemap.mappings);
12114
+ const filteredSourcemapChain = sourcemapChain.filter((sourcemap) => !!sourcemap.mappings);
12055
12115
  while (filteredSourcemapChain.length > 0) {
12056
12116
  const sourcemap = filteredSourcemapChain.pop();
12057
12117
  const line = sourcemap.mappings[location.line - 1];
@@ -12337,6 +12397,12 @@ class Module {
12337
12397
  },
12338
12398
  isEntry,
12339
12399
  isExternal: false,
12400
+ get isIncluded() {
12401
+ if (module.graph.phase !== BuildPhase.GENERATE) {
12402
+ return null;
12403
+ }
12404
+ return module.isIncluded();
12405
+ },
12340
12406
  meta,
12341
12407
  syntheticNamedExports
12342
12408
  };
@@ -14127,7 +14193,7 @@ function escapeId(id) {
14127
14193
  function assignExportsToMangledNames(exports, exportsByName, exportNamesByVariable) {
14128
14194
  let nameIndex = 0;
14129
14195
  for (const variable of exports) {
14130
- let exportName = variable.name[0];
14196
+ let [exportName] = variable.name;
14131
14197
  if (exportsByName[exportName]) {
14132
14198
  do {
14133
14199
  exportName = toBase64(++nameIndex);
@@ -14136,7 +14202,7 @@ function assignExportsToMangledNames(exports, exportsByName, exportNamesByVariab
14136
14202
  nameIndex += 9 * 64 ** (exportName.length - 1);
14137
14203
  exportName = toBase64(nameIndex);
14138
14204
  }
14139
- } while (RESERVED_NAMES.has(exportName) || exportsByName[exportName]);
14205
+ } while (RESERVED_NAMES$1.has(exportName) || exportsByName[exportName]);
14140
14206
  }
14141
14207
  exportsByName[exportName] = variable;
14142
14208
  exportNamesByVariable.set(variable, [exportName]);
@@ -15354,13 +15420,6 @@ function getChunkNameFromModule(module) {
15354
15420
  return module.chunkName || getAliasName(module.id);
15355
15421
  }
15356
15422
 
15357
- var BuildPhase;
15358
- (function (BuildPhase) {
15359
- BuildPhase[BuildPhase["LOAD_AND_PARSE"] = 0] = "LOAD_AND_PARSE";
15360
- BuildPhase[BuildPhase["ANALYSE"] = 1] = "ANALYSE";
15361
- BuildPhase[BuildPhase["GENERATE"] = 2] = "GENERATE";
15362
- })(BuildPhase || (BuildPhase = {}));
15363
-
15364
15423
  function generateAssetFileName(name, source, outputOptions, bundle) {
15365
15424
  const emittedName = outputOptions.sanitizeFileName(name || 'asset');
15366
15425
  return makeUnique(renderNamePattern(typeof outputOptions.assetFileNames === 'function'
@@ -15871,7 +15930,7 @@ function getGenerateCodeSnippets({ compact, generatedCode: { arrowFunctions, con
15871
15930
  ];
15872
15931
  const isValidPropName = reservedNamesAsProps
15873
15932
  ? (name) => validPropName.test(name)
15874
- : (name) => !RESERVED_NAMES.has(name) && validPropName.test(name);
15933
+ : (name) => !RESERVED_NAMES$1.has(name) && validPropName.test(name);
15875
15934
  return {
15876
15935
  _,
15877
15936
  cnst,
@@ -16096,7 +16155,7 @@ function validateOptionsForMultiChunkOutput(outputOptions, onWarn) {
16096
16155
  onWarn(errInvalidOption('output.amd.id', 'outputamd', 'this option is only properly supported for single-file builds. Use "output.amd.autoId" and "output.amd.basePath" instead'));
16097
16156
  }
16098
16157
  function getIncludedModules(modulesById) {
16099
- return [...modulesById.values()].filter(module => module instanceof Module &&
16158
+ return [...modulesById.values()].filter((module) => module instanceof Module &&
16100
16159
  (module.isIncluded() || module.info.isEntry || module.includedDynamicImporters.length > 0));
16101
16160
  }
16102
16161
  function addModuleToManualChunk(alias, module, manualChunkAliasByEntry) {
@@ -23584,8 +23643,10 @@ exports.defaultOnWarn = defaultOnWarn;
23584
23643
  exports.defineConfig = defineConfig;
23585
23644
  exports.ensureArray = ensureArray$1;
23586
23645
  exports.error = error;
23646
+ exports.fseventsImporter = fseventsImporter;
23587
23647
  exports.generatedCodePresets = generatedCodePresets;
23588
23648
  exports.getAliasName = getAliasName;
23649
+ exports.getAugmentedNamespace = getAugmentedNamespace;
23589
23650
  exports.getOrCreate = getOrCreate;
23590
23651
  exports.loadFsEvents = loadFsEvents;
23591
23652
  exports.objectifyOptionWithPresets = objectifyOptionWithPresets;
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.61.1
4
- Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
3
+ Rollup.js v2.62.0
4
+ Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
5
5
 
6
6
 
7
7
  https://github.com/rollup/rollup
@@ -1,7 +1,7 @@
1
1
  /*
2
2
  @license
3
- Rollup.js v2.61.1
4
- Sat, 11 Dec 2021 06:17:07 GMT - commit 2e91c85fc95bc722e5a7141d7fa0acde4aab61aa
3
+ Rollup.js v2.62.0
4
+ Fri, 24 Dec 2021 06:27:02 GMT - commit 81ce56f87de5fae51c00c4a0a977830ee93c5987
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.61.1",
3
+ "version": "2.62.0",
4
4
  "description": "Next-generation ES module bundler",
5
5
  "main": "dist/rollup.js",
6
6
  "module": "dist/es/rollup.js",
@@ -62,23 +62,23 @@
62
62
  "@rollup/plugin-buble": "^0.21.3",
63
63
  "@rollup/plugin-commonjs": "^21.0.1",
64
64
  "@rollup/plugin-json": "^4.1.0",
65
- "@rollup/plugin-node-resolve": "^13.0.6",
65
+ "@rollup/plugin-node-resolve": "^13.1.1",
66
66
  "@rollup/plugin-replace": "^3.0.0",
67
67
  "@rollup/plugin-typescript": "^8.2.5",
68
- "@rollup/pluginutils": "^4.1.1",
68
+ "@rollup/pluginutils": "^4.1.2",
69
69
  "@types/node": "^10.17.60",
70
70
  "@types/require-relative": "^0.8.0",
71
71
  "@types/signal-exit": "^3.0.1",
72
72
  "@types/yargs-parser": "^20.2.1",
73
- "@typescript-eslint/eslint-plugin": "^5.6.0",
74
- "@typescript-eslint/parser": "^5.6.0",
73
+ "@typescript-eslint/eslint-plugin": "^5.7.0",
74
+ "@typescript-eslint/parser": "^5.7.0",
75
75
  "acorn": "^8.6.0",
76
76
  "acorn-jsx": "^5.3.2",
77
77
  "acorn-walk": "^8.2.0",
78
78
  "buble": "^0.20.0",
79
79
  "chokidar": "^3.5.2",
80
80
  "colorette": "^2.0.16",
81
- "core-js": "^3.18.3",
81
+ "core-js": "^3.20.0",
82
82
  "date-time": "^4.0.0",
83
83
  "es5-shim": "^4.6.2",
84
84
  "es6-shim": "^0.35.6",
@@ -102,7 +102,7 @@
102
102
  "pretty-ms": "^7.0.1",
103
103
  "require-relative": "^0.8.7",
104
104
  "requirejs": "^2.3.6",
105
- "rollup": "^2.60.2",
105
+ "rollup": "^2.61.1",
106
106
  "rollup-plugin-license": "^2.5.0",
107
107
  "rollup-plugin-string": "^3.0.0",
108
108
  "rollup-plugin-terser": "^7.0.2",
@@ -116,7 +116,7 @@
116
116
  "systemjs": "^6.11.0",
117
117
  "terser": "^5.10.0",
118
118
  "tslib": "^2.3.1",
119
- "typescript": "^4.5.2",
119
+ "typescript": "^4.5.4",
120
120
  "weak-napi": "^2.0.2",
121
121
  "yargs-parser": "^20.2.9"
122
122
  },