altimate-code 0.8.10 → 0.9.1

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.
@@ -5949,7 +5949,7 @@ var require_python_bridge = __commonJS((exports, module) => {
5949
5949
  module.exports = pythonBridge.pythonBridge = pythonBridge;
5950
5950
  });
5951
5951
 
5952
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/identity.js
5952
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/identity.js
5953
5953
  var require_identity = __commonJS((exports) => {
5954
5954
  var ALIAS = Symbol.for("yaml.alias");
5955
5955
  var DOC = Symbol.for("yaml.document");
@@ -6003,7 +6003,7 @@ var require_identity = __commonJS((exports) => {
6003
6003
  exports.isSeq = isSeq;
6004
6004
  });
6005
6005
 
6006
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/visit.js
6006
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/visit.js
6007
6007
  var require_visit = __commonJS((exports) => {
6008
6008
  var identity = require_identity();
6009
6009
  var BREAK = Symbol("break visit");
@@ -6158,7 +6158,7 @@ var require_visit = __commonJS((exports) => {
6158
6158
  exports.visitAsync = visitAsync;
6159
6159
  });
6160
6160
 
6161
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/directives.js
6161
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/doc/directives.js
6162
6162
  var require_directives = __commonJS((exports) => {
6163
6163
  var identity = require_identity();
6164
6164
  var visit = require_visit();
@@ -6310,7 +6310,7 @@ var require_directives = __commonJS((exports) => {
6310
6310
  exports.Directives = Directives;
6311
6311
  });
6312
6312
 
6313
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/anchors.js
6313
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/doc/anchors.js
6314
6314
  var require_anchors = __commonJS((exports) => {
6315
6315
  var identity = require_identity();
6316
6316
  var visit = require_visit();
@@ -6372,7 +6372,7 @@ var require_anchors = __commonJS((exports) => {
6372
6372
  exports.findNewAnchor = findNewAnchor;
6373
6373
  });
6374
6374
 
6375
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/applyReviver.js
6375
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/doc/applyReviver.js
6376
6376
  var require_applyReviver = __commonJS((exports) => {
6377
6377
  function applyReviver(reviver, obj2, key, val) {
6378
6378
  if (val && typeof val === "object") {
@@ -6419,7 +6419,7 @@ var require_applyReviver = __commonJS((exports) => {
6419
6419
  exports.applyReviver = applyReviver;
6420
6420
  });
6421
6421
 
6422
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/toJS.js
6422
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/toJS.js
6423
6423
  var require_toJS = __commonJS((exports) => {
6424
6424
  var identity = require_identity();
6425
6425
  function toJS(value, arg, ctx) {
@@ -6446,7 +6446,7 @@ var require_toJS = __commonJS((exports) => {
6446
6446
  exports.toJS = toJS;
6447
6447
  });
6448
6448
 
6449
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Node.js
6449
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/Node.js
6450
6450
  var require_Node = __commonJS((exports) => {
6451
6451
  var applyReviver = require_applyReviver();
6452
6452
  var identity = require_identity();
@@ -6483,7 +6483,7 @@ var require_Node = __commonJS((exports) => {
6483
6483
  exports.NodeBase = NodeBase;
6484
6484
  });
6485
6485
 
6486
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Alias.js
6486
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/Alias.js
6487
6487
  var require_Alias = __commonJS((exports) => {
6488
6488
  var anchors = require_anchors();
6489
6489
  var visit = require_visit();
@@ -6502,6 +6502,8 @@ var require_Alias = __commonJS((exports) => {
6502
6502
  });
6503
6503
  }
6504
6504
  resolve(doc, ctx) {
6505
+ if (ctx?.maxAliasCount === 0)
6506
+ throw new ReferenceError("Alias resolution is disabled");
6505
6507
  let nodes;
6506
6508
  if (ctx?.aliasResolveCache) {
6507
6509
  nodes = ctx.aliasResolveCache;
@@ -6591,7 +6593,7 @@ var require_Alias = __commonJS((exports) => {
6591
6593
  exports.Alias = Alias;
6592
6594
  });
6593
6595
 
6594
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Scalar.js
6596
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/Scalar.js
6595
6597
  var require_Scalar = __commonJS((exports) => {
6596
6598
  var identity = require_identity();
6597
6599
  var Node = require_Node();
@@ -6619,7 +6621,7 @@ var require_Scalar = __commonJS((exports) => {
6619
6621
  exports.isScalarValue = isScalarValue;
6620
6622
  });
6621
6623
 
6622
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/createNode.js
6624
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/doc/createNode.js
6623
6625
  var require_createNode = __commonJS((exports) => {
6624
6626
  var Alias = require_Alias();
6625
6627
  var identity = require_identity();
@@ -6691,7 +6693,7 @@ var require_createNode = __commonJS((exports) => {
6691
6693
  exports.createNode = createNode;
6692
6694
  });
6693
6695
 
6694
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Collection.js
6696
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/Collection.js
6695
6697
  var require_Collection = __commonJS((exports) => {
6696
6698
  var createNode = require_createNode();
6697
6699
  var identity = require_identity();
@@ -6806,7 +6808,7 @@ var require_Collection = __commonJS((exports) => {
6806
6808
  exports.isEmptyPath = isEmptyPath;
6807
6809
  });
6808
6810
 
6809
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyComment.js
6811
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyComment.js
6810
6812
  var require_stringifyComment = __commonJS((exports) => {
6811
6813
  var stringifyComment = (str) => str.replace(/^(?!$)(?: $)?/gm, "#");
6812
6814
  function indentComment(comment, indent) {
@@ -6823,7 +6825,7 @@ var require_stringifyComment = __commonJS((exports) => {
6823
6825
  exports.stringifyComment = stringifyComment;
6824
6826
  });
6825
6827
 
6826
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/foldFlowLines.js
6828
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/foldFlowLines.js
6827
6829
  var require_foldFlowLines = __commonJS((exports) => {
6828
6830
  var FOLD_FLOW = "flow";
6829
6831
  var FOLD_BLOCK = "block";
@@ -6960,7 +6962,7 @@ ${indent}${text.slice(fold + 1, end2)}`;
6960
6962
  exports.foldFlowLines = foldFlowLines;
6961
6963
  });
6962
6964
 
6963
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyString.js
6965
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyString.js
6964
6966
  var require_stringifyString = __commonJS((exports) => {
6965
6967
  var Scalar = require_Scalar();
6966
6968
  var foldFlowLines = require_foldFlowLines();
@@ -7258,7 +7260,7 @@ ${indent}`);
7258
7260
  exports.stringifyString = stringifyString;
7259
7261
  });
7260
7262
 
7261
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringify.js
7263
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/stringify.js
7262
7264
  var require_stringify = __commonJS((exports) => {
7263
7265
  var anchors = require_anchors();
7264
7266
  var identity = require_identity();
@@ -7379,7 +7381,7 @@ ${ctx.indent}${str}`;
7379
7381
  exports.stringify = stringify;
7380
7382
  });
7381
7383
 
7382
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyPair.js
7384
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyPair.js
7383
7385
  var require_stringifyPair = __commonJS((exports) => {
7384
7386
  var identity = require_identity();
7385
7387
  var Scalar = require_Scalar();
@@ -7515,7 +7517,7 @@ ${ctx.indent}`;
7515
7517
  exports.stringifyPair = stringifyPair;
7516
7518
  });
7517
7519
 
7518
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/log.js
7520
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/log.js
7519
7521
  var require_log = __commonJS((exports) => {
7520
7522
  var node_process = __require("process");
7521
7523
  function debug(logLevel, ...messages) {
@@ -7534,7 +7536,7 @@ var require_log = __commonJS((exports) => {
7534
7536
  exports.warn = warn;
7535
7537
  });
7536
7538
 
7537
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/merge.js
7539
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/merge.js
7538
7540
  var require_merge = __commonJS((exports) => {
7539
7541
  var identity = require_identity();
7540
7542
  var Scalar = require_Scalar();
@@ -7551,18 +7553,18 @@ var require_merge = __commonJS((exports) => {
7551
7553
  };
7552
7554
  var isMergeKey = (ctx, key) => (merge.identify(key) || identity.isScalar(key) && (!key.type || key.type === Scalar.Scalar.PLAIN) && merge.identify(key.value)) && ctx?.doc.schema.tags.some((tag) => tag.tag === merge.tag && tag.default);
7553
7555
  function addMergeToJSMap(ctx, map, value) {
7554
- value = ctx && identity.isAlias(value) ? value.resolve(ctx.doc) : value;
7555
- if (identity.isSeq(value))
7556
- for (const it of value.items)
7556
+ const source = resolveAliasValue(ctx, value);
7557
+ if (identity.isSeq(source))
7558
+ for (const it of source.items)
7557
7559
  mergeValue(ctx, map, it);
7558
- else if (Array.isArray(value))
7559
- for (const it of value)
7560
+ else if (Array.isArray(source))
7561
+ for (const it of source)
7560
7562
  mergeValue(ctx, map, it);
7561
7563
  else
7562
- mergeValue(ctx, map, value);
7564
+ mergeValue(ctx, map, source);
7563
7565
  }
7564
7566
  function mergeValue(ctx, map, value) {
7565
- const source = ctx && identity.isAlias(value) ? value.resolve(ctx.doc) : value;
7567
+ const source = resolveAliasValue(ctx, value);
7566
7568
  if (!identity.isMap(source))
7567
7569
  throw new Error("Merge sources must be maps or map aliases");
7568
7570
  const srcMap = source.toJSON(null, ctx, Map);
@@ -7583,12 +7585,15 @@ var require_merge = __commonJS((exports) => {
7583
7585
  }
7584
7586
  return map;
7585
7587
  }
7588
+ function resolveAliasValue(ctx, value) {
7589
+ return ctx && identity.isAlias(value) ? value.resolve(ctx.doc, ctx) : value;
7590
+ }
7586
7591
  exports.addMergeToJSMap = addMergeToJSMap;
7587
7592
  exports.isMergeKey = isMergeKey;
7588
7593
  exports.merge = merge;
7589
7594
  });
7590
7595
 
7591
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/addPairToJSMap.js
7596
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/addPairToJSMap.js
7592
7597
  var require_addPairToJSMap = __commonJS((exports) => {
7593
7598
  var log = require_log();
7594
7599
  var merge = require_merge();
@@ -7649,7 +7654,7 @@ var require_addPairToJSMap = __commonJS((exports) => {
7649
7654
  exports.addPairToJSMap = addPairToJSMap;
7650
7655
  });
7651
7656
 
7652
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/Pair.js
7657
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/Pair.js
7653
7658
  var require_Pair = __commonJS((exports) => {
7654
7659
  var createNode = require_createNode();
7655
7660
  var stringifyPair = require_stringifyPair();
@@ -7687,7 +7692,7 @@ var require_Pair = __commonJS((exports) => {
7687
7692
  exports.createPair = createPair;
7688
7693
  });
7689
7694
 
7690
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyCollection.js
7695
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyCollection.js
7691
7696
  var require_stringifyCollection = __commonJS((exports) => {
7692
7697
  var identity = require_identity();
7693
7698
  var stringify = require_stringify();
@@ -7839,7 +7844,7 @@ ${indent}${end}`;
7839
7844
  exports.stringifyCollection = stringifyCollection;
7840
7845
  });
7841
7846
 
7842
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLMap.js
7847
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/YAMLMap.js
7843
7848
  var require_YAMLMap = __commonJS((exports) => {
7844
7849
  var stringifyCollection = require_stringifyCollection();
7845
7850
  var addPairToJSMap = require_addPairToJSMap();
@@ -7966,7 +7971,7 @@ var require_YAMLMap = __commonJS((exports) => {
7966
7971
  exports.findPair = findPair;
7967
7972
  });
7968
7973
 
7969
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/map.js
7974
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/common/map.js
7970
7975
  var require_map2 = __commonJS((exports) => {
7971
7976
  var identity = require_identity();
7972
7977
  var YAMLMap = require_YAMLMap();
@@ -7985,7 +7990,7 @@ var require_map2 = __commonJS((exports) => {
7985
7990
  exports.map = map;
7986
7991
  });
7987
7992
 
7988
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/nodes/YAMLSeq.js
7993
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/nodes/YAMLSeq.js
7989
7994
  var require_YAMLSeq = __commonJS((exports) => {
7990
7995
  var createNode = require_createNode();
7991
7996
  var stringifyCollection = require_stringifyCollection();
@@ -8078,7 +8083,7 @@ var require_YAMLSeq = __commonJS((exports) => {
8078
8083
  exports.YAMLSeq = YAMLSeq;
8079
8084
  });
8080
8085
 
8081
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/seq.js
8086
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/common/seq.js
8082
8087
  var require_seq = __commonJS((exports) => {
8083
8088
  var identity = require_identity();
8084
8089
  var YAMLSeq = require_YAMLSeq();
@@ -8097,7 +8102,7 @@ var require_seq = __commonJS((exports) => {
8097
8102
  exports.seq = seq;
8098
8103
  });
8099
8104
 
8100
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/string.js
8105
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/common/string.js
8101
8106
  var require_string = __commonJS((exports) => {
8102
8107
  var stringifyString = require_stringifyString();
8103
8108
  var string = {
@@ -8113,7 +8118,7 @@ var require_string = __commonJS((exports) => {
8113
8118
  exports.string = string;
8114
8119
  });
8115
8120
 
8116
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/common/null.js
8121
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/common/null.js
8117
8122
  var require_null = __commonJS((exports) => {
8118
8123
  var Scalar = require_Scalar();
8119
8124
  var nullTag = {
@@ -8128,7 +8133,7 @@ var require_null = __commonJS((exports) => {
8128
8133
  exports.nullTag = nullTag;
8129
8134
  });
8130
8135
 
8131
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/bool.js
8136
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/core/bool.js
8132
8137
  var require_bool = __commonJS((exports) => {
8133
8138
  var Scalar = require_Scalar();
8134
8139
  var boolTag = {
@@ -8149,7 +8154,7 @@ var require_bool = __commonJS((exports) => {
8149
8154
  exports.boolTag = boolTag;
8150
8155
  });
8151
8156
 
8152
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyNumber.js
8157
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyNumber.js
8153
8158
  var require_stringifyNumber = __commonJS((exports) => {
8154
8159
  function stringifyNumber({ format, minFractionDigits, tag, value }) {
8155
8160
  if (typeof value === "bigint")
@@ -8158,7 +8163,7 @@ var require_stringifyNumber = __commonJS((exports) => {
8158
8163
  if (!isFinite(num))
8159
8164
  return isNaN(num) ? ".nan" : num < 0 ? "-.inf" : ".inf";
8160
8165
  let n = Object.is(value, -0) ? "-0" : JSON.stringify(value);
8161
- if (!format && minFractionDigits && (!tag || tag === "tag:yaml.org,2002:float") && /^\d/.test(n)) {
8166
+ if (!format && minFractionDigits && (!tag || tag === "tag:yaml.org,2002:float") && /^-?\d/.test(n) && !n.includes("e")) {
8162
8167
  let i = n.indexOf(".");
8163
8168
  if (i < 0) {
8164
8169
  i = n.length;
@@ -8173,7 +8178,7 @@ var require_stringifyNumber = __commonJS((exports) => {
8173
8178
  exports.stringifyNumber = stringifyNumber;
8174
8179
  });
8175
8180
 
8176
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/float.js
8181
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/core/float.js
8177
8182
  var require_float = __commonJS((exports) => {
8178
8183
  var Scalar = require_Scalar();
8179
8184
  var stringifyNumber = require_stringifyNumber();
@@ -8216,7 +8221,7 @@ var require_float = __commonJS((exports) => {
8216
8221
  exports.floatNaN = floatNaN;
8217
8222
  });
8218
8223
 
8219
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/int.js
8224
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/core/int.js
8220
8225
  var require_int = __commonJS((exports) => {
8221
8226
  var stringifyNumber = require_stringifyNumber();
8222
8227
  var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
@@ -8258,7 +8263,7 @@ var require_int = __commonJS((exports) => {
8258
8263
  exports.intOct = intOct;
8259
8264
  });
8260
8265
 
8261
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/core/schema.js
8266
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/core/schema.js
8262
8267
  var require_schema = __commonJS((exports) => {
8263
8268
  var map = require_map2();
8264
8269
  var _null = require_null();
@@ -8283,7 +8288,7 @@ var require_schema = __commonJS((exports) => {
8283
8288
  exports.schema = schema;
8284
8289
  });
8285
8290
 
8286
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/json/schema.js
8291
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/json/schema.js
8287
8292
  var require_schema2 = __commonJS((exports) => {
8288
8293
  var Scalar = require_Scalar();
8289
8294
  var map = require_map2();
@@ -8347,7 +8352,7 @@ var require_schema2 = __commonJS((exports) => {
8347
8352
  exports.schema = schema;
8348
8353
  });
8349
8354
 
8350
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/binary.js
8355
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/binary.js
8351
8356
  var require_binary = __commonJS((exports) => {
8352
8357
  var node_buffer = __require("buffer");
8353
8358
  var Scalar = require_Scalar();
@@ -8402,7 +8407,7 @@ var require_binary = __commonJS((exports) => {
8402
8407
  exports.binary = binary;
8403
8408
  });
8404
8409
 
8405
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
8410
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/pairs.js
8406
8411
  var require_pairs = __commonJS((exports) => {
8407
8412
  var identity = require_identity();
8408
8413
  var Pair = require_Pair();
@@ -8477,7 +8482,7 @@ ${cn.comment}` : item.comment;
8477
8482
  exports.resolvePairs = resolvePairs;
8478
8483
  });
8479
8484
 
8480
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/omap.js
8485
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/omap.js
8481
8486
  var require_omap = __commonJS((exports) => {
8482
8487
  var identity = require_identity();
8483
8488
  var toJS = require_toJS();
@@ -8549,7 +8554,7 @@ var require_omap = __commonJS((exports) => {
8549
8554
  exports.omap = omap;
8550
8555
  });
8551
8556
 
8552
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/bool.js
8557
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/bool.js
8553
8558
  var require_bool2 = __commonJS((exports) => {
8554
8559
  var Scalar = require_Scalar();
8555
8560
  function boolStringify({ value, source }, ctx) {
@@ -8578,7 +8583,7 @@ var require_bool2 = __commonJS((exports) => {
8578
8583
  exports.trueTag = trueTag;
8579
8584
  });
8580
8585
 
8581
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/float.js
8586
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/float.js
8582
8587
  var require_float2 = __commonJS((exports) => {
8583
8588
  var Scalar = require_Scalar();
8584
8589
  var stringifyNumber = require_stringifyNumber();
@@ -8624,7 +8629,7 @@ var require_float2 = __commonJS((exports) => {
8624
8629
  exports.floatNaN = floatNaN;
8625
8630
  });
8626
8631
 
8627
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/int.js
8632
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/int.js
8628
8633
  var require_int2 = __commonJS((exports) => {
8629
8634
  var stringifyNumber = require_stringifyNumber();
8630
8635
  var intIdentify = (value) => typeof value === "bigint" || Number.isInteger(value);
@@ -8700,7 +8705,7 @@ var require_int2 = __commonJS((exports) => {
8700
8705
  exports.intOct = intOct;
8701
8706
  });
8702
8707
 
8703
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/set.js
8708
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/set.js
8704
8709
  var require_set = __commonJS((exports) => {
8705
8710
  var identity = require_identity();
8706
8711
  var Pair = require_Pair();
@@ -8783,7 +8788,7 @@ var require_set = __commonJS((exports) => {
8783
8788
  exports.set = set;
8784
8789
  });
8785
8790
 
8786
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
8791
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/timestamp.js
8787
8792
  var require_timestamp = __commonJS((exports) => {
8788
8793
  var stringifyNumber = require_stringifyNumber();
8789
8794
  function parseSexagesimal(str, asBigInt) {
@@ -8865,7 +8870,7 @@ var require_timestamp = __commonJS((exports) => {
8865
8870
  exports.timestamp = timestamp;
8866
8871
  });
8867
8872
 
8868
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/yaml-1.1/schema.js
8873
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/yaml-1.1/schema.js
8869
8874
  var require_schema3 = __commonJS((exports) => {
8870
8875
  var map = require_map2();
8871
8876
  var _null = require_null();
@@ -8906,7 +8911,7 @@ var require_schema3 = __commonJS((exports) => {
8906
8911
  exports.schema = schema;
8907
8912
  });
8908
8913
 
8909
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/tags.js
8914
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/tags.js
8910
8915
  var require_tags = __commonJS((exports) => {
8911
8916
  var map = require_map2();
8912
8917
  var _null = require_null();
@@ -8997,7 +9002,7 @@ var require_tags = __commonJS((exports) => {
8997
9002
  exports.getTags = getTags;
8998
9003
  });
8999
9004
 
9000
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/schema/Schema.js
9005
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/schema/Schema.js
9001
9006
  var require_Schema = __commonJS((exports) => {
9002
9007
  var identity = require_identity();
9003
9008
  var map = require_map2();
@@ -9027,7 +9032,7 @@ var require_Schema = __commonJS((exports) => {
9027
9032
  exports.Schema = Schema;
9028
9033
  });
9029
9034
 
9030
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/stringify/stringifyDocument.js
9035
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/stringify/stringifyDocument.js
9031
9036
  var require_stringifyDocument = __commonJS((exports) => {
9032
9037
  var identity = require_identity();
9033
9038
  var stringify = require_stringify();
@@ -9107,7 +9112,7 @@ var require_stringifyDocument = __commonJS((exports) => {
9107
9112
  exports.stringifyDocument = stringifyDocument;
9108
9113
  });
9109
9114
 
9110
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/doc/Document.js
9115
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/doc/Document.js
9111
9116
  var require_Document = __commonJS((exports) => {
9112
9117
  var Alias = require_Alias();
9113
9118
  var Collection = require_Collection();
@@ -9342,7 +9347,7 @@ var require_Document = __commonJS((exports) => {
9342
9347
  exports.Document = Document;
9343
9348
  });
9344
9349
 
9345
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/errors.js
9350
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/errors.js
9346
9351
  var require_errors2 = __commonJS((exports) => {
9347
9352
  class YAMLError extends Error {
9348
9353
  constructor(name, pos, code2, message) {
@@ -9407,7 +9412,7 @@ ${pointer}
9407
9412
  exports.prettifyError = prettifyError;
9408
9413
  });
9409
9414
 
9410
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-props.js
9415
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/resolve-props.js
9411
9416
  var require_resolve_props = __commonJS((exports) => {
9412
9417
  function resolveProps(tokens, { flow, indicator, next, offset, onError, parentIndent, startOnNewline }) {
9413
9418
  let spaceBefore = false;
@@ -9537,7 +9542,7 @@ var require_resolve_props = __commonJS((exports) => {
9537
9542
  exports.resolveProps = resolveProps;
9538
9543
  });
9539
9544
 
9540
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-contains-newline.js
9545
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/util-contains-newline.js
9541
9546
  var require_util_contains_newline = __commonJS((exports) => {
9542
9547
  function containsNewline(key) {
9543
9548
  if (!key)
@@ -9577,7 +9582,7 @@ var require_util_contains_newline = __commonJS((exports) => {
9577
9582
  exports.containsNewline = containsNewline;
9578
9583
  });
9579
9584
 
9580
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-flow-indent-check.js
9585
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/util-flow-indent-check.js
9581
9586
  var require_util_flow_indent_check = __commonJS((exports) => {
9582
9587
  var utilContainsNewline = require_util_contains_newline();
9583
9588
  function flowIndentCheck(indent, fc, onError) {
@@ -9592,7 +9597,7 @@ var require_util_flow_indent_check = __commonJS((exports) => {
9592
9597
  exports.flowIndentCheck = flowIndentCheck;
9593
9598
  });
9594
9599
 
9595
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-map-includes.js
9600
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/util-map-includes.js
9596
9601
  var require_util_map_includes = __commonJS((exports) => {
9597
9602
  var identity = require_identity();
9598
9603
  function mapIncludes(ctx, items, search) {
@@ -9605,7 +9610,7 @@ var require_util_map_includes = __commonJS((exports) => {
9605
9610
  exports.mapIncludes = mapIncludes;
9606
9611
  });
9607
9612
 
9608
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-map.js
9613
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/resolve-block-map.js
9609
9614
  var require_resolve_block_map = __commonJS((exports) => {
9610
9615
  var Pair = require_Pair();
9611
9616
  var YAMLMap = require_YAMLMap();
@@ -9712,7 +9717,7 @@ var require_resolve_block_map = __commonJS((exports) => {
9712
9717
  exports.resolveBlockMap = resolveBlockMap;
9713
9718
  });
9714
9719
 
9715
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-seq.js
9720
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/resolve-block-seq.js
9716
9721
  var require_resolve_block_seq = __commonJS((exports) => {
9717
9722
  var YAMLSeq = require_YAMLSeq();
9718
9723
  var resolveProps = require_resolve_props();
@@ -9760,7 +9765,7 @@ var require_resolve_block_seq = __commonJS((exports) => {
9760
9765
  exports.resolveBlockSeq = resolveBlockSeq;
9761
9766
  });
9762
9767
 
9763
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-end.js
9768
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/resolve-end.js
9764
9769
  var require_resolve_end = __commonJS((exports) => {
9765
9770
  function resolveEnd(end, offset, reqSpace, onError) {
9766
9771
  let comment = "";
@@ -9800,7 +9805,7 @@ var require_resolve_end = __commonJS((exports) => {
9800
9805
  exports.resolveEnd = resolveEnd;
9801
9806
  });
9802
9807
 
9803
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-collection.js
9808
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/resolve-flow-collection.js
9804
9809
  var require_resolve_flow_collection = __commonJS((exports) => {
9805
9810
  var identity = require_identity();
9806
9811
  var Pair = require_Pair();
@@ -9991,7 +9996,7 @@ var require_resolve_flow_collection = __commonJS((exports) => {
9991
9996
  exports.resolveFlowCollection = resolveFlowCollection;
9992
9997
  });
9993
9998
 
9994
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-collection.js
9999
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/compose-collection.js
9995
10000
  var require_compose_collection = __commonJS((exports) => {
9996
10001
  var identity = require_identity();
9997
10002
  var Scalar = require_Scalar();
@@ -10053,7 +10058,7 @@ var require_compose_collection = __commonJS((exports) => {
10053
10058
  exports.composeCollection = composeCollection;
10054
10059
  });
10055
10060
 
10056
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-block-scalar.js
10061
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/resolve-block-scalar.js
10057
10062
  var require_resolve_block_scalar = __commonJS((exports) => {
10058
10063
  var Scalar = require_Scalar();
10059
10064
  function resolveBlockScalar(ctx, scalar, onError) {
@@ -10246,7 +10251,7 @@ var require_resolve_block_scalar = __commonJS((exports) => {
10246
10251
  exports.resolveBlockScalar = resolveBlockScalar;
10247
10252
  });
10248
10253
 
10249
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/resolve-flow-scalar.js
10254
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/resolve-flow-scalar.js
10250
10255
  var require_resolve_flow_scalar = __commonJS((exports) => {
10251
10256
  var Scalar = require_Scalar();
10252
10257
  var resolveEnd = require_resolve_end();
@@ -10383,7 +10388,7 @@ var require_resolve_flow_scalar = __commonJS((exports) => {
10383
10388
  while (next === " " || next === "\t")
10384
10389
  next = source[++i + 1];
10385
10390
  } else if (next === "x" || next === "u" || next === "U") {
10386
- const length = { x: 2, u: 4, U: 8 }[next];
10391
+ const length = next === "x" ? 2 : next === "u" ? 4 : 8;
10387
10392
  res += parseCharCode(source, i + 1, length, onError);
10388
10393
  i += length;
10389
10394
  } else {
@@ -10452,17 +10457,18 @@ var require_resolve_flow_scalar = __commonJS((exports) => {
10452
10457
  const cc = source.substr(offset, length);
10453
10458
  const ok = cc.length === length && /^[0-9a-fA-F]+$/.test(cc);
10454
10459
  const code2 = ok ? parseInt(cc, 16) : NaN;
10455
- if (isNaN(code2)) {
10460
+ try {
10461
+ return String.fromCodePoint(code2);
10462
+ } catch {
10456
10463
  const raw = source.substr(offset - 2, length + 2);
10457
10464
  onError(offset - 2, "BAD_DQ_ESCAPE", `Invalid escape sequence ${raw}`);
10458
10465
  return raw;
10459
10466
  }
10460
- return String.fromCodePoint(code2);
10461
10467
  }
10462
10468
  exports.resolveFlowScalar = resolveFlowScalar;
10463
10469
  });
10464
10470
 
10465
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-scalar.js
10471
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/compose-scalar.js
10466
10472
  var require_compose_scalar = __commonJS((exports) => {
10467
10473
  var identity = require_identity();
10468
10474
  var Scalar = require_Scalar();
@@ -10540,7 +10546,7 @@ var require_compose_scalar = __commonJS((exports) => {
10540
10546
  exports.composeScalar = composeScalar;
10541
10547
  });
10542
10548
 
10543
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/util-empty-scalar-position.js
10549
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/util-empty-scalar-position.js
10544
10550
  var require_util_empty_scalar_position = __commonJS((exports) => {
10545
10551
  function emptyScalarPosition(offset, before, pos) {
10546
10552
  if (before) {
@@ -10567,7 +10573,7 @@ var require_util_empty_scalar_position = __commonJS((exports) => {
10567
10573
  exports.emptyScalarPosition = emptyScalarPosition;
10568
10574
  });
10569
10575
 
10570
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-node.js
10576
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/compose-node.js
10571
10577
  var require_compose_node = __commonJS((exports) => {
10572
10578
  var Alias = require_Alias();
10573
10579
  var identity = require_identity();
@@ -10670,7 +10676,7 @@ var require_compose_node = __commonJS((exports) => {
10670
10676
  exports.composeNode = composeNode;
10671
10677
  });
10672
10678
 
10673
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/compose-doc.js
10679
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/compose-doc.js
10674
10680
  var require_compose_doc = __commonJS((exports) => {
10675
10681
  var Document = require_Document();
10676
10682
  var composeNode = require_compose_node();
@@ -10710,7 +10716,7 @@ var require_compose_doc = __commonJS((exports) => {
10710
10716
  exports.composeDoc = composeDoc;
10711
10717
  });
10712
10718
 
10713
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/compose/composer.js
10719
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/compose/composer.js
10714
10720
  var require_composer = __commonJS((exports) => {
10715
10721
  var node_process = __require("process");
10716
10722
  var directives = require_directives();
@@ -10796,8 +10802,10 @@ ${cb}` : comment;
10796
10802
  }
10797
10803
  }
10798
10804
  if (afterDoc) {
10799
- Array.prototype.push.apply(doc.errors, this.errors);
10800
- Array.prototype.push.apply(doc.warnings, this.warnings);
10805
+ for (let i = 0;i < this.errors.length; ++i)
10806
+ doc.errors.push(this.errors[i]);
10807
+ for (let i = 0;i < this.warnings.length; ++i)
10808
+ doc.warnings.push(this.warnings[i]);
10801
10809
  } else {
10802
10810
  doc.errors = this.errors;
10803
10811
  doc.warnings = this.warnings;
@@ -10899,7 +10907,7 @@ ${end.comment}` : end.comment;
10899
10907
  exports.Composer = Composer;
10900
10908
  });
10901
10909
 
10902
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-scalar.js
10910
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/parse/cst-scalar.js
10903
10911
  var require_cst_scalar = __commonJS((exports) => {
10904
10912
  var resolveBlockScalar = require_resolve_block_scalar();
10905
10913
  var resolveFlowScalar = require_resolve_flow_scalar();
@@ -11089,7 +11097,7 @@ var require_cst_scalar = __commonJS((exports) => {
11089
11097
  exports.setScalarValue = setScalarValue;
11090
11098
  });
11091
11099
 
11092
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-stringify.js
11100
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/parse/cst-stringify.js
11093
11101
  var require_cst_stringify = __commonJS((exports) => {
11094
11102
  var stringify = (cst) => ("type" in cst) ? stringifyToken(cst) : stringifyItem(cst);
11095
11103
  function stringifyToken(token) {
@@ -11147,7 +11155,7 @@ var require_cst_stringify = __commonJS((exports) => {
11147
11155
  exports.stringify = stringify;
11148
11156
  });
11149
11157
 
11150
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst-visit.js
11158
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/parse/cst-visit.js
11151
11159
  var require_cst_visit = __commonJS((exports) => {
11152
11160
  var BREAK = Symbol("break visit");
11153
11161
  var SKIP = Symbol("skip children");
@@ -11206,7 +11214,7 @@ var require_cst_visit = __commonJS((exports) => {
11206
11214
  exports.visit = visit;
11207
11215
  });
11208
11216
 
11209
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/cst.js
11217
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/parse/cst.js
11210
11218
  var require_cst = __commonJS((exports) => {
11211
11219
  var cstScalar = require_cst_scalar();
11212
11220
  var cstStringify = require_cst_stringify();
@@ -11307,7 +11315,7 @@ var require_cst = __commonJS((exports) => {
11307
11315
  exports.tokenType = tokenType;
11308
11316
  });
11309
11317
 
11310
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/lexer.js
11318
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/parse/lexer.js
11311
11319
  var require_lexer = __commonJS((exports) => {
11312
11320
  var cst = require_cst();
11313
11321
  function isEmpty(ch) {
@@ -11509,7 +11517,7 @@ var require_lexer = __commonJS((exports) => {
11509
11517
  const n = (yield* this.pushCount(1)) + (yield* this.pushSpaces(true));
11510
11518
  this.indentNext = this.indentValue + 1;
11511
11519
  this.indentValue += n;
11512
- return yield* this.parseBlockStart();
11520
+ return "block-start";
11513
11521
  }
11514
11522
  return "doc";
11515
11523
  }
@@ -11816,26 +11824,37 @@ var require_lexer = __commonJS((exports) => {
11816
11824
  return 0;
11817
11825
  }
11818
11826
  *pushIndicators() {
11819
- switch (this.charAt(0)) {
11820
- case "!":
11821
- return (yield* this.pushTag()) + (yield* this.pushSpaces(true)) + (yield* this.pushIndicators());
11822
- case "&":
11823
- return (yield* this.pushUntil(isNotAnchorChar)) + (yield* this.pushSpaces(true)) + (yield* this.pushIndicators());
11824
- case "-":
11825
- case "?":
11826
- case ":": {
11827
- const inFlow = this.flowLevel > 0;
11828
- const ch1 = this.charAt(1);
11829
- if (isEmpty(ch1) || inFlow && flowIndicatorChars.has(ch1)) {
11830
- if (!inFlow)
11831
- this.indentNext = this.indentValue + 1;
11832
- else if (this.flowKey)
11833
- this.flowKey = false;
11834
- return (yield* this.pushCount(1)) + (yield* this.pushSpaces(true)) + (yield* this.pushIndicators());
11827
+ let n = 0;
11828
+ loop:
11829
+ while (true) {
11830
+ switch (this.charAt(0)) {
11831
+ case "!":
11832
+ n += yield* this.pushTag();
11833
+ n += yield* this.pushSpaces(true);
11834
+ continue loop;
11835
+ case "&":
11836
+ n += yield* this.pushUntil(isNotAnchorChar);
11837
+ n += yield* this.pushSpaces(true);
11838
+ continue loop;
11839
+ case "-":
11840
+ case "?":
11841
+ case ":": {
11842
+ const inFlow = this.flowLevel > 0;
11843
+ const ch1 = this.charAt(1);
11844
+ if (isEmpty(ch1) || inFlow && flowIndicatorChars.has(ch1)) {
11845
+ if (!inFlow)
11846
+ this.indentNext = this.indentValue + 1;
11847
+ else if (this.flowKey)
11848
+ this.flowKey = false;
11849
+ n += yield* this.pushCount(1);
11850
+ n += yield* this.pushSpaces(true);
11851
+ continue loop;
11852
+ }
11853
+ }
11835
11854
  }
11855
+ break loop;
11836
11856
  }
11837
- }
11838
- return 0;
11857
+ return n;
11839
11858
  }
11840
11859
  *pushTag() {
11841
11860
  if (this.charAt(1) === "<") {
@@ -11893,7 +11912,7 @@ var require_lexer = __commonJS((exports) => {
11893
11912
  exports.Lexer = Lexer;
11894
11913
  });
11895
11914
 
11896
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/line-counter.js
11915
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/parse/line-counter.js
11897
11916
  var require_line_counter = __commonJS((exports) => {
11898
11917
  class LineCounter {
11899
11918
  constructor() {
@@ -11921,7 +11940,7 @@ var require_line_counter = __commonJS((exports) => {
11921
11940
  exports.LineCounter = LineCounter;
11922
11941
  });
11923
11942
 
11924
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/parse/parser.js
11943
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/parse/parser.js
11925
11944
  var require_parser = __commonJS((exports) => {
11926
11945
  var node_process = __require("process");
11927
11946
  var cst = require_cst();
@@ -11989,6 +12008,13 @@ var require_parser = __commonJS((exports) => {
11989
12008
  while (prev[++i]?.type === "space") {}
11990
12009
  return prev.splice(i, prev.length);
11991
12010
  }
12011
+ function arrayPushArray(target, source) {
12012
+ if (source.length < 1e5)
12013
+ Array.prototype.push.apply(target, source);
12014
+ else
12015
+ for (let i = 0;i < source.length; ++i)
12016
+ target.push(source[i]);
12017
+ }
11992
12018
  function fixFlowSeqItems(fc) {
11993
12019
  if (fc.start.type === "flow-seq-start") {
11994
12020
  for (const it of fc.items) {
@@ -11998,11 +12024,11 @@ var require_parser = __commonJS((exports) => {
11998
12024
  delete it.key;
11999
12025
  if (isFlowToken(it.value)) {
12000
12026
  if (it.value.end)
12001
- Array.prototype.push.apply(it.value.end, it.sep);
12027
+ arrayPushArray(it.value.end, it.sep);
12002
12028
  else
12003
12029
  it.value.end = it.sep;
12004
12030
  } else
12005
- Array.prototype.push.apply(it.start, it.sep);
12031
+ arrayPushArray(it.start, it.sep);
12006
12032
  delete it.sep;
12007
12033
  }
12008
12034
  }
@@ -12342,7 +12368,7 @@ var require_parser = __commonJS((exports) => {
12342
12368
  const prev = map.items[map.items.length - 2];
12343
12369
  const end = prev?.value?.end;
12344
12370
  if (Array.isArray(end)) {
12345
- Array.prototype.push.apply(end, it.start);
12371
+ arrayPushArray(end, it.start);
12346
12372
  end.push(this.sourceToken);
12347
12373
  map.items.pop();
12348
12374
  return;
@@ -12530,7 +12556,7 @@ var require_parser = __commonJS((exports) => {
12530
12556
  const prev = seq.items[seq.items.length - 2];
12531
12557
  const end = prev?.value?.end;
12532
12558
  if (Array.isArray(end)) {
12533
- Array.prototype.push.apply(end, it.start);
12559
+ arrayPushArray(end, it.start);
12534
12560
  end.push(this.sourceToken);
12535
12561
  seq.items.pop();
12536
12562
  return;
@@ -12770,7 +12796,7 @@ var require_parser = __commonJS((exports) => {
12770
12796
  exports.Parser = Parser;
12771
12797
  });
12772
12798
 
12773
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/public-api.js
12799
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/public-api.js
12774
12800
  var require_public_api = __commonJS((exports) => {
12775
12801
  var composer = require_composer();
12776
12802
  var Document = require_Document();
@@ -12864,7 +12890,7 @@ var require_public_api = __commonJS((exports) => {
12864
12890
  exports.stringify = stringify;
12865
12891
  });
12866
12892
 
12867
- // ../../node_modules/.bun/yaml@2.8.3/node_modules/yaml/dist/index.js
12893
+ // ../../node_modules/.bun/yaml@2.9.0/node_modules/yaml/dist/index.js
12868
12894
  var composer, Document, Schema, errors, Alias, identity, Pair, Scalar, YAMLMap, YAMLSeq, cst, lexer, lineCounter, parser, publicApi, visit, $Composer, $Document, $Schema, $YAMLError, $YAMLParseError, $YAMLWarning, $Alias, $isAlias, $isCollection, $isDocument, $isMap, $isNode, $isPair, $isScalar, $isSeq, $Pair, $Scalar, $YAMLMap, $YAMLSeq, $Lexer, $LineCounter, $Parser, $parse, $parseAllDocuments, $parseDocument, $stringify, $visit, $visitAsync;
12869
12895
  var init_dist = __esm(() => {
12870
12896
  composer = require_composer();
@@ -12913,7 +12939,7 @@ var init_dist = __esm(() => {
12913
12939
  $visitAsync = visit.visitAsync;
12914
12940
  });
12915
12941
 
12916
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/internal/constants.js
12942
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/internal/constants.js
12917
12943
  var require_constants = __commonJS((exports, module) => {
12918
12944
  var SEMVER_SPEC_VERSION = "2.0.0";
12919
12945
  var MAX_LENGTH = 256;
@@ -12941,13 +12967,13 @@ var require_constants = __commonJS((exports, module) => {
12941
12967
  };
12942
12968
  });
12943
12969
 
12944
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/internal/debug.js
12970
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/internal/debug.js
12945
12971
  var require_debug = __commonJS((exports, module) => {
12946
12972
  var debug = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {};
12947
12973
  module.exports = debug;
12948
12974
  });
12949
12975
 
12950
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/internal/re.js
12976
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/internal/re.js
12951
12977
  var require_re = __commonJS((exports, module) => {
12952
12978
  var {
12953
12979
  MAX_SAFE_COMPONENT_LENGTH,
@@ -13032,7 +13058,7 @@ var require_re = __commonJS((exports, module) => {
13032
13058
  createToken("GTE0PRE", "^\\s*>=\\s*0\\.0\\.0-0\\s*$");
13033
13059
  });
13034
13060
 
13035
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/internal/parse-options.js
13061
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/internal/parse-options.js
13036
13062
  var require_parse_options = __commonJS((exports, module) => {
13037
13063
  var looseOption = Object.freeze({ loose: true });
13038
13064
  var emptyOpts = Object.freeze({});
@@ -13048,7 +13074,7 @@ var require_parse_options = __commonJS((exports, module) => {
13048
13074
  module.exports = parseOptions;
13049
13075
  });
13050
13076
 
13051
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/internal/identifiers.js
13077
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/internal/identifiers.js
13052
13078
  var require_identifiers = __commonJS((exports, module) => {
13053
13079
  var numeric = /^[0-9]+$/;
13054
13080
  var compareIdentifiers = (a, b) => {
@@ -13070,7 +13096,7 @@ var require_identifiers = __commonJS((exports, module) => {
13070
13096
  };
13071
13097
  });
13072
13098
 
13073
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/classes/semver.js
13099
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/classes/semver.js
13074
13100
  var require_semver = __commonJS((exports, module) => {
13075
13101
  var debug = require_debug();
13076
13102
  var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants();
@@ -13339,7 +13365,7 @@ var require_semver = __commonJS((exports, module) => {
13339
13365
  module.exports = SemVer;
13340
13366
  });
13341
13367
 
13342
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/parse.js
13368
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/parse.js
13343
13369
  var require_parse = __commonJS((exports, module) => {
13344
13370
  var SemVer = require_semver();
13345
13371
  var parse = (version, options2, throwErrors = false) => {
@@ -13358,7 +13384,7 @@ var require_parse = __commonJS((exports, module) => {
13358
13384
  module.exports = parse;
13359
13385
  });
13360
13386
 
13361
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/valid.js
13387
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/valid.js
13362
13388
  var require_valid = __commonJS((exports, module) => {
13363
13389
  var parse = require_parse();
13364
13390
  var valid = (version, options2) => {
@@ -13368,7 +13394,7 @@ var require_valid = __commonJS((exports, module) => {
13368
13394
  module.exports = valid;
13369
13395
  });
13370
13396
 
13371
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/clean.js
13397
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/clean.js
13372
13398
  var require_clean = __commonJS((exports, module) => {
13373
13399
  var parse = require_parse();
13374
13400
  var clean = (version, options2) => {
@@ -13378,7 +13404,7 @@ var require_clean = __commonJS((exports, module) => {
13378
13404
  module.exports = clean;
13379
13405
  });
13380
13406
 
13381
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/inc.js
13407
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/inc.js
13382
13408
  var require_inc = __commonJS((exports, module) => {
13383
13409
  var SemVer = require_semver();
13384
13410
  var inc = (version, release, options2, identifier, identifierBase) => {
@@ -13396,7 +13422,7 @@ var require_inc = __commonJS((exports, module) => {
13396
13422
  module.exports = inc;
13397
13423
  });
13398
13424
 
13399
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/diff.js
13425
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/diff.js
13400
13426
  var require_diff = __commonJS((exports, module) => {
13401
13427
  var parse = require_parse();
13402
13428
  var diff = (version1, version2) => {
@@ -13437,28 +13463,28 @@ var require_diff = __commonJS((exports, module) => {
13437
13463
  module.exports = diff;
13438
13464
  });
13439
13465
 
13440
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/major.js
13466
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/major.js
13441
13467
  var require_major = __commonJS((exports, module) => {
13442
13468
  var SemVer = require_semver();
13443
13469
  var major = (a, loose) => new SemVer(a, loose).major;
13444
13470
  module.exports = major;
13445
13471
  });
13446
13472
 
13447
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/minor.js
13473
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/minor.js
13448
13474
  var require_minor = __commonJS((exports, module) => {
13449
13475
  var SemVer = require_semver();
13450
13476
  var minor = (a, loose) => new SemVer(a, loose).minor;
13451
13477
  module.exports = minor;
13452
13478
  });
13453
13479
 
13454
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/patch.js
13480
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/patch.js
13455
13481
  var require_patch = __commonJS((exports, module) => {
13456
13482
  var SemVer = require_semver();
13457
13483
  var patch = (a, loose) => new SemVer(a, loose).patch;
13458
13484
  module.exports = patch;
13459
13485
  });
13460
13486
 
13461
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/prerelease.js
13487
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/prerelease.js
13462
13488
  var require_prerelease = __commonJS((exports, module) => {
13463
13489
  var parse = require_parse();
13464
13490
  var prerelease = (version, options2) => {
@@ -13468,28 +13494,28 @@ var require_prerelease = __commonJS((exports, module) => {
13468
13494
  module.exports = prerelease;
13469
13495
  });
13470
13496
 
13471
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/compare.js
13497
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/compare.js
13472
13498
  var require_compare = __commonJS((exports, module) => {
13473
13499
  var SemVer = require_semver();
13474
13500
  var compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
13475
13501
  module.exports = compare;
13476
13502
  });
13477
13503
 
13478
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/rcompare.js
13504
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/rcompare.js
13479
13505
  var require_rcompare = __commonJS((exports, module) => {
13480
13506
  var compare = require_compare();
13481
13507
  var rcompare = (a, b, loose) => compare(b, a, loose);
13482
13508
  module.exports = rcompare;
13483
13509
  });
13484
13510
 
13485
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/compare-loose.js
13511
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/compare-loose.js
13486
13512
  var require_compare_loose = __commonJS((exports, module) => {
13487
13513
  var compare = require_compare();
13488
13514
  var compareLoose = (a, b) => compare(a, b, true);
13489
13515
  module.exports = compareLoose;
13490
13516
  });
13491
13517
 
13492
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/compare-build.js
13518
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/compare-build.js
13493
13519
  var require_compare_build = __commonJS((exports, module) => {
13494
13520
  var SemVer = require_semver();
13495
13521
  var compareBuild = (a, b, loose) => {
@@ -13500,63 +13526,63 @@ var require_compare_build = __commonJS((exports, module) => {
13500
13526
  module.exports = compareBuild;
13501
13527
  });
13502
13528
 
13503
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/sort.js
13529
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/sort.js
13504
13530
  var require_sort = __commonJS((exports, module) => {
13505
13531
  var compareBuild = require_compare_build();
13506
13532
  var sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
13507
13533
  module.exports = sort;
13508
13534
  });
13509
13535
 
13510
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/rsort.js
13536
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/rsort.js
13511
13537
  var require_rsort = __commonJS((exports, module) => {
13512
13538
  var compareBuild = require_compare_build();
13513
13539
  var rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
13514
13540
  module.exports = rsort;
13515
13541
  });
13516
13542
 
13517
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/gt.js
13543
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/gt.js
13518
13544
  var require_gt = __commonJS((exports, module) => {
13519
13545
  var compare = require_compare();
13520
13546
  var gt = (a, b, loose) => compare(a, b, loose) > 0;
13521
13547
  module.exports = gt;
13522
13548
  });
13523
13549
 
13524
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/lt.js
13550
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/lt.js
13525
13551
  var require_lt = __commonJS((exports, module) => {
13526
13552
  var compare = require_compare();
13527
13553
  var lt = (a, b, loose) => compare(a, b, loose) < 0;
13528
13554
  module.exports = lt;
13529
13555
  });
13530
13556
 
13531
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/eq.js
13557
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/eq.js
13532
13558
  var require_eq = __commonJS((exports, module) => {
13533
13559
  var compare = require_compare();
13534
13560
  var eq = (a, b, loose) => compare(a, b, loose) === 0;
13535
13561
  module.exports = eq;
13536
13562
  });
13537
13563
 
13538
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/neq.js
13564
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/neq.js
13539
13565
  var require_neq = __commonJS((exports, module) => {
13540
13566
  var compare = require_compare();
13541
13567
  var neq = (a, b, loose) => compare(a, b, loose) !== 0;
13542
13568
  module.exports = neq;
13543
13569
  });
13544
13570
 
13545
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/gte.js
13571
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/gte.js
13546
13572
  var require_gte = __commonJS((exports, module) => {
13547
13573
  var compare = require_compare();
13548
13574
  var gte = (a, b, loose) => compare(a, b, loose) >= 0;
13549
13575
  module.exports = gte;
13550
13576
  });
13551
13577
 
13552
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/lte.js
13578
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/lte.js
13553
13579
  var require_lte = __commonJS((exports, module) => {
13554
13580
  var compare = require_compare();
13555
13581
  var lte = (a, b, loose) => compare(a, b, loose) <= 0;
13556
13582
  module.exports = lte;
13557
13583
  });
13558
13584
 
13559
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/cmp.js
13585
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/cmp.js
13560
13586
  var require_cmp = __commonJS((exports, module) => {
13561
13587
  var eq = require_eq();
13562
13588
  var neq = require_neq();
@@ -13603,7 +13629,7 @@ var require_cmp = __commonJS((exports, module) => {
13603
13629
  module.exports = cmp;
13604
13630
  });
13605
13631
 
13606
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/coerce.js
13632
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/coerce.js
13607
13633
  var require_coerce = __commonJS((exports, module) => {
13608
13634
  var SemVer = require_semver();
13609
13635
  var parse = require_parse();
@@ -13646,7 +13672,45 @@ var require_coerce = __commonJS((exports, module) => {
13646
13672
  module.exports = coerce;
13647
13673
  });
13648
13674
 
13649
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/internal/lrucache.js
13675
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/truncate.js
13676
+ var require_truncate = __commonJS((exports, module) => {
13677
+ var parse = require_parse();
13678
+ var constants = require_constants();
13679
+ var SemVer = require_semver();
13680
+ var truncate = (version, truncation, options2) => {
13681
+ if (!constants.RELEASE_TYPES.includes(truncation)) {
13682
+ return null;
13683
+ }
13684
+ const clonedVersion = cloneInputVersion(version, options2);
13685
+ return clonedVersion && doTruncation(clonedVersion, truncation);
13686
+ };
13687
+ var cloneInputVersion = (version, options2) => {
13688
+ const versionStringToParse = version instanceof SemVer ? version.version : version;
13689
+ return parse(versionStringToParse, options2);
13690
+ };
13691
+ var doTruncation = (version, truncation) => {
13692
+ if (isPrerelease(truncation)) {
13693
+ return version.version;
13694
+ }
13695
+ version.prerelease = [];
13696
+ switch (truncation) {
13697
+ case "major":
13698
+ version.minor = 0;
13699
+ version.patch = 0;
13700
+ break;
13701
+ case "minor":
13702
+ version.patch = 0;
13703
+ break;
13704
+ }
13705
+ return version.format();
13706
+ };
13707
+ var isPrerelease = (type2) => {
13708
+ return type2.startsWith("pre");
13709
+ };
13710
+ module.exports = truncate;
13711
+ });
13712
+
13713
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/internal/lrucache.js
13650
13714
  var require_lrucache = __commonJS((exports, module) => {
13651
13715
  class LRUCache {
13652
13716
  constructor() {
@@ -13681,7 +13745,7 @@ var require_lrucache = __commonJS((exports, module) => {
13681
13745
  module.exports = LRUCache;
13682
13746
  });
13683
13747
 
13684
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/classes/range.js
13748
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/classes/range.js
13685
13749
  var require_range = __commonJS((exports, module) => {
13686
13750
  var SPACE_CHARACTERS = /\s+/g;
13687
13751
 
@@ -13750,6 +13814,7 @@ var require_range = __commonJS((exports, module) => {
13750
13814
  return this.range;
13751
13815
  }
13752
13816
  parseRange(range) {
13817
+ range = range.replace(BUILDSTRIPRE, "");
13753
13818
  const memoOpts = (this.options.includePrerelease && FLAG_INCLUDE_PRERELEASE) | (this.options.loose && FLAG_LOOSE);
13754
13819
  const memoKey = memoOpts + ":" + range;
13755
13820
  const cached = cache.get(memoKey);
@@ -13831,12 +13896,14 @@ var require_range = __commonJS((exports, module) => {
13831
13896
  var SemVer = require_semver();
13832
13897
  var {
13833
13898
  safeRe: re,
13899
+ src,
13834
13900
  t,
13835
13901
  comparatorTrimReplace,
13836
13902
  tildeTrimReplace,
13837
13903
  caretTrimReplace
13838
13904
  } = require_re();
13839
13905
  var { FLAG_INCLUDE_PRERELEASE, FLAG_LOOSE } = require_constants();
13906
+ var BUILDSTRIPRE = new RegExp(src[t.BUILD], "g");
13840
13907
  var isNullSet = (c) => c.value === "<0.0.0-0";
13841
13908
  var isAny = (c) => c.value === "";
13842
13909
  var isSatisfiable = (comparators, options2) => {
@@ -14055,7 +14122,7 @@ var require_range = __commonJS((exports, module) => {
14055
14122
  };
14056
14123
  });
14057
14124
 
14058
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/classes/comparator.js
14125
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/classes/comparator.js
14059
14126
  var require_comparator = __commonJS((exports, module) => {
14060
14127
  var ANY = Symbol("SemVer ANY");
14061
14128
 
@@ -14166,7 +14233,7 @@ var require_comparator = __commonJS((exports, module) => {
14166
14233
  var Range = require_range();
14167
14234
  });
14168
14235
 
14169
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/functions/satisfies.js
14236
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/functions/satisfies.js
14170
14237
  var require_satisfies = __commonJS((exports, module) => {
14171
14238
  var Range = require_range();
14172
14239
  var satisfies = (version, range, options2) => {
@@ -14180,14 +14247,14 @@ var require_satisfies = __commonJS((exports, module) => {
14180
14247
  module.exports = satisfies;
14181
14248
  });
14182
14249
 
14183
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/to-comparators.js
14250
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/to-comparators.js
14184
14251
  var require_to_comparators = __commonJS((exports, module) => {
14185
14252
  var Range = require_range();
14186
14253
  var toComparators = (range, options2) => new Range(range, options2).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
14187
14254
  module.exports = toComparators;
14188
14255
  });
14189
14256
 
14190
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/max-satisfying.js
14257
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/max-satisfying.js
14191
14258
  var require_max_satisfying = __commonJS((exports, module) => {
14192
14259
  var SemVer = require_semver();
14193
14260
  var Range = require_range();
@@ -14213,7 +14280,7 @@ var require_max_satisfying = __commonJS((exports, module) => {
14213
14280
  module.exports = maxSatisfying;
14214
14281
  });
14215
14282
 
14216
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/min-satisfying.js
14283
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/min-satisfying.js
14217
14284
  var require_min_satisfying = __commonJS((exports, module) => {
14218
14285
  var SemVer = require_semver();
14219
14286
  var Range = require_range();
@@ -14239,7 +14306,7 @@ var require_min_satisfying = __commonJS((exports, module) => {
14239
14306
  module.exports = minSatisfying;
14240
14307
  });
14241
14308
 
14242
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/min-version.js
14309
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/min-version.js
14243
14310
  var require_min_version = __commonJS((exports, module) => {
14244
14311
  var SemVer = require_semver();
14245
14312
  var Range = require_range();
@@ -14293,7 +14360,7 @@ var require_min_version = __commonJS((exports, module) => {
14293
14360
  module.exports = minVersion;
14294
14361
  });
14295
14362
 
14296
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/valid.js
14363
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/valid.js
14297
14364
  var require_valid2 = __commonJS((exports, module) => {
14298
14365
  var Range = require_range();
14299
14366
  var validRange = (range, options2) => {
@@ -14306,7 +14373,7 @@ var require_valid2 = __commonJS((exports, module) => {
14306
14373
  module.exports = validRange;
14307
14374
  });
14308
14375
 
14309
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/outside.js
14376
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/outside.js
14310
14377
  var require_outside = __commonJS((exports, module) => {
14311
14378
  var SemVer = require_semver();
14312
14379
  var Comparator = require_comparator();
@@ -14372,21 +14439,21 @@ var require_outside = __commonJS((exports, module) => {
14372
14439
  module.exports = outside;
14373
14440
  });
14374
14441
 
14375
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/gtr.js
14442
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/gtr.js
14376
14443
  var require_gtr = __commonJS((exports, module) => {
14377
14444
  var outside = require_outside();
14378
14445
  var gtr = (version, range, options2) => outside(version, range, ">", options2);
14379
14446
  module.exports = gtr;
14380
14447
  });
14381
14448
 
14382
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/ltr.js
14449
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/ltr.js
14383
14450
  var require_ltr = __commonJS((exports, module) => {
14384
14451
  var outside = require_outside();
14385
14452
  var ltr = (version, range, options2) => outside(version, range, "<", options2);
14386
14453
  module.exports = ltr;
14387
14454
  });
14388
14455
 
14389
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/intersects.js
14456
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/intersects.js
14390
14457
  var require_intersects = __commonJS((exports, module) => {
14391
14458
  var Range = require_range();
14392
14459
  var intersects = (r1, r2, options2) => {
@@ -14397,7 +14464,7 @@ var require_intersects = __commonJS((exports, module) => {
14397
14464
  module.exports = intersects;
14398
14465
  });
14399
14466
 
14400
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/simplify.js
14467
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/simplify.js
14401
14468
  var require_simplify = __commonJS((exports, module) => {
14402
14469
  var satisfies = require_satisfies();
14403
14470
  var compare = require_compare();
@@ -14444,7 +14511,7 @@ var require_simplify = __commonJS((exports, module) => {
14444
14511
  };
14445
14512
  });
14446
14513
 
14447
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/ranges/subset.js
14514
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/ranges/subset.js
14448
14515
  var require_subset = __commonJS((exports, module) => {
14449
14516
  var Range = require_range();
14450
14517
  var Comparator = require_comparator();
@@ -14553,7 +14620,7 @@ var require_subset = __commonJS((exports, module) => {
14553
14620
  if (higher === c && higher !== gt) {
14554
14621
  return false;
14555
14622
  }
14556
- } else if (gt.operator === ">=" && !satisfies(gt.semver, String(c), options2)) {
14623
+ } else if (gt.operator === ">=" && !c.test(gt.semver)) {
14557
14624
  return false;
14558
14625
  }
14559
14626
  }
@@ -14568,7 +14635,7 @@ var require_subset = __commonJS((exports, module) => {
14568
14635
  if (lower === c && lower !== lt) {
14569
14636
  return false;
14570
14637
  }
14571
- } else if (lt.operator === "<=" && !satisfies(lt.semver, String(c), options2)) {
14638
+ } else if (lt.operator === "<=" && !c.test(lt.semver)) {
14572
14639
  return false;
14573
14640
  }
14574
14641
  }
@@ -14604,7 +14671,7 @@ var require_subset = __commonJS((exports, module) => {
14604
14671
  module.exports = subset;
14605
14672
  });
14606
14673
 
14607
- // ../../node_modules/.bun/semver@7.7.4/node_modules/semver/index.js
14674
+ // ../../node_modules/.bun/semver@7.8.1/node_modules/semver/index.js
14608
14675
  var require_semver2 = __commonJS((exports, module) => {
14609
14676
  var internalRe = require_re();
14610
14677
  var constants = require_constants();
@@ -14633,6 +14700,7 @@ var require_semver2 = __commonJS((exports, module) => {
14633
14700
  var lte = require_lte();
14634
14701
  var cmp = require_cmp();
14635
14702
  var coerce = require_coerce();
14703
+ var truncate = require_truncate();
14636
14704
  var Comparator = require_comparator();
14637
14705
  var Range = require_range();
14638
14706
  var satisfies = require_satisfies();
@@ -14671,6 +14739,7 @@ var require_semver2 = __commonJS((exports, module) => {
14671
14739
  lte,
14672
14740
  cmp,
14673
14741
  coerce,
14742
+ truncate,
14674
14743
  Comparator,
14675
14744
  Range,
14676
14745
  satisfies,