pnpm 8.6.2 → 8.6.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.
@@ -157,7 +157,7 @@ hoistedLocations:
157
157
  - node_modules/safe-buffer
158
158
  /safer-buffer/2.1.2:
159
159
  - node_modules/safer-buffer
160
- /semver/7.5.1:
160
+ /semver/7.5.2:
161
161
  - node_modules/semver
162
162
  /set-blocking/2.0.0:
163
163
  - node_modules/set-blocking
@@ -204,7 +204,7 @@ packageManager: pnpm@8.6.0
204
204
  pendingBuilds:
205
205
  - /node-gyp/9.3.1
206
206
  - /encoding/0.1.13
207
- prunedAt: Sun, 11 Jun 2023 18:55:39 GMT
207
+ prunedAt: Mon, 19 Jun 2023 12:51:44 GMT
208
208
  publicHoistPattern:
209
209
  - '*eslint*'
210
210
  - '*prettier*'
@@ -21,7 +21,7 @@ packages:
21
21
  engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
22
22
  dependencies:
23
23
  '@gar/promisify': 1.1.3
24
- semver: 7.5.1
24
+ semver: 7.5.2
25
25
  dev: false
26
26
  optional: true
27
27
 
@@ -534,7 +534,7 @@ packages:
534
534
  nopt: 6.0.0
535
535
  npmlog: 6.0.2
536
536
  rimraf: 3.0.2
537
- semver: 7.5.1
537
+ semver: 7.5.2
538
538
  tar: 6.1.15
539
539
  which: 2.0.2
540
540
  transitivePeerDependencies:
@@ -637,8 +637,8 @@ packages:
637
637
  dev: false
638
638
  optional: true
639
639
 
640
- /semver@7.5.1:
641
- resolution: {integrity: sha512-Wvss5ivl8TMRZXXESstBA4uR5iXgEN/VC5/sOcuXdVLzcdkz4HWetIoRfG5gb5X+ij/G9rw9YoGn3QoQ8OCSpw==}
640
+ /semver@7.5.2:
641
+ resolution: {integrity: sha512-SoftuTROv/cRjCze/scjGyiDtcUyxw1rgYQSZY7XTmtR5hX+dm76iDbTH8TkLPHCQmlbQVSSbNZCPM2hb0knnQ==}
642
642
  engines: {node: '>=10'}
643
643
  hasBin: true
644
644
  dependencies:
@@ -16,6 +16,7 @@ class Comparator {
16
16
  }
17
17
  }
18
18
 
19
+ comp = comp.trim().split(/\s+/).join(' ')
19
20
  debug('comparator', comp, options)
20
21
  this.options = options
21
22
  this.loose = !!options.loose
@@ -133,7 +134,7 @@ class Comparator {
133
134
  module.exports = Comparator
134
135
 
135
136
  const parseOptions = require('../internal/parse-options')
136
- const { re, t } = require('../internal/re')
137
+ const { safeRe: re, t } = require('../internal/re')
137
138
  const cmp = require('../functions/cmp')
138
139
  const debug = require('../internal/debug')
139
140
  const SemVer = require('./semver')
@@ -26,19 +26,26 @@ class Range {
26
26
  this.loose = !!options.loose
27
27
  this.includePrerelease = !!options.includePrerelease
28
28
 
29
- // First, split based on boolean or ||
29
+ // First reduce all whitespace as much as possible so we do not have to rely
30
+ // on potentially slow regexes like \s*. This is then stored and used for
31
+ // future error messages as well.
30
32
  this.raw = range
31
- this.set = range
33
+ .trim()
34
+ .split(/\s+/)
35
+ .join(' ')
36
+
37
+ // First, split on ||
38
+ this.set = this.raw
32
39
  .split('||')
33
40
  // map the range to a 2d array of comparators
34
- .map(r => this.parseRange(r.trim()))
41
+ .map(r => this.parseRange(r))
35
42
  // throw out any comparator lists that are empty
36
43
  // this generally means that it was not a valid range, which is allowed
37
44
  // in loose mode, but will still throw if the WHOLE range is invalid.
38
45
  .filter(c => c.length)
39
46
 
40
47
  if (!this.set.length) {
41
- throw new TypeError(`Invalid SemVer Range: ${range}`)
48
+ throw new TypeError(`Invalid SemVer Range: ${this.raw}`)
42
49
  }
43
50
 
44
51
  // if we have any that are not the null set, throw out null sets.
@@ -64,9 +71,7 @@ class Range {
64
71
 
65
72
  format () {
66
73
  this.range = this.set
67
- .map((comps) => {
68
- return comps.join(' ').trim()
69
- })
74
+ .map((comps) => comps.join(' ').trim())
70
75
  .join('||')
71
76
  .trim()
72
77
  return this.range
@@ -77,8 +82,6 @@ class Range {
77
82
  }
78
83
 
79
84
  parseRange (range) {
80
- range = range.trim()
81
-
82
85
  // memoize range parsing for performance.
83
86
  // this is a very hot path, and fully deterministic.
84
87
  const memoOpts =
@@ -105,9 +108,6 @@ class Range {
105
108
  // `^ 1.2.3` => `^1.2.3`
106
109
  range = range.replace(re[t.CARETTRIM], caretTrimReplace)
107
110
 
108
- // normalize spaces
109
- range = range.split(/\s+/).join(' ')
110
-
111
111
  // At this point, the range is completely trimmed and
112
112
  // ready to be split into comparators.
113
113
 
@@ -203,7 +203,7 @@ const Comparator = require('./comparator')
203
203
  const debug = require('../internal/debug')
204
204
  const SemVer = require('./semver')
205
205
  const {
206
- re,
206
+ safeRe: re,
207
207
  t,
208
208
  comparatorTrimReplace,
209
209
  tildeTrimReplace,
@@ -257,10 +257,13 @@ const isX = id => !id || id.toLowerCase() === 'x' || id === '*'
257
257
  // ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0-0
258
258
  // ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0-0
259
259
  // ~0.0.1 --> >=0.0.1 <0.1.0-0
260
- const replaceTildes = (comp, options) =>
261
- comp.trim().split(/\s+/).map((c) => {
262
- return replaceTilde(c, options)
263
- }).join(' ')
260
+ const replaceTildes = (comp, options) => {
261
+ return comp
262
+ .trim()
263
+ .split(/\s+/)
264
+ .map((c) => replaceTilde(c, options))
265
+ .join(' ')
266
+ }
264
267
 
265
268
  const replaceTilde = (comp, options) => {
266
269
  const r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]
@@ -298,10 +301,13 @@ const replaceTilde = (comp, options) => {
298
301
  // ^1.2.0 --> >=1.2.0 <2.0.0-0
299
302
  // ^0.0.1 --> >=0.0.1 <0.0.2-0
300
303
  // ^0.1.0 --> >=0.1.0 <0.2.0-0
301
- const replaceCarets = (comp, options) =>
302
- comp.trim().split(/\s+/).map((c) => {
303
- return replaceCaret(c, options)
304
- }).join(' ')
304
+ const replaceCarets = (comp, options) => {
305
+ return comp
306
+ .trim()
307
+ .split(/\s+/)
308
+ .map((c) => replaceCaret(c, options))
309
+ .join(' ')
310
+ }
305
311
 
306
312
  const replaceCaret = (comp, options) => {
307
313
  debug('caret', comp, options)
@@ -358,9 +364,10 @@ const replaceCaret = (comp, options) => {
358
364
 
359
365
  const replaceXRanges = (comp, options) => {
360
366
  debug('replaceXRanges', comp, options)
361
- return comp.split(/\s+/).map((c) => {
362
- return replaceXRange(c, options)
363
- }).join(' ')
367
+ return comp
368
+ .split(/\s+/)
369
+ .map((c) => replaceXRange(c, options))
370
+ .join(' ')
364
371
  }
365
372
 
366
373
  const replaceXRange = (comp, options) => {
@@ -443,12 +450,15 @@ const replaceXRange = (comp, options) => {
443
450
  const replaceStars = (comp, options) => {
444
451
  debug('replaceStars', comp, options)
445
452
  // Looseness is ignored here. star is always as loose as it gets!
446
- return comp.trim().replace(re[t.STAR], '')
453
+ return comp
454
+ .trim()
455
+ .replace(re[t.STAR], '')
447
456
  }
448
457
 
449
458
  const replaceGTE0 = (comp, options) => {
450
459
  debug('replaceGTE0', comp, options)
451
- return comp.trim()
460
+ return comp
461
+ .trim()
452
462
  .replace(re[options.includePrerelease ? t.GTE0PRE : t.GTE0], '')
453
463
  }
454
464
 
@@ -486,7 +496,7 @@ const hyphenReplace = incPr => ($0,
486
496
  to = `<=${to}`
487
497
  }
488
498
 
489
- return (`${from} ${to}`).trim()
499
+ return `${from} ${to}`.trim()
490
500
  }
491
501
 
492
502
  const testSet = (set, version, options) => {
@@ -1,6 +1,6 @@
1
1
  const debug = require('../internal/debug')
2
2
  const { MAX_LENGTH, MAX_SAFE_INTEGER } = require('../internal/constants')
3
- const { re, t } = require('../internal/re')
3
+ const { safeRe: re, t } = require('../internal/re')
4
4
 
5
5
  const parseOptions = require('../internal/parse-options')
6
6
  const { compareIdentifiers } = require('../internal/identifiers')
@@ -291,8 +291,10 @@ class SemVer {
291
291
  default:
292
292
  throw new Error(`invalid increment argument: ${release}`)
293
293
  }
294
- this.format()
295
- this.raw = this.version
294
+ this.raw = this.format()
295
+ if (this.build.length) {
296
+ this.raw += `+${this.build.join('.')}`
297
+ }
296
298
  return this
297
299
  }
298
300
  }
@@ -1,6 +1,6 @@
1
1
  const SemVer = require('../classes/semver')
2
2
  const parse = require('./parse')
3
- const { re, t } = require('../internal/re')
3
+ const { safeRe: re, t } = require('../internal/re')
4
4
 
5
5
  const coerce = (version, options) => {
6
6
  if (version instanceof SemVer) {
@@ -13,6 +13,35 @@ const diff = (version1, version2) => {
13
13
  const highVersion = v1Higher ? v1 : v2
14
14
  const lowVersion = v1Higher ? v2 : v1
15
15
  const highHasPre = !!highVersion.prerelease.length
16
+ const lowHasPre = !!lowVersion.prerelease.length
17
+
18
+ if (lowHasPre && !highHasPre) {
19
+ // Going from prerelease -> no prerelease requires some special casing
20
+
21
+ // If the low version has only a major, then it will always be a major
22
+ // Some examples:
23
+ // 1.0.0-1 -> 1.0.0
24
+ // 1.0.0-1 -> 1.1.1
25
+ // 1.0.0-1 -> 2.0.0
26
+ if (!lowVersion.patch && !lowVersion.minor) {
27
+ return 'major'
28
+ }
29
+
30
+ // Otherwise it can be determined by checking the high version
31
+
32
+ if (highVersion.patch) {
33
+ // anything higher than a patch bump would result in the wrong version
34
+ return 'patch'
35
+ }
36
+
37
+ if (highVersion.minor) {
38
+ // anything higher than a minor bump would result in the wrong version
39
+ return 'minor'
40
+ }
41
+
42
+ // bumping major/minor/patch all have same result
43
+ return 'major'
44
+ }
16
45
 
17
46
  // add the `pre` prefix if we are going to a prerelease version
18
47
  const prefix = highHasPre ? 'pre' : ''
@@ -29,26 +58,8 @@ const diff = (version1, version2) => {
29
58
  return prefix + 'patch'
30
59
  }
31
60
 
32
- // at this point we know stable versions match but overall versions are not equal,
33
- // so either they are both prereleases, or the lower version is a prerelease
34
-
35
- if (highHasPre) {
36
- // high and low are preleases
37
- return 'prerelease'
38
- }
39
-
40
- if (lowVersion.patch) {
41
- // anything higher than a patch bump would result in the wrong version
42
- return 'patch'
43
- }
44
-
45
- if (lowVersion.minor) {
46
- // anything higher than a minor bump would result in the wrong version
47
- return 'minor'
48
- }
49
-
50
- // bumping major/minor/patch all have same result
51
- return 'major'
61
+ // high and low are preleases
62
+ return 'prerelease'
52
63
  }
53
64
 
54
65
  module.exports = diff
@@ -4,16 +4,27 @@ exports = module.exports = {}
4
4
 
5
5
  // The actual regexps go on exports.re
6
6
  const re = exports.re = []
7
+ const safeRe = exports.safeRe = []
7
8
  const src = exports.src = []
8
9
  const t = exports.t = {}
9
10
  let R = 0
10
11
 
11
12
  const createToken = (name, value, isGlobal) => {
13
+ // Replace all greedy whitespace to prevent regex dos issues. These regex are
14
+ // used internally via the safeRe object since all inputs in this library get
15
+ // normalized first to trim and collapse all extra whitespace. The original
16
+ // regexes are exported for userland consumption and lower level usage. A
17
+ // future breaking change could export the safer regex only with a note that
18
+ // all input should have extra whitespace removed.
19
+ const safe = value
20
+ .split('\\s*').join('\\s{0,1}')
21
+ .split('\\s+').join('\\s')
12
22
  const index = R++
13
23
  debug(name, index, value)
14
24
  t[name] = index
15
25
  src[index] = value
16
26
  re[index] = new RegExp(value, isGlobal ? 'g' : undefined)
27
+ safeRe[index] = new RegExp(safe, isGlobal ? 'g' : undefined)
17
28
  }
18
29
 
19
30
  // The following Regular Expressions can be used for tokenizing,
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "semver",
3
- "version": "7.5.1",
3
+ "version": "7.5.2",
4
4
  "description": "The semantic version parser used by npm.",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -14,7 +14,7 @@
14
14
  },
15
15
  "devDependencies": {
16
16
  "@npmcli/eslint-config": "^4.0.0",
17
- "@npmcli/template-oss": "4.14.1",
17
+ "@npmcli/template-oss": "4.15.1",
18
18
  "tap": "^16.0.0"
19
19
  },
20
20
  "license": "ISC",
@@ -37,7 +37,7 @@
37
37
  "range.bnf"
38
38
  ],
39
39
  "tap": {
40
- "check-coverage": true,
40
+ "timeout": 30,
41
41
  "coverage-map": "map.js",
42
42
  "nyc-arg": [
43
43
  "--exclude",
@@ -53,7 +53,7 @@
53
53
  "author": "GitHub Inc.",
54
54
  "templateOSS": {
55
55
  "//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
56
- "version": "4.14.1",
56
+ "version": "4.15.1",
57
57
  "engines": ">=10",
58
58
  "ciVersions": [
59
59
  "10.0.0",
package/dist/pnpm.cjs CHANGED
@@ -1194,9 +1194,9 @@ var require_js_tokens = __commonJS({
1194
1194
  }
1195
1195
  });
1196
1196
 
1197
- // ../node_modules/.pnpm/@babel+helper-validator-identifier@7.19.1/node_modules/@babel/helper-validator-identifier/lib/identifier.js
1197
+ // ../node_modules/.pnpm/@babel+helper-validator-identifier@7.22.5/node_modules/@babel/helper-validator-identifier/lib/identifier.js
1198
1198
  var require_identifier = __commonJS({
1199
- "../node_modules/.pnpm/@babel+helper-validator-identifier@7.19.1/node_modules/@babel/helper-validator-identifier/lib/identifier.js"(exports2) {
1199
+ "../node_modules/.pnpm/@babel+helper-validator-identifier@7.22.5/node_modules/@babel/helper-validator-identifier/lib/identifier.js"(exports2) {
1200
1200
  "use strict";
1201
1201
  Object.defineProperty(exports2, "__esModule", {
1202
1202
  value: true
@@ -1279,9 +1279,9 @@ var require_identifier = __commonJS({
1279
1279
  }
1280
1280
  });
1281
1281
 
1282
- // ../node_modules/.pnpm/@babel+helper-validator-identifier@7.19.1/node_modules/@babel/helper-validator-identifier/lib/keyword.js
1282
+ // ../node_modules/.pnpm/@babel+helper-validator-identifier@7.22.5/node_modules/@babel/helper-validator-identifier/lib/keyword.js
1283
1283
  var require_keyword = __commonJS({
1284
- "../node_modules/.pnpm/@babel+helper-validator-identifier@7.19.1/node_modules/@babel/helper-validator-identifier/lib/keyword.js"(exports2) {
1284
+ "../node_modules/.pnpm/@babel+helper-validator-identifier@7.22.5/node_modules/@babel/helper-validator-identifier/lib/keyword.js"(exports2) {
1285
1285
  "use strict";
1286
1286
  Object.defineProperty(exports2, "__esModule", {
1287
1287
  value: true
@@ -1317,9 +1317,9 @@ var require_keyword = __commonJS({
1317
1317
  }
1318
1318
  });
1319
1319
 
1320
- // ../node_modules/.pnpm/@babel+helper-validator-identifier@7.19.1/node_modules/@babel/helper-validator-identifier/lib/index.js
1320
+ // ../node_modules/.pnpm/@babel+helper-validator-identifier@7.22.5/node_modules/@babel/helper-validator-identifier/lib/index.js
1321
1321
  var require_lib = __commonJS({
1322
- "../node_modules/.pnpm/@babel+helper-validator-identifier@7.19.1/node_modules/@babel/helper-validator-identifier/lib/index.js"(exports2) {
1322
+ "../node_modules/.pnpm/@babel+helper-validator-identifier@7.22.5/node_modules/@babel/helper-validator-identifier/lib/index.js"(exports2) {
1323
1323
  "use strict";
1324
1324
  Object.defineProperty(exports2, "__esModule", {
1325
1325
  value: true
@@ -3249,7 +3249,7 @@ var require_lib4 = __commonJS({
3249
3249
  var load_json_file_1 = __importDefault3(require_load_json_file());
3250
3250
  var defaultManifest = {
3251
3251
  name: true ? "pnpm" : "pnpm",
3252
- version: true ? "8.6.2" : "0.0.0"
3252
+ version: true ? "8.6.3" : "0.0.0"
3253
3253
  };
3254
3254
  var pkgJson;
3255
3255
  if (require.main == null) {
@@ -14777,9 +14777,9 @@ var require_config_chain = __commonJS({
14777
14777
  }
14778
14778
  });
14779
14779
 
14780
- // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/envKeyToSetting.js
14780
+ // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/envKeyToSetting.js
14781
14781
  var require_envKeyToSetting = __commonJS({
14782
- "../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/envKeyToSetting.js"(exports2, module2) {
14782
+ "../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/envKeyToSetting.js"(exports2, module2) {
14783
14783
  module2.exports = function(x) {
14784
14784
  const colonIndex = x.indexOf(":");
14785
14785
  if (colonIndex === -1) {
@@ -14850,9 +14850,9 @@ var require_dist2 = __commonJS({
14850
14850
  }
14851
14851
  });
14852
14852
 
14853
- // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/util.js
14853
+ // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/util.js
14854
14854
  var require_util = __commonJS({
14855
- "../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/util.js"(exports2) {
14855
+ "../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/util.js"(exports2) {
14856
14856
  "use strict";
14857
14857
  var fs2 = require("fs");
14858
14858
  var path2 = require("path");
@@ -14947,9 +14947,9 @@ var require_util = __commonJS({
14947
14947
  }
14948
14948
  });
14949
14949
 
14950
- // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/types.js
14950
+ // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/types.js
14951
14951
  var require_types2 = __commonJS({
14952
- "../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/types.js"(exports2) {
14952
+ "../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/types.js"(exports2) {
14953
14953
  "use strict";
14954
14954
  var path2 = require("path");
14955
14955
  var Stream = require("stream").Stream;
@@ -15086,9 +15086,9 @@ var require_types2 = __commonJS({
15086
15086
  }
15087
15087
  });
15088
15088
 
15089
- // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/conf.js
15089
+ // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/conf.js
15090
15090
  var require_conf = __commonJS({
15091
- "../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/conf.js"(exports2, module2) {
15091
+ "../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/conf.js"(exports2, module2) {
15092
15092
  "use strict";
15093
15093
  var { readCAFileSync } = require_dist();
15094
15094
  var fs2 = require("fs");
@@ -15225,9 +15225,9 @@ var require_conf = __commonJS({
15225
15225
  }
15226
15226
  });
15227
15227
 
15228
- // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/defaults.js
15228
+ // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/defaults.js
15229
15229
  var require_defaults = __commonJS({
15230
- "../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/lib/defaults.js"(exports2) {
15230
+ "../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/lib/defaults.js"(exports2) {
15231
15231
  "use strict";
15232
15232
  var os = require("os");
15233
15233
  var path2 = require("path");
@@ -15249,7 +15249,7 @@ var require_defaults = __commonJS({
15249
15249
  home = path2.resolve(temp, "npm-" + uidOrPid);
15250
15250
  }
15251
15251
  var cacheExtra = process.platform === "win32" ? "npm-cache" : ".npm";
15252
- var cacheRoot = process.platform === "win32" ? process.env.APPDATA : home;
15252
+ var cacheRoot = process.platform === "win32" && process.env.APPDATA || home;
15253
15253
  var cache = path2.resolve(cacheRoot, cacheExtra);
15254
15254
  var defaults;
15255
15255
  var globalPrefix;
@@ -15394,9 +15394,9 @@ var require_defaults = __commonJS({
15394
15394
  }
15395
15395
  });
15396
15396
 
15397
- // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/index.js
15397
+ // ../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/index.js
15398
15398
  var require_npm_conf = __commonJS({
15399
- "../node_modules/.pnpm/@pnpm+npm-conf@2.2.0/node_modules/@pnpm/npm-conf/index.js"(exports2, module2) {
15399
+ "../node_modules/.pnpm/@pnpm+npm-conf@2.2.2/node_modules/@pnpm/npm-conf/index.js"(exports2, module2) {
15400
15400
  "use strict";
15401
15401
  var path2 = require("path");
15402
15402
  var Conf = require_conf();
@@ -37887,6 +37887,136 @@ var require_reportInstallChecks = __commonJS({
37887
37887
  }
37888
37888
  });
37889
37889
 
37890
+ // ../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js
37891
+ var require_is_fullwidth_code_point = __commonJS({
37892
+ "../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js"(exports2, module2) {
37893
+ "use strict";
37894
+ var isFullwidthCodePoint = (codePoint) => {
37895
+ if (Number.isNaN(codePoint)) {
37896
+ return false;
37897
+ }
37898
+ if (codePoint >= 4352 && (codePoint <= 4447 || // Hangul Jamo
37899
+ codePoint === 9001 || // LEFT-POINTING ANGLE BRACKET
37900
+ codePoint === 9002 || // RIGHT-POINTING ANGLE BRACKET
37901
+ // CJK Radicals Supplement .. Enclosed CJK Letters and Months
37902
+ 11904 <= codePoint && codePoint <= 12871 && codePoint !== 12351 || // Enclosed CJK Letters and Months .. CJK Unified Ideographs Extension A
37903
+ 12880 <= codePoint && codePoint <= 19903 || // CJK Unified Ideographs .. Yi Radicals
37904
+ 19968 <= codePoint && codePoint <= 42182 || // Hangul Jamo Extended-A
37905
+ 43360 <= codePoint && codePoint <= 43388 || // Hangul Syllables
37906
+ 44032 <= codePoint && codePoint <= 55203 || // CJK Compatibility Ideographs
37907
+ 63744 <= codePoint && codePoint <= 64255 || // Vertical Forms
37908
+ 65040 <= codePoint && codePoint <= 65049 || // CJK Compatibility Forms .. Small Form Variants
37909
+ 65072 <= codePoint && codePoint <= 65131 || // Halfwidth and Fullwidth Forms
37910
+ 65281 <= codePoint && codePoint <= 65376 || 65504 <= codePoint && codePoint <= 65510 || // Kana Supplement
37911
+ 110592 <= codePoint && codePoint <= 110593 || // Enclosed Ideographic Supplement
37912
+ 127488 <= codePoint && codePoint <= 127569 || // CJK Unified Ideographs Extension B .. Tertiary Ideographic Plane
37913
+ 131072 <= codePoint && codePoint <= 262141)) {
37914
+ return true;
37915
+ }
37916
+ return false;
37917
+ };
37918
+ module2.exports = isFullwidthCodePoint;
37919
+ module2.exports.default = isFullwidthCodePoint;
37920
+ }
37921
+ });
37922
+
37923
+ // ../node_modules/.pnpm/astral-regex@2.0.0/node_modules/astral-regex/index.js
37924
+ var require_astral_regex = __commonJS({
37925
+ "../node_modules/.pnpm/astral-regex@2.0.0/node_modules/astral-regex/index.js"(exports2, module2) {
37926
+ "use strict";
37927
+ var regex = "[\uD800-\uDBFF][\uDC00-\uDFFF]";
37928
+ var astralRegex = (options) => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, "g");
37929
+ module2.exports = astralRegex;
37930
+ }
37931
+ });
37932
+
37933
+ // ../node_modules/.pnpm/slice-ansi@3.0.0/node_modules/slice-ansi/index.js
37934
+ var require_slice_ansi = __commonJS({
37935
+ "../node_modules/.pnpm/slice-ansi@3.0.0/node_modules/slice-ansi/index.js"(exports2, module2) {
37936
+ "use strict";
37937
+ var isFullwidthCodePoint = require_is_fullwidth_code_point();
37938
+ var astralRegex = require_astral_regex();
37939
+ var ansiStyles = require_ansi_styles2();
37940
+ var ESCAPES = [
37941
+ "\x1B",
37942
+ "\x9B"
37943
+ ];
37944
+ var wrapAnsi = (code) => `${ESCAPES[0]}[${code}m`;
37945
+ var checkAnsi = (ansiCodes, isEscapes, endAnsiCode) => {
37946
+ let output = [];
37947
+ ansiCodes = [...ansiCodes];
37948
+ for (let ansiCode of ansiCodes) {
37949
+ const ansiCodeOrigin = ansiCode;
37950
+ if (ansiCode.match(";")) {
37951
+ ansiCode = ansiCode.split(";")[0][0] + "0";
37952
+ }
37953
+ const item = ansiStyles.codes.get(parseInt(ansiCode, 10));
37954
+ if (item) {
37955
+ const indexEscape = ansiCodes.indexOf(item.toString());
37956
+ if (indexEscape >= 0) {
37957
+ ansiCodes.splice(indexEscape, 1);
37958
+ } else {
37959
+ output.push(wrapAnsi(isEscapes ? item : ansiCodeOrigin));
37960
+ }
37961
+ } else if (isEscapes) {
37962
+ output.push(wrapAnsi(0));
37963
+ break;
37964
+ } else {
37965
+ output.push(wrapAnsi(ansiCodeOrigin));
37966
+ }
37967
+ }
37968
+ if (isEscapes) {
37969
+ output = output.filter((element, index) => output.indexOf(element) === index);
37970
+ if (endAnsiCode !== void 0) {
37971
+ const fistEscapeCode = wrapAnsi(ansiStyles.codes.get(parseInt(endAnsiCode, 10)));
37972
+ output = output.reduce((current, next) => next === fistEscapeCode ? [next, ...current] : [...current, next], []);
37973
+ }
37974
+ }
37975
+ return output.join("");
37976
+ };
37977
+ module2.exports = (string, begin, end) => {
37978
+ const characters = [...string.normalize()];
37979
+ const ansiCodes = [];
37980
+ end = typeof end === "number" ? end : characters.length;
37981
+ let isInsideEscape = false;
37982
+ let ansiCode;
37983
+ let visible = 0;
37984
+ let output = "";
37985
+ for (const [index, character] of characters.entries()) {
37986
+ let leftEscape = false;
37987
+ if (ESCAPES.includes(character)) {
37988
+ const code = /\d[^m]*/.exec(string.slice(index, index + 18));
37989
+ ansiCode = code && code.length > 0 ? code[0] : void 0;
37990
+ if (visible < end) {
37991
+ isInsideEscape = true;
37992
+ if (ansiCode !== void 0) {
37993
+ ansiCodes.push(ansiCode);
37994
+ }
37995
+ }
37996
+ } else if (isInsideEscape && character === "m") {
37997
+ isInsideEscape = false;
37998
+ leftEscape = true;
37999
+ }
38000
+ if (!isInsideEscape && !leftEscape) {
38001
+ ++visible;
38002
+ }
38003
+ if (!astralRegex({ exact: true }).test(character) && isFullwidthCodePoint(character.codePointAt())) {
38004
+ ++visible;
38005
+ }
38006
+ if (visible > begin && visible <= end) {
38007
+ output += character;
38008
+ } else if (visible === begin && !isInsideEscape && ansiCode !== void 0) {
38009
+ output = checkAnsi(ansiCodes);
38010
+ } else if (visible >= end) {
38011
+ output += checkAnsi(ansiCodes, true, ansiCode);
38012
+ break;
38013
+ }
38014
+ }
38015
+ return output;
38016
+ };
38017
+ }
38018
+ });
38019
+
37890
38020
  // ../node_modules/.pnpm/ansi-regex@5.0.1/node_modules/ansi-regex/index.js
37891
38021
  var require_ansi_regex2 = __commonJS({
37892
38022
  "../node_modules/.pnpm/ansi-regex@5.0.1/node_modules/ansi-regex/index.js"(exports2, module2) {
@@ -37910,6 +38040,139 @@ var require_strip_ansi = __commonJS({
37910
38040
  }
37911
38041
  });
37912
38042
 
38043
+ // ../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js
38044
+ var require_emoji_regex = __commonJS({
38045
+ "../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js"(exports2, module2) {
38046
+ "use strict";
38047
+ module2.exports = function() {
38048
+ return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
38049
+ };
38050
+ }
38051
+ });
38052
+
38053
+ // ../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js
38054
+ var require_string_width = __commonJS({
38055
+ "../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js"(exports2, module2) {
38056
+ "use strict";
38057
+ var stripAnsi = require_strip_ansi();
38058
+ var isFullwidthCodePoint = require_is_fullwidth_code_point();
38059
+ var emojiRegex = require_emoji_regex();
38060
+ var stringWidth = (string) => {
38061
+ if (typeof string !== "string" || string.length === 0) {
38062
+ return 0;
38063
+ }
38064
+ string = stripAnsi(string);
38065
+ if (string.length === 0) {
38066
+ return 0;
38067
+ }
38068
+ string = string.replace(emojiRegex(), " ");
38069
+ let width = 0;
38070
+ for (let i = 0; i < string.length; i++) {
38071
+ const code = string.codePointAt(i);
38072
+ if (code <= 31 || code >= 127 && code <= 159) {
38073
+ continue;
38074
+ }
38075
+ if (code >= 768 && code <= 879) {
38076
+ continue;
38077
+ }
38078
+ if (code > 65535) {
38079
+ i++;
38080
+ }
38081
+ width += isFullwidthCodePoint(code) ? 2 : 1;
38082
+ }
38083
+ return width;
38084
+ };
38085
+ module2.exports = stringWidth;
38086
+ module2.exports.default = stringWidth;
38087
+ }
38088
+ });
38089
+
38090
+ // ../node_modules/.pnpm/cli-truncate@2.1.0/node_modules/cli-truncate/index.js
38091
+ var require_cli_truncate = __commonJS({
38092
+ "../node_modules/.pnpm/cli-truncate@2.1.0/node_modules/cli-truncate/index.js"(exports2, module2) {
38093
+ "use strict";
38094
+ var sliceAnsi = require_slice_ansi();
38095
+ var stringWidth = require_string_width();
38096
+ function getIndexOfNearestSpace(string, index, shouldSearchRight) {
38097
+ if (string.charAt(index) === " ") {
38098
+ return index;
38099
+ }
38100
+ for (let i = 1; i <= 3; i++) {
38101
+ if (shouldSearchRight) {
38102
+ if (string.charAt(index + i) === " ") {
38103
+ return index + i;
38104
+ }
38105
+ } else if (string.charAt(index - i) === " ") {
38106
+ return index - i;
38107
+ }
38108
+ }
38109
+ return index;
38110
+ }
38111
+ module2.exports = (text, columns, options) => {
38112
+ options = {
38113
+ position: "end",
38114
+ preferTruncationOnSpace: false,
38115
+ ...options
38116
+ };
38117
+ const { position, space, preferTruncationOnSpace } = options;
38118
+ let ellipsis = "\u2026";
38119
+ let ellipsisWidth = 1;
38120
+ if (typeof text !== "string") {
38121
+ throw new TypeError(`Expected \`input\` to be a string, got ${typeof text}`);
38122
+ }
38123
+ if (typeof columns !== "number") {
38124
+ throw new TypeError(`Expected \`columns\` to be a number, got ${typeof columns}`);
38125
+ }
38126
+ if (columns < 1) {
38127
+ return "";
38128
+ }
38129
+ if (columns === 1) {
38130
+ return ellipsis;
38131
+ }
38132
+ const length = stringWidth(text);
38133
+ if (length <= columns) {
38134
+ return text;
38135
+ }
38136
+ if (position === "start") {
38137
+ if (preferTruncationOnSpace) {
38138
+ const nearestSpace = getIndexOfNearestSpace(text, length - columns + 1, true);
38139
+ return ellipsis + sliceAnsi(text, nearestSpace, length).trim();
38140
+ }
38141
+ if (space === true) {
38142
+ ellipsis += " ";
38143
+ ellipsisWidth = 2;
38144
+ }
38145
+ return ellipsis + sliceAnsi(text, length - columns + ellipsisWidth, length);
38146
+ }
38147
+ if (position === "middle") {
38148
+ if (space === true) {
38149
+ ellipsis = " " + ellipsis + " ";
38150
+ ellipsisWidth = 3;
38151
+ }
38152
+ const half = Math.floor(columns / 2);
38153
+ if (preferTruncationOnSpace) {
38154
+ const spaceNearFirstBreakPoint = getIndexOfNearestSpace(text, half);
38155
+ const spaceNearSecondBreakPoint = getIndexOfNearestSpace(text, length - (columns - half) + 1, true);
38156
+ return sliceAnsi(text, 0, spaceNearFirstBreakPoint) + ellipsis + sliceAnsi(text, spaceNearSecondBreakPoint, length).trim();
38157
+ }
38158
+ return sliceAnsi(text, 0, half) + ellipsis + sliceAnsi(text, length - (columns - half) + ellipsisWidth, length);
38159
+ }
38160
+ if (position === "end") {
38161
+ if (preferTruncationOnSpace) {
38162
+ const nearestSpace = getIndexOfNearestSpace(text, columns - 1);
38163
+ return sliceAnsi(text, 0, nearestSpace) + ellipsis;
38164
+ }
38165
+ if (space === true) {
38166
+ ellipsis = " " + ellipsis;
38167
+ ellipsisWidth = 2;
38168
+ }
38169
+ return sliceAnsi(text, 0, columns - ellipsisWidth) + ellipsis;
38170
+ }
38171
+ throw new Error(`Expected \`options.position\` to be either \`start\`, \`middle\` or \`end\`, got ${position}`);
38172
+ };
38173
+ }
38174
+ });
38175
+
37913
38176
  // ../cli/default-reporter/lib/reporterForClient/reportLifecycleScripts.js
37914
38177
  var require_reportLifecycleScripts = __commonJS({
37915
38178
  "../cli/default-reporter/lib/reporterForClient/reportLifecycleScripts.js"(exports2) {
@@ -37951,12 +38214,12 @@ var require_reportLifecycleScripts = __commonJS({
37951
38214
  };
37952
38215
  Object.defineProperty(exports2, "__esModule", { value: true });
37953
38216
  exports2.reportLifecycleScripts = void 0;
38217
+ var cli_truncate_1 = __importDefault3(require_cli_truncate());
37954
38218
  var path_1 = __importDefault3(require("path"));
37955
38219
  var Rx = __importStar4(require_cjs2());
37956
38220
  var operators_1 = require_operators();
37957
38221
  var chalk_1 = __importDefault3(require_source());
37958
38222
  var pretty_ms_1 = __importDefault3(require_pretty_ms());
37959
- var strip_ansi_1 = __importDefault3(require_strip_ansi());
37960
38223
  var constants_1 = require_constants2();
37961
38224
  var formatPrefix_1 = require_formatPrefix();
37962
38225
  var outputConstants_1 = require_outputConstants();
@@ -38122,7 +38385,7 @@ var require_reportLifecycleScripts = __commonJS({
38122
38385
  function cutLine(line, maxLength) {
38123
38386
  if (!line)
38124
38387
  return "";
38125
- return (0, strip_ansi_1.default)(line).slice(0, maxLength);
38388
+ return (0, cli_truncate_1.default)(line, maxLength);
38126
38389
  }
38127
38390
  function aggregateOutput(source) {
38128
38391
  return source.pipe((0, operators_1.groupBy)((data) => data.depPath), (0, operators_1.mergeMap)((group) => {
@@ -38219,86 +38482,6 @@ var require_lib22 = __commonJS({
38219
38482
  }
38220
38483
  });
38221
38484
 
38222
- // ../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js
38223
- var require_is_fullwidth_code_point = __commonJS({
38224
- "../node_modules/.pnpm/is-fullwidth-code-point@3.0.0/node_modules/is-fullwidth-code-point/index.js"(exports2, module2) {
38225
- "use strict";
38226
- var isFullwidthCodePoint = (codePoint) => {
38227
- if (Number.isNaN(codePoint)) {
38228
- return false;
38229
- }
38230
- if (codePoint >= 4352 && (codePoint <= 4447 || // Hangul Jamo
38231
- codePoint === 9001 || // LEFT-POINTING ANGLE BRACKET
38232
- codePoint === 9002 || // RIGHT-POINTING ANGLE BRACKET
38233
- // CJK Radicals Supplement .. Enclosed CJK Letters and Months
38234
- 11904 <= codePoint && codePoint <= 12871 && codePoint !== 12351 || // Enclosed CJK Letters and Months .. CJK Unified Ideographs Extension A
38235
- 12880 <= codePoint && codePoint <= 19903 || // CJK Unified Ideographs .. Yi Radicals
38236
- 19968 <= codePoint && codePoint <= 42182 || // Hangul Jamo Extended-A
38237
- 43360 <= codePoint && codePoint <= 43388 || // Hangul Syllables
38238
- 44032 <= codePoint && codePoint <= 55203 || // CJK Compatibility Ideographs
38239
- 63744 <= codePoint && codePoint <= 64255 || // Vertical Forms
38240
- 65040 <= codePoint && codePoint <= 65049 || // CJK Compatibility Forms .. Small Form Variants
38241
- 65072 <= codePoint && codePoint <= 65131 || // Halfwidth and Fullwidth Forms
38242
- 65281 <= codePoint && codePoint <= 65376 || 65504 <= codePoint && codePoint <= 65510 || // Kana Supplement
38243
- 110592 <= codePoint && codePoint <= 110593 || // Enclosed Ideographic Supplement
38244
- 127488 <= codePoint && codePoint <= 127569 || // CJK Unified Ideographs Extension B .. Tertiary Ideographic Plane
38245
- 131072 <= codePoint && codePoint <= 262141)) {
38246
- return true;
38247
- }
38248
- return false;
38249
- };
38250
- module2.exports = isFullwidthCodePoint;
38251
- module2.exports.default = isFullwidthCodePoint;
38252
- }
38253
- });
38254
-
38255
- // ../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js
38256
- var require_emoji_regex = __commonJS({
38257
- "../node_modules/.pnpm/emoji-regex@8.0.0/node_modules/emoji-regex/index.js"(exports2, module2) {
38258
- "use strict";
38259
- module2.exports = function() {
38260
- return /\uD83C\uDFF4\uDB40\uDC67\uDB40\uDC62(?:\uDB40\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDB40\uDC73\uDB40\uDC63\uDB40\uDC74|\uDB40\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F|\uD83D\uDC68(?:\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68\uD83C\uDFFB|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFE])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D)?\uD83D\uDC68|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D[\uDC68\uDC69])\u200D(?:\uD83D[\uDC66\uDC67])|[\u2695\u2696\u2708]\uFE0F|\uD83D[\uDC66\uDC67]|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|(?:\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708])\uFE0F|\uD83C\uDFFB\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C[\uDFFB-\uDFFF])|(?:\uD83E\uDDD1\uD83C\uDFFB\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)\uD83C\uDFFB|\uD83E\uDDD1(?:\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1)|(?:\uD83E\uDDD1\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFF\u200D\uD83E\uDD1D\u200D(?:\uD83D[\uDC68\uDC69]))(?:\uD83C[\uDFFB-\uDFFE])|(?:\uD83E\uDDD1\uD83C\uDFFC\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB\uDFFC])|\uD83D\uDC69(?:\uD83C\uDFFE\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB-\uDFFD\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFC\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFD-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFB\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFC-\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFD\u200D(?:\uD83E\uDD1D\u200D\uD83D\uDC68(?:\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\u200D(?:\u2764\uFE0F\u200D(?:\uD83D\uDC8B\u200D(?:\uD83D[\uDC68\uDC69])|\uD83D[\uDC68\uDC69])|\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD])|\uD83C\uDFFF\u200D(?:\uD83C[\uDF3E\uDF73\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E[\uDDAF-\uDDB3\uDDBC\uDDBD]))|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67]))|(?:\uD83E\uDDD1\uD83C\uDFFD\u200D\uD83E\uDD1D\u200D\uD83E\uDDD1|\uD83D\uDC69\uD83C\uDFFE\u200D\uD83E\uDD1D\u200D\uD83D\uDC69)(?:\uD83C[\uDFFB-\uDFFD])|\uD83D\uDC69\u200D\uD83D\uDC66\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC69\u200D(?:\uD83D[\uDC66\uDC67])|(?:\uD83D\uDC41\uFE0F\u200D\uD83D\uDDE8|\uD83D\uDC69(?:\uD83C\uDFFF\u200D[\u2695\u2696\u2708]|\uD83C\uDFFE\u200D[\u2695\u2696\u2708]|\uD83C\uDFFC\u200D[\u2695\u2696\u2708]|\uD83C\uDFFB\u200D[\u2695\u2696\u2708]|\uD83C\uDFFD\u200D[\u2695\u2696\u2708]|\u200D[\u2695\u2696\u2708])|(?:(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)\uFE0F|\uD83D\uDC6F|\uD83E[\uDD3C\uDDDE\uDDDF])\u200D[\u2640\u2642]|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:(?:\uD83C[\uDFFB-\uDFFF])\u200D[\u2640\u2642]|\u200D[\u2640\u2642])|\uD83C\uDFF4\u200D\u2620)\uFE0F|\uD83D\uDC69\u200D\uD83D\uDC67\u200D(?:\uD83D[\uDC66\uDC67])|\uD83C\uDFF3\uFE0F\u200D\uD83C\uDF08|\uD83D\uDC15\u200D\uD83E\uDDBA|\uD83D\uDC69\u200D\uD83D\uDC66|\uD83D\uDC69\u200D\uD83D\uDC67|\uD83C\uDDFD\uD83C\uDDF0|\uD83C\uDDF4\uD83C\uDDF2|\uD83C\uDDF6\uD83C\uDDE6|[#\*0-9]\uFE0F\u20E3|\uD83C\uDDE7(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF])|\uD83C\uDDF9(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF])|\uD83C\uDDEA(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA])|\uD83E\uDDD1(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF7(?:\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC])|\uD83D\uDC69(?:\uD83C[\uDFFB-\uDFFF])|\uD83C\uDDF2(?:\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF])|\uD83C\uDDE6(?:\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF])|\uD83C\uDDF0(?:\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF])|\uD83C\uDDED(?:\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA])|\uD83C\uDDE9(?:\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF])|\uD83C\uDDFE(?:\uD83C[\uDDEA\uDDF9])|\uD83C\uDDEC(?:\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE])|\uD83C\uDDF8(?:\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF])|\uD83C\uDDEB(?:\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7])|\uD83C\uDDF5(?:\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE])|\uD83C\uDDFB(?:\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA])|\uD83C\uDDF3(?:\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF])|\uD83C\uDDE8(?:\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF5\uDDF7\uDDFA-\uDDFF])|\uD83C\uDDF1(?:\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE])|\uD83C\uDDFF(?:\uD83C[\uDDE6\uDDF2\uDDFC])|\uD83C\uDDFC(?:\uD83C[\uDDEB\uDDF8])|\uD83C\uDDFA(?:\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF])|\uD83C\uDDEE(?:\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9])|\uD83C\uDDEF(?:\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5])|(?:\uD83C[\uDFC3\uDFC4\uDFCA]|\uD83D[\uDC6E\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4-\uDEB6]|\uD83E[\uDD26\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD-\uDDCF\uDDD6-\uDDDD])(?:\uD83C[\uDFFB-\uDFFF])|(?:\u26F9|\uD83C[\uDFCB\uDFCC]|\uD83D\uDD75)(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u261D\u270A-\u270D]|\uD83C[\uDF85\uDFC2\uDFC7]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC70\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDCAA\uDD74\uDD7A\uDD90\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1C\uDD1E\uDD1F\uDD30-\uDD36\uDDB5\uDDB6\uDDBB\uDDD2-\uDDD5])(?:\uD83C[\uDFFB-\uDFFF])|(?:[\u231A\u231B\u23E9-\u23EC\u23F0\u23F3\u25FD\u25FE\u2614\u2615\u2648-\u2653\u267F\u2693\u26A1\u26AA\u26AB\u26BD\u26BE\u26C4\u26C5\u26CE\u26D4\u26EA\u26F2\u26F3\u26F5\u26FA\u26FD\u2705\u270A\u270B\u2728\u274C\u274E\u2753-\u2755\u2757\u2795-\u2797\u27B0\u27BF\u2B1B\u2B1C\u2B50\u2B55]|\uD83C[\uDC04\uDCCF\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF7C\uDF7E-\uDF93\uDFA0-\uDFCA\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF4\uDFF8-\uDFFF]|\uD83D[\uDC00-\uDC3E\uDC40\uDC42-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDD7A\uDD95\uDD96\uDDA4\uDDFB-\uDE4F\uDE80-\uDEC5\uDECC\uDED0-\uDED2\uDED5\uDEEB\uDEEC\uDEF4-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])|(?:[#\*0-9\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u261D\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692-\u2697\u2699\u269B\u269C\u26A0\u26A1\u26AA\u26AB\u26B0\u26B1\u26BD\u26BE\u26C4\u26C5\u26C8\u26CE\u26CF\u26D1\u26D3\u26D4\u26E9\u26EA\u26F0-\u26F5\u26F7-\u26FA\u26FD\u2702\u2705\u2708-\u270D\u270F\u2712\u2714\u2716\u271D\u2721\u2728\u2733\u2734\u2744\u2747\u274C\u274E\u2753-\u2755\u2757\u2763\u2764\u2795-\u2797\u27A1\u27B0\u27BF\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55\u3030\u303D\u3297\u3299]|\uD83C[\uDC04\uDCCF\uDD70\uDD71\uDD7E\uDD7F\uDD8E\uDD91-\uDD9A\uDDE6-\uDDFF\uDE01\uDE02\uDE1A\uDE2F\uDE32-\uDE3A\uDE50\uDE51\uDF00-\uDF21\uDF24-\uDF93\uDF96\uDF97\uDF99-\uDF9B\uDF9E-\uDFF0\uDFF3-\uDFF5\uDFF7-\uDFFF]|\uD83D[\uDC00-\uDCFD\uDCFF-\uDD3D\uDD49-\uDD4E\uDD50-\uDD67\uDD6F\uDD70\uDD73-\uDD7A\uDD87\uDD8A-\uDD8D\uDD90\uDD95\uDD96\uDDA4\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA-\uDE4F\uDE80-\uDEC5\uDECB-\uDED2\uDED5\uDEE0-\uDEE5\uDEE9\uDEEB\uDEEC\uDEF0\uDEF3-\uDEFA\uDFE0-\uDFEB]|\uD83E[\uDD0D-\uDD3A\uDD3C-\uDD45\uDD47-\uDD71\uDD73-\uDD76\uDD7A-\uDDA2\uDDA5-\uDDAA\uDDAE-\uDDCA\uDDCD-\uDDFF\uDE70-\uDE73\uDE78-\uDE7A\uDE80-\uDE82\uDE90-\uDE95])\uFE0F|(?:[\u261D\u26F9\u270A-\u270D]|\uD83C[\uDF85\uDFC2-\uDFC4\uDFC7\uDFCA-\uDFCC]|\uD83D[\uDC42\uDC43\uDC46-\uDC50\uDC66-\uDC78\uDC7C\uDC81-\uDC83\uDC85-\uDC87\uDC8F\uDC91\uDCAA\uDD74\uDD75\uDD7A\uDD90\uDD95\uDD96\uDE45-\uDE47\uDE4B-\uDE4F\uDEA3\uDEB4-\uDEB6\uDEC0\uDECC]|\uD83E[\uDD0F\uDD18-\uDD1F\uDD26\uDD30-\uDD39\uDD3C-\uDD3E\uDDB5\uDDB6\uDDB8\uDDB9\uDDBB\uDDCD-\uDDCF\uDDD1-\uDDDD])/g;
38261
- };
38262
- }
38263
- });
38264
-
38265
- // ../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js
38266
- var require_string_width = __commonJS({
38267
- "../node_modules/.pnpm/string-width@4.2.3/node_modules/string-width/index.js"(exports2, module2) {
38268
- "use strict";
38269
- var stripAnsi = require_strip_ansi();
38270
- var isFullwidthCodePoint = require_is_fullwidth_code_point();
38271
- var emojiRegex = require_emoji_regex();
38272
- var stringWidth = (string) => {
38273
- if (typeof string !== "string" || string.length === 0) {
38274
- return 0;
38275
- }
38276
- string = stripAnsi(string);
38277
- if (string.length === 0) {
38278
- return 0;
38279
- }
38280
- string = string.replace(emojiRegex(), " ");
38281
- let width = 0;
38282
- for (let i = 0; i < string.length; i++) {
38283
- const code = string.codePointAt(i);
38284
- if (code <= 31 || code >= 127 && code <= 159) {
38285
- continue;
38286
- }
38287
- if (code >= 768 && code <= 879) {
38288
- continue;
38289
- }
38290
- if (code > 65535) {
38291
- i++;
38292
- }
38293
- width += isFullwidthCodePoint(code) ? 2 : 1;
38294
- }
38295
- return width;
38296
- };
38297
- module2.exports = stringWidth;
38298
- module2.exports.default = stringWidth;
38299
- }
38300
- });
38301
-
38302
38485
  // ../node_modules/.pnpm/cli-columns@4.0.0/node_modules/cli-columns/index.js
38303
38486
  var require_cli_columns = __commonJS({
38304
38487
  "../node_modules/.pnpm/cli-columns@4.0.0/node_modules/cli-columns/index.js"(exports2, module2) {
@@ -55459,18 +55642,8 @@ var require_lib34 = __commonJS({
55459
55642
  }
55460
55643
  });
55461
55644
 
55462
- // ../node_modules/.pnpm/astral-regex@2.0.0/node_modules/astral-regex/index.js
55463
- var require_astral_regex = __commonJS({
55464
- "../node_modules/.pnpm/astral-regex@2.0.0/node_modules/astral-regex/index.js"(exports2, module2) {
55465
- "use strict";
55466
- var regex = "[\uD800-\uDBFF][\uDC00-\uDFFF]";
55467
- var astralRegex = (options) => options && options.exact ? new RegExp(`^${regex}$`) : new RegExp(regex, "g");
55468
- module2.exports = astralRegex;
55469
- }
55470
- });
55471
-
55472
55645
  // ../node_modules/.pnpm/slice-ansi@4.0.0/node_modules/slice-ansi/index.js
55473
- var require_slice_ansi = __commonJS({
55646
+ var require_slice_ansi2 = __commonJS({
55474
55647
  "../node_modules/.pnpm/slice-ansi@4.0.0/node_modules/slice-ansi/index.js"(exports2, module2) {
55475
55648
  "use strict";
55476
55649
  var isFullwidthCodePoint = require_is_fullwidth_code_point();
@@ -55677,7 +55850,7 @@ var require_utils7 = __commonJS({
55677
55850
  };
55678
55851
  Object.defineProperty(exports2, "__esModule", { value: true });
55679
55852
  exports2.isCellInRange = exports2.areCellEqual = exports2.calculateRangeCoordinate = exports2.findOriginalRowIndex = exports2.flatten = exports2.extractTruncates = exports2.sumArray = exports2.sequence = exports2.distributeUnevenly = exports2.countSpaceSequence = exports2.groupBySizes = exports2.makeBorderConfig = exports2.splitAnsi = exports2.normalizeString = void 0;
55680
- var slice_ansi_1 = __importDefault3(require_slice_ansi());
55853
+ var slice_ansi_1 = __importDefault3(require_slice_ansi2());
55681
55854
  var string_width_1 = __importDefault3(require_string_width());
55682
55855
  var strip_ansi_1 = __importDefault3(require_strip_ansi());
55683
55856
  var getBorderCharacters_1 = require_getBorderCharacters();
@@ -55877,7 +56050,7 @@ var require_wrapString = __commonJS({
55877
56050
  };
55878
56051
  Object.defineProperty(exports2, "__esModule", { value: true });
55879
56052
  exports2.wrapString = void 0;
55880
- var slice_ansi_1 = __importDefault3(require_slice_ansi());
56053
+ var slice_ansi_1 = __importDefault3(require_slice_ansi2());
55881
56054
  var string_width_1 = __importDefault3(require_string_width());
55882
56055
  var wrapString = (subject, size) => {
55883
56056
  let subjectSlice = subject;
@@ -55901,7 +56074,7 @@ var require_wrapWord = __commonJS({
55901
56074
  };
55902
56075
  Object.defineProperty(exports2, "__esModule", { value: true });
55903
56076
  exports2.wrapWord = void 0;
55904
- var slice_ansi_1 = __importDefault3(require_slice_ansi());
56077
+ var slice_ansi_1 = __importDefault3(require_slice_ansi2());
55905
56078
  var strip_ansi_1 = __importDefault3(require_strip_ansi());
55906
56079
  var calculateStringLengths = (input, size) => {
55907
56080
  let subject = (0, strip_ansi_1.default)(input);
@@ -80195,7 +80368,7 @@ var require_addFilesFromTarball = __commonJS({
80195
80368
  var parseJson_1 = require_parseJson();
80196
80369
  async function addFilesFromTarball(addStreamToCafs, _ignore, stream, manifest) {
80197
80370
  const ignore = _ignore ?? (() => false);
80198
- const extract = tar_stream_1.default.extract();
80371
+ const extract = tar_stream_1.default.extract({ allowUnknownFormat: true });
80199
80372
  const filesIndex = {};
80200
80373
  await new Promise((resolve, reject) => {
80201
80374
  extract.on("entry", (header, fileStream, next) => {
@@ -111983,7 +112156,7 @@ var require_pickPackageFromMeta = __commonJS({
111983
112156
  acc[weight].push(version2);
111984
112157
  return acc;
111985
112158
  }, {});
111986
- return Object.keys(versionsByWeight).sort((a, b) => parseInt(b, 10) - parseInt(a, 10)).map((weigth) => versionsByWeight[parseInt(weigth, 10)]);
112159
+ return Object.keys(versionsByWeight).sort((a, b) => parseInt(b, 10) - parseInt(a, 10)).map((weight) => versionsByWeight[parseInt(weight, 10)]);
111987
112160
  }
111988
112161
  };
111989
112162
  }
@@ -118243,7 +118416,7 @@ var require_grapheme_splitter = __commonJS({
118243
118416
  });
118244
118417
 
118245
118418
  // ../node_modules/.pnpm/@pnpm+slice-ansi@1.1.2/node_modules/@pnpm/slice-ansi/index.js
118246
- var require_slice_ansi2 = __commonJS({
118419
+ var require_slice_ansi3 = __commonJS({
118247
118420
  "../node_modules/.pnpm/@pnpm+slice-ansi@1.1.2/node_modules/@pnpm/slice-ansi/index.js"(exports2, module2) {
118248
118421
  var ANSI_SEQUENCE = /^(.*?)(\x1b\[[^m]+m|\x1b\]8;;.*?(\x1b\\|\u0007))/;
118249
118422
  var splitGraphemes;
@@ -118397,7 +118570,7 @@ var require_utils14 = __commonJS({
118397
118570
  };
118398
118571
  Object.defineProperty(exports2, "__esModule", { value: true });
118399
118572
  exports2.isCellInRange = exports2.areCellEqual = exports2.calculateRangeCoordinate = exports2.findOriginalRowIndex = exports2.flatten = exports2.extractTruncates = exports2.sumArray = exports2.sequence = exports2.distributeUnevenly = exports2.countSpaceSequence = exports2.groupBySizes = exports2.makeBorderConfig = exports2.splitAnsi = exports2.normalizeString = void 0;
118400
- var slice_ansi_1 = __importDefault3(require_slice_ansi2());
118573
+ var slice_ansi_1 = __importDefault3(require_slice_ansi3());
118401
118574
  var string_width_1 = __importDefault3(require_string_width());
118402
118575
  var strip_ansi_1 = __importDefault3(require_strip_ansi());
118403
118576
  var getBorderCharacters_1 = require_getBorderCharacters2();
@@ -118595,7 +118768,7 @@ var require_wrapString2 = __commonJS({
118595
118768
  };
118596
118769
  Object.defineProperty(exports2, "__esModule", { value: true });
118597
118770
  exports2.wrapString = void 0;
118598
- var slice_ansi_1 = __importDefault3(require_slice_ansi2());
118771
+ var slice_ansi_1 = __importDefault3(require_slice_ansi3());
118599
118772
  var string_width_1 = __importDefault3(require_string_width());
118600
118773
  var wrapString = (subject, size) => {
118601
118774
  let subjectSlice = subject;
@@ -118619,7 +118792,7 @@ var require_wrapWord2 = __commonJS({
118619
118792
  };
118620
118793
  Object.defineProperty(exports2, "__esModule", { value: true });
118621
118794
  exports2.wrapWord = void 0;
118622
- var slice_ansi_1 = __importDefault3(require_slice_ansi2());
118795
+ var slice_ansi_1 = __importDefault3(require_slice_ansi3());
118623
118796
  var strip_ansi_1 = __importDefault3(require_strip_ansi());
118624
118797
  var calculateStringLengths = (input, size) => {
118625
118798
  let subject = (0, strip_ansi_1.default)(input);
@@ -128352,9 +128525,9 @@ var require_slash2 = __commonJS({
128352
128525
  }
128353
128526
  });
128354
128527
 
128355
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/path.js
128528
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/path.js
128356
128529
  var require_path6 = __commonJS({
128357
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/path.js"(exports2) {
128530
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/path.js"(exports2) {
128358
128531
  "use strict";
128359
128532
  var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
128360
128533
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -128412,9 +128585,9 @@ var require_klaw_sync = __commonJS({
128412
128585
  }
128413
128586
  });
128414
128587
 
128415
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patchFs.js
128588
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patchFs.js
128416
128589
  var require_patchFs2 = __commonJS({
128417
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patchFs.js"(exports2) {
128590
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patchFs.js"(exports2) {
128418
128591
  "use strict";
128419
128592
  var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
128420
128593
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -130166,9 +130339,9 @@ var require_lib114 = __commonJS({
130166
130339
  }
130167
130340
  });
130168
130341
 
130169
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/assertNever.js
130342
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/assertNever.js
130170
130343
  var require_assertNever = __commonJS({
130171
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/assertNever.js"(exports2) {
130344
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/assertNever.js"(exports2) {
130172
130345
  "use strict";
130173
130346
  Object.defineProperty(exports2, "__esModule", { value: true });
130174
130347
  exports2.assertNever = void 0;
@@ -130179,9 +130352,9 @@ var require_assertNever = __commonJS({
130179
130352
  }
130180
130353
  });
130181
130354
 
130182
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/apply.js
130355
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/apply.js
130183
130356
  var require_apply = __commonJS({
130184
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/apply.js"(exports2) {
130357
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/apply.js"(exports2) {
130185
130358
  "use strict";
130186
130359
  var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
130187
130360
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -130344,9 +130517,9 @@ var require_apply = __commonJS({
130344
130517
  }
130345
130518
  });
130346
130519
 
130347
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/PackageDetails.js
130520
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/PackageDetails.js
130348
130521
  var require_PackageDetails = __commonJS({
130349
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/PackageDetails.js"(exports2) {
130522
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/PackageDetails.js"(exports2) {
130350
130523
  "use strict";
130351
130524
  Object.defineProperty(exports2, "__esModule", { value: true });
130352
130525
  exports2.getPatchDetailsFromCliString = exports2.getPackageDetailsFromPatchFilename = void 0;
@@ -130445,9 +130618,9 @@ var require_PackageDetails = __commonJS({
130445
130618
  }
130446
130619
  });
130447
130620
 
130448
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/parse.js
130621
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/parse.js
130449
130622
  var require_parse7 = __commonJS({
130450
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/parse.js"(exports2) {
130623
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/parse.js"(exports2) {
130451
130624
  "use strict";
130452
130625
  Object.defineProperty(exports2, "__esModule", { value: true });
130453
130626
  exports2.verifyHunkIntegrity = exports2.parsePatchFile = exports2.interpretParsedPatchFile = exports2.EXECUTABLE_FILE_MODE = exports2.NON_EXECUTABLE_FILE_MODE = exports2.parseHunkHeaderLine = void 0;
@@ -130746,9 +130919,9 @@ var require_parse7 = __commonJS({
130746
130919
  }
130747
130920
  });
130748
130921
 
130749
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/reverse.js
130922
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/reverse.js
130750
130923
  var require_reverse = __commonJS({
130751
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/reverse.js"(exports2) {
130924
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/reverse.js"(exports2) {
130752
130925
  "use strict";
130753
130926
  Object.defineProperty(exports2, "__esModule", { value: true });
130754
130927
  exports2.reversePatch = void 0;
@@ -131896,9 +132069,9 @@ var require_semver4 = __commonJS({
131896
132069
  }
131897
132070
  });
131898
132071
 
131899
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/read.js
132072
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/read.js
131900
132073
  var require_read2 = __commonJS({
131901
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/patch/read.js"(exports2) {
132074
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/patch/read.js"(exports2) {
131902
132075
  "use strict";
131903
132076
  var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
131904
132077
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -131914,6 +132087,9 @@ var require_read2 = __commonJS({
131914
132087
  try {
131915
132088
  return parse_1.parsePatchFile(fs_extra_1.readFileSync(patchFilePath).toString());
131916
132089
  } catch (e) {
132090
+ if (packageDetails == null || patchDir == null) {
132091
+ throw e;
132092
+ }
131917
132093
  const fixupSteps = [];
131918
132094
  const relativePatchFilePath = path_2.normalize(path_1.relative(process.cwd(), patchFilePath));
131919
132095
  const patchBaseDir = relativePatchFilePath.slice(0, relativePatchFilePath.indexOf(patchDir));
@@ -131949,9 +132125,9 @@ ${chalk_1.default.red.bold("**ERROR**")} ${chalk_1.default.red(`Failed to apply
131949
132125
  }
131950
132126
  });
131951
132127
 
131952
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/packageIsDevDependency.js
132128
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/packageIsDevDependency.js
131953
132129
  var require_packageIsDevDependency = __commonJS({
131954
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/packageIsDevDependency.js"(exports2) {
132130
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/packageIsDevDependency.js"(exports2) {
131955
132131
  "use strict";
131956
132132
  Object.defineProperty(exports2, "__esModule", { value: true });
131957
132133
  exports2.packageIsDevDependency = void 0;
@@ -131969,9 +132145,9 @@ var require_packageIsDevDependency = __commonJS({
131969
132145
  }
131970
132146
  });
131971
132147
 
131972
- // ../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/applyPatches.js
132148
+ // ../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/applyPatches.js
131973
132149
  var require_applyPatches = __commonJS({
131974
- "../node_modules/.pnpm/patch-package@7.0.0/node_modules/patch-package/dist/applyPatches.js"(exports2) {
132150
+ "../node_modules/.pnpm/@pnpm+patch-package@0.0.0/node_modules/@pnpm/patch-package/dist/applyPatches.js"(exports2) {
131975
132151
  "use strict";
131976
132152
  var __importDefault3 = exports2 && exports2.__importDefault || function(mod) {
131977
132153
  return mod && mod.__esModule ? mod : { "default": mod };
@@ -132236,11 +132412,19 @@ var require_lib115 = __commonJS({
132236
132412
  function applyPatchToDir(opts) {
132237
132413
  const cwd = process.cwd();
132238
132414
  process.chdir(opts.patchedDir);
132239
- const success = (0, applyPatches_1.applyPatch)({
132240
- patchDir: opts.patchedDir,
132241
- patchFilePath: opts.patchFilePath
132242
- });
132243
- process.chdir(cwd);
132415
+ let success = false;
132416
+ try {
132417
+ success = (0, applyPatches_1.applyPatch)({
132418
+ patchFilePath: opts.patchFilePath
132419
+ });
132420
+ } catch (err) {
132421
+ if (err.code === "ENOENT") {
132422
+ throw new error_1.PnpmError("PATCH_NOT_FOUND", `Patch file not found: ${opts.patchFilePath}`);
132423
+ }
132424
+ throw new error_1.PnpmError("INVALID_PATCH", `Applying patch "${opts.patchFilePath}" failed: ${err.message}`);
132425
+ } finally {
132426
+ process.chdir(cwd);
132427
+ }
132244
132428
  if (!success) {
132245
132429
  throw new error_1.PnpmError("PATCH_FAILED", `Could not apply patch ${opts.patchFilePath} to ${opts.patchedDir}`);
132246
132430
  }
@@ -167325,7 +167509,7 @@ var require_capitalize = __commonJS({
167325
167509
  });
167326
167510
 
167327
167511
  // ../node_modules/.pnpm/@arcanis+slice-ansi@1.1.1/node_modules/@arcanis/slice-ansi/index.js
167328
- var require_slice_ansi3 = __commonJS({
167512
+ var require_slice_ansi4 = __commonJS({
167329
167513
  "../node_modules/.pnpm/@arcanis+slice-ansi@1.1.1/node_modules/@arcanis/slice-ansi/index.js"(exports2, module2) {
167330
167514
  var ANSI_SEQUENCE = /^(.*?)(\x1b\[[^m]+m|\x1b\]8;;.*?(\x1b\\|\u0007))/;
167331
167515
  var splitGraphemes;
@@ -167373,7 +167557,7 @@ var require_StreamReport = __commonJS({
167373
167557
  Object.defineProperty(exports2, "__esModule", { value: true });
167374
167558
  exports2.StreamReport = exports2.formatNameWithHyperlink = exports2.formatName = void 0;
167375
167559
  var tslib_12 = (init_tslib_es62(), __toCommonJS(tslib_es6_exports2));
167376
- var slice_ansi_1 = tslib_12.__importDefault(require_slice_ansi3());
167560
+ var slice_ansi_1 = tslib_12.__importDefault(require_slice_ansi4());
167377
167561
  var ci_info_1 = tslib_12.__importDefault(require_ci_info());
167378
167562
  var MessageName_1 = require_MessageName();
167379
167563
  var Report_1 = require_Report();
@@ -180002,7 +180186,7 @@ var require_lib129 = __commonJS({
180002
180186
  acc[dep] = "link:";
180003
180187
  return acc;
180004
180188
  }, {})
180005
- })
180189
+ }, opts?.autoInstallPeers)
180006
180190
  };
180007
180191
  for (const [importerId, importer] of Object.entries(lockfile.importers)) {
180008
180192
  if (importerId === ".")
@@ -180017,7 +180201,7 @@ var require_lib129 = __commonJS({
180017
180201
  ...importer.dependencies,
180018
180202
  ...importer.devDependencies,
180019
180203
  ...importer.optionalDependencies
180020
- })
180204
+ }, opts?.autoInstallPeers)
180021
180205
  };
180022
180206
  node.dependencies.add(importerNode);
180023
180207
  }
@@ -180032,7 +180216,7 @@ var require_lib129 = __commonJS({
180032
180216
  return hoisterResult;
180033
180217
  }
180034
180218
  exports2.hoist = hoist;
180035
- function toTree(nodes, lockfile, deps) {
180219
+ function toTree(nodes, lockfile, deps, autoInstallPeers) {
180036
180220
  return new Set(Object.entries(deps).map(([alias, ref]) => {
180037
180221
  const depPath = dp.refToRelative(ref, alias);
180038
180222
  if (!depPath) {
@@ -180065,7 +180249,7 @@ var require_lib129 = __commonJS({
180065
180249
  reference: depPath,
180066
180250
  dependencyKind: nm_1.HoisterDependencyKind.REGULAR,
180067
180251
  dependencies: /* @__PURE__ */ new Set(),
180068
- peerNames: /* @__PURE__ */ new Set([
180252
+ peerNames: new Set(autoInstallPeers ? [] : [
180069
180253
  ...Object.keys(pkgSnapshot.peerDependencies ?? {}),
180070
180254
  ...pkgSnapshot.transitivePeerDependencies ?? []
180071
180255
  ])
@@ -180140,7 +180324,11 @@ var require_lockfileToHoistedDepGraph = __commonJS({
180140
180324
  }
180141
180325
  exports2.lockfileToHoistedDepGraph = lockfileToHoistedDepGraph;
180142
180326
  async function _lockfileToHoistedDepGraph(lockfile, opts) {
180143
- const tree = (0, real_hoist_1.hoist)(lockfile, { hoistingLimits: opts.hoistingLimits, externalDependencies: opts.externalDependencies });
180327
+ const tree = (0, real_hoist_1.hoist)(lockfile, {
180328
+ hoistingLimits: opts.hoistingLimits,
180329
+ externalDependencies: opts.externalDependencies,
180330
+ autoInstallPeers: opts.autoInstallPeers
180331
+ });
180144
180332
  const graph = {};
180145
180333
  const modulesDir = path_1.default.join(opts.lockfileDir, "node_modules");
180146
180334
  const fetchDepsOpts = {
@@ -191235,6 +191423,7 @@ var require_update2 = __commonJS({
191235
191423
  ...opts,
191236
191424
  allowNew: false,
191237
191425
  depth,
191426
+ ignoreCurrentPrefs: false,
191238
191427
  includeDirect,
191239
191428
  include,
191240
191429
  update: true,
@@ -200249,7 +200438,7 @@ var require_getPkgInfo3 = __commonJS({
200249
200438
  if (isPackageWithIntegrity) {
200250
200439
  pkgIndexFilePath = (0, cafs_1.getFilePathInCafs)(opts.cafsDir, packageResolution.integrity, "index");
200251
200440
  } else if (!packageResolution.type && packageResolution.tarball) {
200252
- const packageDirInStore = (0, dependency_path_1.depPathToFilename)(depPath.split("_")[0]);
200441
+ const packageDirInStore = (0, dependency_path_1.depPathToFilename)(depPath).split("_")[0];
200253
200442
  pkgIndexFilePath = path_1.default.join(opts.storeDir, packageDirInStore, "integrity.json");
200254
200443
  } else {
200255
200444
  throw new error_1.PnpmError("UNSUPPORTED_PACKAGE_TYPE", `Unsupported package resolution type for ${depPath}`);
@@ -206863,6 +207052,12 @@ var require_patchRemove = __commonJS({
206863
207052
  const patchFile = path_1.default.join(lockfileDir, patchedDependencies[patch]);
206864
207053
  await promises_1.default.rm(patchFile, { force: true });
206865
207054
  delete rootProjectManifest.pnpm.patchedDependencies[patch];
207055
+ if (!Object.keys(rootProjectManifest.pnpm.patchedDependencies).length) {
207056
+ delete rootProjectManifest.pnpm.patchedDependencies;
207057
+ if (!Object.keys(rootProjectManifest.pnpm).length) {
207058
+ delete rootProjectManifest.pnpm;
207059
+ }
207060
+ }
206866
207061
  }
206867
207062
  }));
206868
207063
  await writeProjectManifest(rootProjectManifest);
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": "8.6.2",
4
+ "version": "8.6.3",
5
5
  "bin": {
6
6
  "pnpm": "bin/pnpm.cjs",
7
7
  "pnpx": "bin/pnpx.cjs"