pnpm 7.9.4-0 → 7.9.4

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.
@@ -7,11 +7,11 @@ included:
7
7
  injectedDeps: {}
8
8
  layoutVersion: 5
9
9
  nodeLinker: hoisted
10
- packageManager: pnpm@7.9.3
10
+ packageManager: pnpm@7.9.4-0
11
11
  pendingBuilds:
12
12
  - /node-gyp/9.1.0
13
13
  - /encoding/0.1.13
14
- prunedAt: Thu, 18 Aug 2022 09:46:52 GMT
14
+ prunedAt: Tue, 23 Aug 2022 00:46:24 GMT
15
15
  publicHoistPattern:
16
16
  - '*eslint*'
17
17
  - '*prettier*'
@@ -399,7 +399,7 @@ packages:
399
399
  lru-cache: 7.14.0
400
400
  minipass: 3.3.4
401
401
  minipass-collect: 1.0.2
402
- minipass-fetch: 2.1.1
402
+ minipass-fetch: 2.1.2
403
403
  minipass-flush: 1.0.5
404
404
  minipass-pipeline: 1.2.4
405
405
  negotiator: 0.6.3
@@ -435,8 +435,8 @@ packages:
435
435
  dev: false
436
436
  optional: true
437
437
 
438
- /minipass-fetch/2.1.1:
439
- resolution: {integrity: sha512-/kgtXVGS10PTFET6dAbOBWQtgH+iDiI4NhRqAftojRlsOJhk0y45sVVxqCaRQC+AMFH7JkHiWpuKJKQ+mojKiA==}
438
+ /minipass-fetch/2.1.2:
439
+ resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
440
440
  engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
441
441
  dependencies:
442
442
  minipass: 3.3.4
@@ -72,8 +72,8 @@ class Body {
72
72
  }
73
73
 
74
74
  async json () {
75
+ const buf = await this[CONSUME_BODY]()
75
76
  try {
76
- const buf = await this[CONSUME_BODY]()
77
77
  return JSON.parse(buf.toString())
78
78
  } catch (er) {
79
79
  throw new FetchError(
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minipass-fetch",
3
- "version": "2.1.1",
3
+ "version": "2.1.2",
4
4
  "description": "An implementation of window.fetch in Node.js using Minipass streams",
5
5
  "license": "MIT",
6
6
  "main": "lib/index.js",
package/dist/pnpm.cjs CHANGED
@@ -3206,7 +3206,7 @@ var require_lib4 = __commonJS({
3206
3206
  var load_json_file_1 = __importDefault(require_load_json_file());
3207
3207
  var defaultManifest = {
3208
3208
  name: "pnpm" != null && true ? "pnpm" : "pnpm",
3209
- version: "7.9.4-0" != null && true ? "7.9.4-0" : "0.0.0"
3209
+ version: "7.9.4" != null && true ? "7.9.4" : "0.0.0"
3210
3210
  };
3211
3211
  var pkgJson;
3212
3212
  if (require.main == null) {
@@ -74862,9 +74862,9 @@ var require_git_host2 = __commonJS({
74862
74862
  }
74863
74863
  });
74864
74864
 
74865
- // ../../node_modules/.pnpm/lru-cache@7.14.0/node_modules/lru-cache/index.js
74865
+ // ../../node_modules/.pnpm/lru-cache@7.13.2/node_modules/lru-cache/index.js
74866
74866
  var require_lru_cache3 = __commonJS({
74867
- "../../node_modules/.pnpm/lru-cache@7.14.0/node_modules/lru-cache/index.js"(exports2, module2) {
74867
+ "../../node_modules/.pnpm/lru-cache@7.13.2/node_modules/lru-cache/index.js"(exports2, module2) {
74868
74868
  var perf = typeof performance === "object" && performance && typeof performance.now === "function" ? performance : Date;
74869
74869
  var hasAbortController = typeof AbortController === "function";
74870
74870
  var AC = hasAbortController ? AbortController : class AbortController {
@@ -74974,7 +74974,6 @@ var require_lru_cache3 = __commonJS({
74974
74974
  noDisposeOnSet,
74975
74975
  noUpdateTTL,
74976
74976
  maxSize = 0,
74977
- maxEntrySize = 0,
74978
74977
  sizeCalculation,
74979
74978
  fetchMethod,
74980
74979
  fetchContext,
@@ -74991,12 +74990,11 @@ var require_lru_cache3 = __commonJS({
74991
74990
  }
74992
74991
  this.max = max;
74993
74992
  this.maxSize = maxSize;
74994
- this.maxEntrySize = maxEntrySize || this.maxSize;
74995
74993
  this.sizeCalculation = sizeCalculation || length;
74996
74994
  if (this.sizeCalculation) {
74997
- if (!this.maxSize && !this.maxEntrySize) {
74995
+ if (!this.maxSize) {
74998
74996
  throw new TypeError(
74999
- "cannot set sizeCalculation without setting maxSize or maxEntrySize"
74997
+ "cannot set sizeCalculation without setting maxSize"
75000
74998
  );
75001
74999
  }
75002
75000
  if (typeof this.sizeCalculation !== "function") {
@@ -75038,17 +75036,10 @@ var require_lru_cache3 = __commonJS({
75038
75036
  this.noDisposeOnSet = !!noDisposeOnSet;
75039
75037
  this.noUpdateTTL = !!noUpdateTTL;
75040
75038
  this.noDeleteOnFetchRejection = !!noDeleteOnFetchRejection;
75041
- if (this.maxEntrySize !== 0) {
75042
- if (this.maxSize !== 0) {
75043
- if (!isPosInt(this.maxSize)) {
75044
- throw new TypeError(
75045
- "maxSize must be a positive integer if specified"
75046
- );
75047
- }
75048
- }
75049
- if (!isPosInt(this.maxEntrySize)) {
75039
+ if (this.maxSize !== 0) {
75040
+ if (!isPosInt(this.maxSize)) {
75050
75041
  throw new TypeError(
75051
- "maxEntrySize must be a positive integer if specified"
75042
+ "maxSize must be a positive integer if specified"
75052
75043
  );
75053
75044
  }
75054
75045
  this.initializeSizeTracking();
@@ -75190,7 +75181,7 @@ var require_lru_cache3 = __commonJS({
75190
75181
  requireSize(k, v, size, sizeCalculation) {
75191
75182
  if (size || sizeCalculation) {
75192
75183
  throw new TypeError(
75193
- "cannot set size without setting maxSize or maxEntrySize on cache"
75184
+ "cannot set size without setting maxSize on cache"
75194
75185
  );
75195
75186
  }
75196
75187
  }
@@ -75335,7 +75326,7 @@ var require_lru_cache3 = __commonJS({
75335
75326
  noUpdateTTL = this.noUpdateTTL
75336
75327
  } = {}) {
75337
75328
  size = this.requireSize(k, v, size, sizeCalculation);
75338
- if (this.maxEntrySize && size > this.maxEntrySize) {
75329
+ if (this.maxSize && size > this.maxSize) {
75339
75330
  return this;
75340
75331
  }
75341
75332
  let index = this.size === 0 ? void 0 : this.keyMap.get(k);
@@ -76155,9 +76146,9 @@ var require_is_core_module = __commonJS({
76155
76146
  }
76156
76147
  });
76157
76148
 
76158
- // ../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/extract_description.js
76149
+ // ../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/extract_description.js
76159
76150
  var require_extract_description = __commonJS({
76160
- "../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/extract_description.js"(exports2, module2) {
76151
+ "../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/extract_description.js"(exports2, module2) {
76161
76152
  module2.exports = extractDescription;
76162
76153
  function extractDescription(d) {
76163
76154
  if (!d) {
@@ -76167,23 +76158,21 @@ var require_extract_description = __commonJS({
76167
76158
  return;
76168
76159
  }
76169
76160
  d = d.trim().split("\n");
76170
- let s = 0;
76171
- while (d[s] && d[s].trim().match(/^(#|$)/)) {
76172
- s++;
76161
+ for (var s = 0; d[s] && d[s].trim().match(/^(#|$)/); s++) {
76162
+ ;
76173
76163
  }
76174
- const l = d.length;
76175
- let e = s + 1;
76176
- while (e < l && d[e].trim()) {
76177
- e++;
76164
+ var l = d.length;
76165
+ for (var e = s + 1; e < l && d[e].trim(); e++) {
76166
+ ;
76178
76167
  }
76179
76168
  return d.slice(s, e).join(" ").trim();
76180
76169
  }
76181
76170
  }
76182
76171
  });
76183
76172
 
76184
- // ../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/typos.json
76173
+ // ../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/typos.json
76185
76174
  var require_typos = __commonJS({
76186
- "../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/typos.json"(exports2, module2) {
76175
+ "../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/typos.json"(exports2, module2) {
76187
76176
  module2.exports = {
76188
76177
  topLevel: {
76189
76178
  dependancies: "dependencies",
@@ -76212,9 +76201,9 @@ var require_typos = __commonJS({
76212
76201
  }
76213
76202
  });
76214
76203
 
76215
- // ../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/fixer.js
76204
+ // ../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/fixer.js
76216
76205
  var require_fixer = __commonJS({
76217
- "../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/fixer.js"(exports2, module2) {
76206
+ "../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/fixer.js"(exports2, module2) {
76218
76207
  var isValidSemver = require_valid();
76219
76208
  var cleanSemver = require_clean();
76220
76209
  var validateLicense = require_validate_npm_package_license();
@@ -76328,17 +76317,17 @@ var require_fixer = __commonJS({
76328
76317
  this.warn("nonArrayBundleDependencies");
76329
76318
  delete data[bd];
76330
76319
  } else if (data[bd]) {
76331
- data[bd] = data[bd].filter(function(filtered) {
76332
- if (!filtered || typeof filtered !== "string") {
76333
- this.warn("nonStringBundleDependency", filtered);
76320
+ data[bd] = data[bd].filter(function(bd2) {
76321
+ if (!bd2 || typeof bd2 !== "string") {
76322
+ this.warn("nonStringBundleDependency", bd2);
76334
76323
  return false;
76335
76324
  } else {
76336
76325
  if (!data.dependencies) {
76337
76326
  data.dependencies = {};
76338
76327
  }
76339
- if (!Object.prototype.hasOwnProperty.call(data.dependencies, filtered)) {
76340
- this.warn("nonDependencyBundleDependency", filtered);
76341
- data.dependencies[filtered] = "*";
76328
+ if (!Object.prototype.hasOwnProperty.call(data.dependencies, bd2)) {
76329
+ this.warn("nonDependencyBundleDependency", bd2);
76330
+ data.dependencies[bd2] = "*";
76342
76331
  }
76343
76332
  return true;
76344
76333
  }
@@ -76561,27 +76550,27 @@ var require_fixer = __commonJS({
76561
76550
  }
76562
76551
  var name = person.name || "";
76563
76552
  var u = person.url || person.web;
76564
- var wrappedUrl = u ? " (" + u + ")" : "";
76553
+ var url2 = u ? " (" + u + ")" : "";
76565
76554
  var e = person.email || person.mail;
76566
- var wrappedEmail = e ? " <" + e + ">" : "";
76567
- return name + wrappedEmail + wrappedUrl;
76555
+ var email = e ? " <" + e + ">" : "";
76556
+ return name + email + url2;
76568
76557
  }
76569
76558
  function parsePerson(person) {
76570
76559
  if (typeof person !== "string") {
76571
76560
  return person;
76572
76561
  }
76573
- var matchedName = person.match(/^([^(<]+)/);
76574
- var matchedUrl = person.match(/\(([^()]+)\)/);
76575
- var matchedEmail = person.match(/<([^<>]+)>/);
76562
+ var name = person.match(/^([^(<]+)/);
76563
+ var url2 = person.match(/\(([^()]+)\)/);
76564
+ var email = person.match(/<([^<>]+)>/);
76576
76565
  var obj = {};
76577
- if (matchedName && matchedName[0].trim()) {
76578
- obj.name = matchedName[0].trim();
76566
+ if (name && name[0].trim()) {
76567
+ obj.name = name[0].trim();
76579
76568
  }
76580
- if (matchedEmail) {
76581
- obj.email = matchedEmail[1];
76569
+ if (email) {
76570
+ obj.email = email[1];
76582
76571
  }
76583
- if (matchedUrl) {
76584
- obj.url = matchedUrl[1];
76572
+ if (url2) {
76573
+ obj.url = url2[1];
76585
76574
  }
76586
76575
  return obj;
76587
76576
  }
@@ -76643,9 +76632,9 @@ var require_fixer = __commonJS({
76643
76632
  }
76644
76633
  });
76645
76634
 
76646
- // ../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/warning_messages.json
76635
+ // ../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/warning_messages.json
76647
76636
  var require_warning_messages = __commonJS({
76648
- "../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/warning_messages.json"(exports2, module2) {
76637
+ "../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/warning_messages.json"(exports2, module2) {
76649
76638
  module2.exports = {
76650
76639
  repositories: "'repositories' (plural) Not supported. Please pick one as the 'repository' field",
76651
76640
  missingRepository: "No repository field.",
@@ -76679,9 +76668,9 @@ var require_warning_messages = __commonJS({
76679
76668
  }
76680
76669
  });
76681
76670
 
76682
- // ../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/make_warning.js
76671
+ // ../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/make_warning.js
76683
76672
  var require_make_warning = __commonJS({
76684
- "../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/make_warning.js"(exports2, module2) {
76673
+ "../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/make_warning.js"(exports2, module2) {
76685
76674
  var util = require("util");
76686
76675
  var messages = require_warning_messages();
76687
76676
  module2.exports = function() {
@@ -76705,9 +76694,9 @@ var require_make_warning = __commonJS({
76705
76694
  }
76706
76695
  });
76707
76696
 
76708
- // ../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/normalize.js
76697
+ // ../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/normalize.js
76709
76698
  var require_normalize = __commonJS({
76710
- "../../node_modules/.pnpm/normalize-package-data@4.0.1/node_modules/normalize-package-data/lib/normalize.js"(exports2, module2) {
76699
+ "../../node_modules/.pnpm/normalize-package-data@4.0.0/node_modules/normalize-package-data/lib/normalize.js"(exports2, module2) {
76711
76700
  module2.exports = normalize;
76712
76701
  var fixer = require_fixer();
76713
76702
  normalize.fixer = fixer;
@@ -83554,7 +83543,13 @@ var require_normalizeArch = __commonJS({
83554
83543
  "../node.fetcher/lib/normalizeArch.js"(exports2) {
83555
83544
  "use strict";
83556
83545
  Object.defineProperty(exports2, "__esModule", { value: true });
83557
- function getNormalizedArch(platform, arch) {
83546
+ function getNormalizedArch(platform, arch, nodeVersion) {
83547
+ if (nodeVersion) {
83548
+ const nodeMajorVersion = +nodeVersion.split(".")[0];
83549
+ if (platform === "darwin" && arch === "arm64" && nodeMajorVersion < 16) {
83550
+ return "x64";
83551
+ }
83552
+ }
83558
83553
  if (platform === "win32" && arch === "ia32") {
83559
83554
  return "x86";
83560
83555
  }
@@ -83579,7 +83574,7 @@ var require_getNodeTarball = __commonJS({
83579
83574
  var normalizeArch_1 = __importDefault(require_normalizeArch());
83580
83575
  function getNodeTarball(nodeVersion, nodeMirror, processPlatform, processArch) {
83581
83576
  const platform = processPlatform === "win32" ? "win" : processPlatform;
83582
- const arch = (0, normalizeArch_1.default)(processPlatform, processArch);
83577
+ const arch = (0, normalizeArch_1.default)(processPlatform, processArch, nodeVersion);
83583
83578
  const extension = platform === "win" ? "zip" : "tar.gz";
83584
83579
  const pkgName = `node-v${nodeVersion}-${platform}-${arch}`;
83585
83580
  return {
@@ -85452,6 +85447,7 @@ var require_node3 = __commonJS({
85452
85447
  var fs_1 = __importDefault(require("fs"));
85453
85448
  var path_1 = __importDefault(require("path"));
85454
85449
  var fetch_1 = require_lib31();
85450
+ var logger_1 = require_lib6();
85455
85451
  var node_fetcher_1 = require_lib43();
85456
85452
  var store_path_1 = __importDefault(require_lib44());
85457
85453
  var load_json_file_1 = __importDefault(require_load_json_file());
@@ -85496,6 +85492,7 @@ var require_node3 = __commonJS({
85496
85492
  pnpmHomeDir: opts.pnpmHomeDir
85497
85493
  });
85498
85494
  const cafsDir = path_1.default.join(storeDir, "files");
85495
+ (0, logger_1.globalInfo)(`Fetching Node.js ${opts.useNodeVersion} ...`);
85499
85496
  await (0, node_fetcher_1.fetchNode)(fetch, opts.useNodeVersion, versionDir, {
85500
85497
  ...opts,
85501
85498
  cafsDir,
@@ -116208,9 +116205,9 @@ var require_dist14 = __commonJS({
116208
116205
  }
116209
116206
  });
116210
116207
 
116211
- // ../../node_modules/.pnpm/write-file-atomic@4.0.2/node_modules/write-file-atomic/lib/index.js
116208
+ // ../../node_modules/.pnpm/write-file-atomic@4.0.1/node_modules/write-file-atomic/lib/index.js
116212
116209
  var require_lib93 = __commonJS({
116213
- "../../node_modules/.pnpm/write-file-atomic@4.0.2/node_modules/write-file-atomic/lib/index.js"(exports2, module2) {
116210
+ "../../node_modules/.pnpm/write-file-atomic@4.0.1/node_modules/write-file-atomic/lib/index.js"(exports2, module2) {
116214
116211
  "use strict";
116215
116212
  module2.exports = writeFile;
116216
116213
  module2.exports.sync = writeFileSync;
@@ -116238,7 +116235,7 @@ var require_lib93 = __commonJS({
116238
116235
  return () => {
116239
116236
  try {
116240
116237
  fs2.unlinkSync(typeof tmpfile === "function" ? tmpfile() : tmpfile);
116241
- } catch {
116238
+ } catch (_) {
116242
116239
  }
116243
116240
  };
116244
116241
  }
@@ -116336,19 +116333,14 @@ var require_lib93 = __commonJS({
116336
116333
  }
116337
116334
  }
116338
116335
  }
116339
- async function writeFile(filename, data, options, callback) {
116336
+ function writeFile(filename, data, options, callback) {
116340
116337
  if (options instanceof Function) {
116341
116338
  callback = options;
116342
116339
  options = {};
116343
116340
  }
116344
116341
  const promise = writeFileAsync(filename, data, options);
116345
116342
  if (callback) {
116346
- try {
116347
- const result2 = await promise;
116348
- return callback(result2);
116349
- } catch (err) {
116350
- return callback(err);
116351
- }
116343
+ promise.then(callback, callback);
116352
116344
  }
116353
116345
  return promise;
116354
116346
  }
@@ -122931,11 +122923,7 @@ var require_filterLockfileByImportersAndEngine = __commonJS({
122931
122923
  const nextRelDepPaths = Object.entries({
122932
122924
  ...pkgSnapshot.dependencies,
122933
122925
  ...opts.include.optionalDependencies ? pkgSnapshot.optionalDependencies : {}
122934
- }).map(([pkgName, ref]) => {
122935
- if (pkgSnapshot.peerDependencies?.[pkgName])
122936
- return null;
122937
- return dp.refToRelative(ref, pkgName);
122938
- }).filter((nodeId) => nodeId !== null);
122926
+ }).map(([pkgName, ref]) => dp.refToRelative(ref, pkgName)).filter((nodeId) => nodeId !== null);
122939
122927
  pkgAllDeps(ctx, nextRelDepPaths, installable, opts);
122940
122928
  }
122941
122929
  }
@@ -135345,6 +135333,18 @@ var require_install = __commonJS({
135345
135333
  pruneVirtualStore,
135346
135334
  wantedLockfile: maybeOpts.ignorePackageManifest ? void 0 : ctx.wantedLockfile
135347
135335
  });
135336
+ if (opts.useLockfile && opts.saveLockfile && opts.mergeGitBranchLockfiles) {
135337
+ await (0, lockfile_file_1.writeLockfiles)({
135338
+ currentLockfile: ctx.currentLockfile,
135339
+ currentLockfileDir: ctx.virtualStoreDir,
135340
+ wantedLockfile: ctx.wantedLockfile,
135341
+ wantedLockfileDir: ctx.lockfileDir,
135342
+ forceSharedFormat: opts.forceSharedLockfile,
135343
+ useInlineSpecifiersFormat: opts.useInlineSpecifiersLockfileFormat,
135344
+ useGitBranchLockfile: opts.useGitBranchLockfile,
135345
+ mergeGitBranchLockfiles: opts.mergeGitBranchLockfiles
135346
+ });
135347
+ }
135348
135348
  return projects;
135349
135349
  } catch (error) {
135350
135350
  if (frozenLockfile || error.code !== "ERR_PNPM_LOCKFILE_MISSING_DEPENDENCY" && !BROKEN_LOCKFILE_INTEGRITY_ERRORS.has(error.code))
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "pnpm",
3
3
  "description": "Fast, disk space efficient package manager",
4
- "version": "7.9.4-0",
4
+ "version": "7.9.4",
5
5
  "bin": {
6
6
  "pnpm": "bin/pnpm.cjs",
7
7
  "pnpx": "bin/pnpx.cjs"
@@ -56,7 +56,7 @@
56
56
  "@pnpm/prepare": "workspace:*",
57
57
  "@pnpm/read-package-json": "workspace:*",
58
58
  "@pnpm/read-project-manifest": "workspace:*",
59
- "@pnpm/registry-mock": "3.0.0-0",
59
+ "@pnpm/registry-mock": "3.0.0-2",
60
60
  "@pnpm/run-npm": "workspace:*",
61
61
  "@pnpm/tabtab": "^0.1.2",
62
62
  "@pnpm/types": "workspace:*",
@@ -75,6 +75,7 @@
75
75
  "cross-var-no-babel": "^1.2.0",
76
76
  "deep-require-cwd": "1.0.0",
77
77
  "delay": "^5.0.0",
78
+ "dependency-path": "workspace:*",
78
79
  "dir-is-case-sensitive": "^2.0.0",
79
80
  "esbuild": "^0.15.2",
80
81
  "execa": "npm:safe-execa@^0.1.2",