create-tamagui 1.96.0 → 1.97.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.
package/dist/index.js CHANGED
@@ -1007,8 +1007,8 @@ var require_source = __commonJS({
1007
1007
  // ../../node_modules/commander/index.js
1008
1008
  var require_commander = __commonJS({
1009
1009
  "../../node_modules/commander/index.js"(exports2, module2) {
1010
- var EventEmitter3 = require("events").EventEmitter, spawn2 = require("child_process").spawn, path6 = require("path"), dirname = path6.dirname, basename2 = path6.basename, fs7 = require("fs");
1011
- require("util").inherits(Command, EventEmitter3);
1010
+ var EventEmitter2 = require("events").EventEmitter, spawn2 = require("child_process").spawn, path6 = require("path"), dirname = path6.dirname, basename2 = path6.basename, fs7 = require("fs");
1011
+ require("util").inherits(Command, EventEmitter2);
1012
1012
  exports2 = module2.exports = new Command();
1013
1013
  exports2.Command = Command;
1014
1014
  exports2.Option = Option;
@@ -1100,16 +1100,16 @@ var require_commander = __commonJS({
1100
1100
  baseDir = dirname(resolvedLink);
1101
1101
  var localBin = path6.join(baseDir, bin), isExplicitJS = !1;
1102
1102
  exists(localBin + ".js") ? (bin = localBin + ".js", isExplicitJS = !0) : exists(localBin + ".ts") ? (bin = localBin + ".ts", isExplicitJS = !0) : exists(localBin) && (bin = localBin), args = args.slice(1);
1103
- var proc3;
1104
- process.platform !== "win32" ? isExplicitJS ? (args.unshift(bin), args = (process.execArgv || []).concat(args), proc3 = spawn2(process.argv[0], args, { stdio: "inherit", customFds: [0, 1, 2] })) : proc3 = spawn2(bin, args, { stdio: "inherit", customFds: [0, 1, 2] }) : (args.unshift(bin), proc3 = spawn2(process.execPath, args, { stdio: "inherit" }));
1103
+ var proc2;
1104
+ process.platform !== "win32" ? isExplicitJS ? (args.unshift(bin), args = (process.execArgv || []).concat(args), proc2 = spawn2(process.argv[0], args, { stdio: "inherit", customFds: [0, 1, 2] })) : proc2 = spawn2(bin, args, { stdio: "inherit", customFds: [0, 1, 2] }) : (args.unshift(bin), proc2 = spawn2(process.execPath, args, { stdio: "inherit" }));
1105
1105
  var signals = ["SIGUSR1", "SIGUSR2", "SIGTERM", "SIGINT", "SIGHUP"];
1106
1106
  signals.forEach(function(signal) {
1107
1107
  process.on(signal, function() {
1108
- proc3.killed === !1 && proc3.exitCode === null && proc3.kill(signal);
1108
+ proc2.killed === !1 && proc2.exitCode === null && proc2.kill(signal);
1109
1109
  });
1110
- }), proc3.on("close", process.exit.bind(process)), proc3.on("error", function(err) {
1110
+ }), proc2.on("close", process.exit.bind(process)), proc2.on("error", function(err) {
1111
1111
  err.code === "ENOENT" ? console.error("error: %s(1) does not exist, try --help", bin) : err.code === "EACCES" && console.error("error: %s(1) not executable. try chmod or run with root", bin), process.exit(1);
1112
- }), this.runningCommand = proc3;
1112
+ }), this.runningCommand = proc2;
1113
1113
  };
1114
1114
  Command.prototype.normalize = function(args) {
1115
1115
  for (var ret = [], arg, lastOpt, index, i = 0, len = args.length; i < len; ++i)
@@ -2356,12 +2356,12 @@ var require_kill = __commonJS({
2356
2356
  var require_is_stream = __commonJS({
2357
2357
  "../../node_modules/is-stream/index.js"(exports2, module2) {
2358
2358
  "use strict";
2359
- var isStream3 = (stream2) => stream2 !== null && typeof stream2 == "object" && typeof stream2.pipe == "function";
2360
- isStream3.writable = (stream2) => isStream3(stream2) && stream2.writable !== !1 && typeof stream2._write == "function" && typeof stream2._writableState == "object";
2361
- isStream3.readable = (stream2) => isStream3(stream2) && stream2.readable !== !1 && typeof stream2._read == "function" && typeof stream2._readableState == "object";
2362
- isStream3.duplex = (stream2) => isStream3.writable(stream2) && isStream3.readable(stream2);
2363
- isStream3.transform = (stream2) => isStream3.duplex(stream2) && typeof stream2._transform == "function";
2364
- module2.exports = isStream3;
2359
+ var isStream2 = (stream2) => stream2 !== null && typeof stream2 == "object" && typeof stream2.pipe == "function";
2360
+ isStream2.writable = (stream2) => isStream2(stream2) && stream2.writable !== !1 && typeof stream2._write == "function" && typeof stream2._writableState == "object";
2361
+ isStream2.readable = (stream2) => isStream2(stream2) && stream2.readable !== !1 && typeof stream2._read == "function" && typeof stream2._readableState == "object";
2362
+ isStream2.duplex = (stream2) => isStream2.writable(stream2) && isStream2.readable(stream2);
2363
+ isStream2.transform = (stream2) => isStream2.duplex(stream2) && typeof stream2._transform == "function";
2364
+ module2.exports = isStream2;
2365
2365
  }
2366
2366
  });
2367
2367
 
@@ -2450,8 +2450,8 @@ var require_merge_stream = __commonJS({
2450
2450
  var require_stream = __commonJS({
2451
2451
  "../../node_modules/execa/lib/stream.js"(exports2, module2) {
2452
2452
  "use strict";
2453
- var isStream3 = require_is_stream(), getStream = require_get_stream(), mergeStream = require_merge_stream(), handleInput = (spawned, input) => {
2454
- input === void 0 || spawned.stdin === void 0 || (isStream3(input) ? input.pipe(spawned.stdin) : spawned.stdin.end(input));
2453
+ var isStream2 = require_is_stream(), getStream = require_get_stream(), mergeStream = require_merge_stream(), handleInput = (spawned, input) => {
2454
+ input === void 0 || spawned.stdin === void 0 || (isStream2(input) ? input.pipe(spawned.stdin) : spawned.stdin.end(input));
2455
2455
  }, makeAllStream = (spawned, { all }) => {
2456
2456
  if (!all || !spawned.stdout && !spawned.stderr)
2457
2457
  return;
@@ -2482,7 +2482,7 @@ var require_stream = __commonJS({
2482
2482
  ]);
2483
2483
  }
2484
2484
  }, validateInputSync = ({ input }) => {
2485
- if (isStream3(input))
2485
+ if (isStream2(input))
2486
2486
  throw new TypeError("The `input` option cannot be a stream in sync mode");
2487
2487
  };
2488
2488
  module2.exports = {
@@ -2937,7 +2937,7 @@ var require_polyfills = __commonJS({
2937
2937
  // ../../node_modules/graceful-fs/legacy-streams.js
2938
2938
  var require_legacy_streams = __commonJS({
2939
2939
  "../../node_modules/graceful-fs/legacy-streams.js"(exports2, module2) {
2940
- var Stream3 = require("stream").Stream;
2940
+ var Stream2 = require("stream").Stream;
2941
2941
  module2.exports = legacy;
2942
2942
  function legacy(fs7) {
2943
2943
  return {
@@ -2947,7 +2947,7 @@ var require_legacy_streams = __commonJS({
2947
2947
  function ReadStream(path6, options) {
2948
2948
  if (!(this instanceof ReadStream))
2949
2949
  return new ReadStream(path6, options);
2950
- Stream3.call(this);
2950
+ Stream2.call(this);
2951
2951
  var self = this;
2952
2952
  this.path = path6, this.fd = null, this.readable = !0, this.paused = !1, this.flags = "r", this.mode = 438, this.bufferSize = 64 * 1024, options = options || {};
2953
2953
  for (var keys = Object.keys(options), index = 0, length = keys.length; index < length; index++) {
@@ -2982,7 +2982,7 @@ var require_legacy_streams = __commonJS({
2982
2982
  function WriteStream(path6, options) {
2983
2983
  if (!(this instanceof WriteStream))
2984
2984
  return new WriteStream(path6, options);
2985
- Stream3.call(this), this.path = path6, this.fd = null, this.writable = !0, this.flags = "w", this.encoding = "binary", this.mode = 438, this.bytesWritten = 0, options = options || {};
2985
+ Stream2.call(this), this.path = path6, this.fd = null, this.writable = !0, this.flags = "w", this.encoding = "binary", this.mode = 438, this.bytesWritten = 0, options = options || {};
2986
2986
  for (var keys = Object.keys(options), index = 0, length = keys.length; index < length; index++) {
2987
2987
  var key = keys[index];
2988
2988
  this[key] = options[key];
@@ -4075,8 +4075,8 @@ var require_utils2 = __commonJS({
4075
4075
  "../../node_modules/jsonfile/utils.js"(exports2, module2) {
4076
4076
  function stringify(obj, { EOL = `
4077
4077
  `, finalEOL = !0, replacer = null, spaces } = {}) {
4078
- let EOF3 = finalEOL ? EOL : "";
4079
- return JSON.stringify(obj, replacer, spaces).replace(/\n/g, EOL) + EOF3;
4078
+ let EOF2 = finalEOL ? EOL : "";
4079
+ return JSON.stringify(obj, replacer, spaces).replace(/\n/g, EOL) + EOF2;
4080
4080
  }
4081
4081
  function stripBom(content) {
4082
4082
  return Buffer.isBuffer(content) && (content = content.toString("utf8")), content.replace(/^\uFEFF/, "");
@@ -4617,7 +4617,7 @@ var require_util2 = __commonJS({
4617
4617
  var require_prompt = __commonJS({
4618
4618
  "../../node_modules/prompts/dist/elements/prompt.js"(exports2, module2) {
4619
4619
  "use strict";
4620
- var readline = require("readline"), _require = require_util2(), action = _require.action, EventEmitter3 = require("events"), _require2 = require_src(), beep = _require2.beep, cursor = _require2.cursor, color = require_kleur(), Prompt = class extends EventEmitter3 {
4620
+ var readline = require("readline"), _require = require_util2(), action = _require.action, EventEmitter2 = require("events"), _require2 = require_src(), beep = _require2.beep, cursor = _require2.cursor, color = require_kleur(), Prompt = class extends EventEmitter2 {
4621
4621
  constructor(opts = {}) {
4622
4622
  super(), this.firstRender = !0, this.in = opts.in || process.stdin, this.out = opts.out || process.stdout, this.onRender = (opts.onRender || (() => {
4623
4623
  })).bind(this);
@@ -6163,7 +6163,7 @@ var require_util3 = __commonJS({
6163
6163
  var require_prompt2 = __commonJS({
6164
6164
  "../../node_modules/prompts/lib/elements/prompt.js"(exports2, module2) {
6165
6165
  "use strict";
6166
- var readline = require("readline"), { action } = require_util3(), EventEmitter3 = require("events"), { beep, cursor } = require_src(), color = require_kleur(), Prompt = class extends EventEmitter3 {
6166
+ var readline = require("readline"), { action } = require_util3(), EventEmitter2 = require("events"), { beep, cursor } = require_src(), color = require_kleur(), Prompt = class extends EventEmitter2 {
6167
6167
  constructor(opts = {}) {
6168
6168
  super(), this.firstRender = !0, this.in = opts.in || process.stdin, this.out = opts.out || process.stdout, this.onRender = (opts.onRender || (() => {
6169
6169
  })).bind(this);
@@ -7423,9 +7423,9 @@ var require_prompts3 = __commonJS({
7423
7423
  }
7424
7424
  });
7425
7425
 
7426
- // ../../node_modules/which/lib/index.js
7426
+ // ../../node_modules/zx/node_modules/which/lib/index.js
7427
7427
  var require_lib3 = __commonJS({
7428
- "../../node_modules/which/lib/index.js"(exports2, module2) {
7428
+ "../../node_modules/zx/node_modules/which/lib/index.js"(exports2, module2) {
7429
7429
  var isexe = require_isexe(), { join: join3, delimiter, sep: sep2, posix: posix3 } = require("path"), isWindows = process.platform === "win32", rSlash = new RegExp(`[${posix3.sep}${sep2 === posix3.sep ? "" : sep2}]`.replace(/(\\)/g, "\\$1")), rRel = new RegExp(`^\\.${rSlash.source}`), getNotFoundError = (cmd) => Object.assign(new Error(`not found: ${cmd}`), { code: "ENOENT" }), getPathInfo = (cmd, {
7430
7430
  path: optPath = process.env.PATH,
7431
7431
  pathExt: optPathExt = process.env.PATHEXT,
@@ -7490,7 +7490,7 @@ var require_lib3 = __commonJS({
7490
7490
  // ../../node_modules/through/index.js
7491
7491
  var require_through = __commonJS({
7492
7492
  "../../node_modules/through/index.js"(exports2, module2) {
7493
- var Stream3 = require("stream");
7493
+ var Stream2 = require("stream");
7494
7494
  exports2 = module2.exports = through;
7495
7495
  through.through = through;
7496
7496
  function through(write, end, opts) {
@@ -7499,7 +7499,7 @@ var require_through = __commonJS({
7499
7499
  }, end = end || function() {
7500
7500
  this.queue(null);
7501
7501
  };
7502
- var ended = !1, destroyed = !1, buffer = [], _ended = !1, stream2 = new Stream3();
7502
+ var ended = !1, destroyed = !1, buffer = [], _ended = !1, stream2 = new Stream2();
7503
7503
  stream2.readable = stream2.writable = !0, stream2.paused = !1, stream2.autoDestroy = !(opts && opts.autoDestroy === !1), stream2.write = function(data) {
7504
7504
  return write.call(this, data), !stream2.paused;
7505
7505
  };
@@ -7541,7 +7541,7 @@ var require_through = __commonJS({
7541
7541
  var require_from = __commonJS({
7542
7542
  "../../node_modules/from/index.js"(exports2, module2) {
7543
7543
  "use strict";
7544
- var Stream3 = require("stream");
7544
+ var Stream2 = require("stream");
7545
7545
  module2.exports = function from(source) {
7546
7546
  if (Array.isArray(source)) {
7547
7547
  var source_index = 0, source_len = source.length;
@@ -7549,7 +7549,7 @@ var require_from = __commonJS({
7549
7549
  return source_index < source_len ? this.emit("data", source[source_index++]) : this.emit("end"), !0;
7550
7550
  });
7551
7551
  }
7552
- var s = new Stream3(), i = 0;
7552
+ var s = new Stream2(), i = 0;
7553
7553
  s.ended = !1, s.started = !1, s.readable = !0, s.writable = !1, s.paused = !1, s.ended = !1, s.pause = function() {
7554
7554
  s.started = !0, s.paused = !0;
7555
7555
  };
@@ -7576,7 +7576,7 @@ var require_from = __commonJS({
7576
7576
  // ../../node_modules/duplexer/index.js
7577
7577
  var require_duplexer = __commonJS({
7578
7578
  "../../node_modules/duplexer/index.js"(exports2, module2) {
7579
- var Stream3 = require("stream"), writeMethods = ["write", "end", "destroy"], readMethods = ["resume", "pause"], readEvents = ["data", "close"], slice = Array.prototype.slice;
7579
+ var Stream2 = require("stream"), writeMethods = ["write", "end", "destroy"], readMethods = ["resume", "pause"], readEvents = ["data", "close"], slice = Array.prototype.slice;
7580
7580
  module2.exports = duplex;
7581
7581
  function forEach(arr, fn) {
7582
7582
  if (arr.forEach)
@@ -7585,7 +7585,7 @@ var require_duplexer = __commonJS({
7585
7585
  fn(arr[i], i);
7586
7586
  }
7587
7587
  function duplex(writer, reader) {
7588
- var stream2 = new Stream3(), ended = !1;
7588
+ var stream2 = new Stream2(), ended = !1;
7589
7589
  return forEach(writeMethods, proxyWriter), forEach(readMethods, proxyReader), forEach(readEvents, proxyStream), reader.on("end", handleEnd), writer.on("drain", function() {
7590
7590
  stream2.emit("drain");
7591
7591
  }), writer.on("error", reemit), reader.on("error", reemit), stream2.writable = writer.writable, stream2.readable = reader.readable, stream2;
@@ -7629,9 +7629,9 @@ var require_duplexer = __commonJS({
7629
7629
  // ../../node_modules/map-stream/index.js
7630
7630
  var require_map_stream = __commonJS({
7631
7631
  "../../node_modules/map-stream/index.js"(exports2, module2) {
7632
- var Stream3 = require("stream").Stream;
7632
+ var Stream2 = require("stream").Stream;
7633
7633
  module2.exports = function(mapper, opts) {
7634
- var stream2 = new Stream3(), self = this, inputs = 0, outputs = 0, ended = !1, paused = !1, destroyed = !1, lastWritten = 0, inNext = !1;
7634
+ var stream2 = new Stream2(), self = this, inputs = 0, outputs = 0, ended = !1, paused = !1, destroyed = !1, lastWritten = 0, inNext = !1;
7635
7635
  this.opts = opts || {};
7636
7636
  var errorEventName = this.opts.failures ? "failure" : "error", writeQueue = {};
7637
7637
  stream2.writable = !0, stream2.readable = !0;
@@ -7758,8 +7758,8 @@ var require_stream_combiner = __commonJS({
7758
7758
  // ../../node_modules/event-stream/index.js
7759
7759
  var require_event_stream = __commonJS({
7760
7760
  "../../node_modules/event-stream/index.js"(exports2) {
7761
- var Stream3 = require("stream").Stream, es = exports2, through = require_through(), from = require_from(), duplex = require_duplexer(), map = require_map_stream(), pause = require_pause_stream(), split = require_split(), pipeline = require_stream_combiner(), immediately = global.setImmediate || process.nextTick;
7762
- es.Stream = Stream3;
7761
+ var Stream2 = require("stream").Stream, es = exports2, through = require_through(), from = require_from(), duplex = require_duplexer(), map = require_map_stream(), pause = require_pause_stream(), split = require_split(), pipeline = require_stream_combiner(), immediately = global.setImmediate || process.nextTick;
7762
+ es.Stream = Stream2;
7763
7763
  es.through = through;
7764
7764
  es.from = from;
7765
7765
  es.duplex = duplex;
@@ -7771,7 +7771,7 @@ var require_event_stream = __commonJS({
7771
7771
  es.merge = function() {
7772
7772
  var toMerge = [].slice.call(arguments);
7773
7773
  toMerge.length === 1 && toMerge[0] instanceof Array && (toMerge = toMerge[0]);
7774
- var stream2 = new Stream3();
7774
+ var stream2 = new Stream2();
7775
7775
  stream2.setMaxListeners(0);
7776
7776
  var endCount = 0;
7777
7777
  return stream2.writable = stream2.readable = !0, toMerge.length ? toMerge.forEach(function(e) {
@@ -7793,7 +7793,7 @@ var require_event_stream = __commonJS({
7793
7793
  es.writeArray = function(done) {
7794
7794
  if (typeof done != "function")
7795
7795
  throw new Error("function writeArray (done): done must be function");
7796
- var a = new Stream3(), array = [], isDone = !1;
7796
+ var a = new Stream2(), array = [], isDone = !1;
7797
7797
  return a.write = function(l) {
7798
7798
  array.push(l);
7799
7799
  }, a.end = function() {
@@ -7803,7 +7803,7 @@ var require_event_stream = __commonJS({
7803
7803
  }, a;
7804
7804
  };
7805
7805
  es.readArray = function(array) {
7806
- var stream2 = new Stream3(), i = 0, paused = !1, ended = !1;
7806
+ var stream2 = new Stream2(), i = 0, paused = !1, ended = !1;
7807
7807
  if (stream2.readable = !0, stream2.writable = !1, !Array.isArray(array))
7808
7808
  throw new Error("event-stream.read expects an array");
7809
7809
  return stream2.resume = function() {
@@ -7820,7 +7820,7 @@ var require_event_stream = __commonJS({
7820
7820
  }, stream2;
7821
7821
  };
7822
7822
  es.readable = function(func, continueOnError) {
7823
- var stream2 = new Stream3(), i = 0, paused = !1, ended = !1, reading = !1;
7823
+ var stream2 = new Stream2(), i = 0, paused = !1, ended = !1, reading = !1;
7824
7824
  if (stream2.readable = !0, stream2.writable = !1, typeof func != "function")
7825
7825
  throw new Error("event-stream.readable expects async function");
7826
7826
  stream2.on("end", function() {
@@ -7939,8 +7939,8 @@ var require_ps_tree = __commonJS({
7939
7939
  }),
7940
7940
  es.writeArray(function(err, ps) {
7941
7941
  var parents = {}, children = [];
7942
- parents[pid] = !0, ps.forEach(function(proc3) {
7943
- parents[proc3.PPID] && (parents[proc3.PID] = !0, children.push(proc3));
7942
+ parents[pid] = !0, ps.forEach(function(proc2) {
7943
+ parents[proc2.PPID] && (parents[proc2.PID] = !0, children.push(proc2));
7944
7944
  }), callback(null, children);
7945
7945
  })
7946
7946
  ).on("error", callback);
@@ -7968,7 +7968,7 @@ var require_ps_tree = __commonJS({
7968
7968
  var require_merge2 = __commonJS({
7969
7969
  "../../node_modules/merge2/index.js"(exports2, module2) {
7970
7970
  "use strict";
7971
- var Stream3 = require("stream"), PassThrough = Stream3.PassThrough, slice = Array.prototype.slice;
7971
+ var Stream2 = require("stream"), PassThrough = Stream2.PassThrough, slice = Array.prototype.slice;
7972
7972
  module2.exports = merge22;
7973
7973
  function merge22() {
7974
7974
  let streamsQueue = [], args = slice.call(arguments), merging = !1, options = args[args.length - 1];
@@ -11594,9 +11594,9 @@ var require_out4 = __commonJS({
11594
11594
  }
11595
11595
  });
11596
11596
 
11597
- // ../../node_modules/path-type/index.js
11597
+ // ../../node_modules/dir-glob/node_modules/path-type/index.js
11598
11598
  var require_path_type = __commonJS({
11599
- "../../node_modules/path-type/index.js"(exports2) {
11599
+ "../../node_modules/dir-glob/node_modules/path-type/index.js"(exports2) {
11600
11600
  "use strict";
11601
11601
  var { promisify: promisify2 } = require("util"), fs7 = require("fs");
11602
11602
  async function isType(fsStatType, statsMethodName, filePath) {
@@ -21679,9 +21679,9 @@ var require_yallist = __commonJS({
21679
21679
  }
21680
21680
  });
21681
21681
 
21682
- // ../../node_modules/npm-package-arg/node_modules/lru-cache/index.js
21682
+ // ../../node_modules/lru-cache/index.js
21683
21683
  var require_lru_cache = __commonJS({
21684
- "../../node_modules/npm-package-arg/node_modules/lru-cache/index.js"(exports2, module2) {
21684
+ "../../node_modules/lru-cache/index.js"(exports2, module2) {
21685
21685
  "use strict";
21686
21686
  var Yallist = require_yallist(), MAX = Symbol("max"), LENGTH = Symbol("length"), LENGTH_CALCULATOR = Symbol("lengthCalculator"), ALLOW_STALE = Symbol("allowStale"), MAX_AGE = Symbol("maxAge"), DISPOSE = Symbol("dispose"), NO_DISPOSE_ON_SET = Symbol("noDisposeOnSet"), LRU_LIST = Symbol("lruList"), CACHE = Symbol("cache"), UPDATE_AGE_ON_GET = Symbol("updateAgeOnGet"), naiveLength = () => 1, LRUCache2 = class {
21687
21687
  constructor(options) {
@@ -22901,9 +22901,9 @@ var require_yocto_queue = __commonJS({
22901
22901
  }
22902
22902
  });
22903
22903
 
22904
- // ../../node_modules/p-limit/index.js
22904
+ // ../../node_modules/find-up/node_modules/p-limit/index.js
22905
22905
  var require_p_limit = __commonJS({
22906
- "../../node_modules/p-limit/index.js"(exports2, module2) {
22906
+ "../../node_modules/find-up/node_modules/p-limit/index.js"(exports2, module2) {
22907
22907
  "use strict";
22908
22908
  var Queue = require_yocto_queue(), pLimit = (concurrency) => {
22909
22909
  if (!((Number.isInteger(concurrency) || concurrency === 1 / 0) && concurrency > 0))
@@ -23122,9 +23122,9 @@ var require_find_yarn_workspace_root = __commonJS({
23122
23122
  }
23123
23123
  });
23124
23124
 
23125
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/common.js
23125
+ // ../../node_modules/js-yaml/lib/js-yaml/common.js
23126
23126
  var require_common3 = __commonJS({
23127
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/common.js"(exports2, module2) {
23127
+ "../../node_modules/js-yaml/lib/js-yaml/common.js"(exports2, module2) {
23128
23128
  "use strict";
23129
23129
  function isNothing(subject) {
23130
23130
  return typeof subject > "u" || subject === null;
@@ -23160,9 +23160,9 @@ var require_common3 = __commonJS({
23160
23160
  }
23161
23161
  });
23162
23162
 
23163
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/exception.js
23163
+ // ../../node_modules/js-yaml/lib/js-yaml/exception.js
23164
23164
  var require_exception = __commonJS({
23165
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/exception.js"(exports2, module2) {
23165
+ "../../node_modules/js-yaml/lib/js-yaml/exception.js"(exports2, module2) {
23166
23166
  "use strict";
23167
23167
  function YAMLException(reason, mark) {
23168
23168
  Error.call(this), this.name = "YAMLException", this.reason = reason, this.mark = mark, this.message = (this.reason || "(unknown reason)") + (this.mark ? " " + this.mark.toString() : ""), Error.captureStackTrace ? Error.captureStackTrace(this, this.constructor) : this.stack = new Error().stack || "";
@@ -23177,9 +23177,9 @@ var require_exception = __commonJS({
23177
23177
  }
23178
23178
  });
23179
23179
 
23180
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/mark.js
23180
+ // ../../node_modules/js-yaml/lib/js-yaml/mark.js
23181
23181
  var require_mark = __commonJS({
23182
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/mark.js"(exports2, module2) {
23182
+ "../../node_modules/js-yaml/lib/js-yaml/mark.js"(exports2, module2) {
23183
23183
  "use strict";
23184
23184
  var common = require_common3();
23185
23185
  function Mark(name, buffer, position, line, column) {
@@ -23213,9 +23213,9 @@ var require_mark = __commonJS({
23213
23213
  }
23214
23214
  });
23215
23215
 
23216
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type.js
23216
+ // ../../node_modules/js-yaml/lib/js-yaml/type.js
23217
23217
  var require_type = __commonJS({
23218
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type.js"(exports2, module2) {
23218
+ "../../node_modules/js-yaml/lib/js-yaml/type.js"(exports2, module2) {
23219
23219
  "use strict";
23220
23220
  var YAMLException = require_exception(), TYPE_CONSTRUCTOR_OPTIONS = [
23221
23221
  "kind",
@@ -23254,9 +23254,9 @@ var require_type = __commonJS({
23254
23254
  }
23255
23255
  });
23256
23256
 
23257
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema.js
23257
+ // ../../node_modules/js-yaml/lib/js-yaml/schema.js
23258
23258
  var require_schema4 = __commonJS({
23259
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema.js"(exports2, module2) {
23259
+ "../../node_modules/js-yaml/lib/js-yaml/schema.js"(exports2, module2) {
23260
23260
  "use strict";
23261
23261
  var common = require_common3(), YAMLException = require_exception(), Type = require_type();
23262
23262
  function compileList(schema, name, result) {
@@ -23321,9 +23321,9 @@ var require_schema4 = __commonJS({
23321
23321
  }
23322
23322
  });
23323
23323
 
23324
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/str.js
23324
+ // ../../node_modules/js-yaml/lib/js-yaml/type/str.js
23325
23325
  var require_str = __commonJS({
23326
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/str.js"(exports2, module2) {
23326
+ "../../node_modules/js-yaml/lib/js-yaml/type/str.js"(exports2, module2) {
23327
23327
  "use strict";
23328
23328
  var Type = require_type();
23329
23329
  module2.exports = new Type("tag:yaml.org,2002:str", {
@@ -23335,9 +23335,9 @@ var require_str = __commonJS({
23335
23335
  }
23336
23336
  });
23337
23337
 
23338
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/seq.js
23338
+ // ../../node_modules/js-yaml/lib/js-yaml/type/seq.js
23339
23339
  var require_seq2 = __commonJS({
23340
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/seq.js"(exports2, module2) {
23340
+ "../../node_modules/js-yaml/lib/js-yaml/type/seq.js"(exports2, module2) {
23341
23341
  "use strict";
23342
23342
  var Type = require_type();
23343
23343
  module2.exports = new Type("tag:yaml.org,2002:seq", {
@@ -23349,9 +23349,9 @@ var require_seq2 = __commonJS({
23349
23349
  }
23350
23350
  });
23351
23351
 
23352
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/map.js
23352
+ // ../../node_modules/js-yaml/lib/js-yaml/type/map.js
23353
23353
  var require_map2 = __commonJS({
23354
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/map.js"(exports2, module2) {
23354
+ "../../node_modules/js-yaml/lib/js-yaml/type/map.js"(exports2, module2) {
23355
23355
  "use strict";
23356
23356
  var Type = require_type();
23357
23357
  module2.exports = new Type("tag:yaml.org,2002:map", {
@@ -23363,9 +23363,9 @@ var require_map2 = __commonJS({
23363
23363
  }
23364
23364
  });
23365
23365
 
23366
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js
23366
+ // ../../node_modules/js-yaml/lib/js-yaml/schema/failsafe.js
23367
23367
  var require_failsafe = __commonJS({
23368
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/failsafe.js"(exports2, module2) {
23368
+ "../../node_modules/js-yaml/lib/js-yaml/schema/failsafe.js"(exports2, module2) {
23369
23369
  "use strict";
23370
23370
  var Schema = require_schema4();
23371
23371
  module2.exports = new Schema({
@@ -23378,9 +23378,9 @@ var require_failsafe = __commonJS({
23378
23378
  }
23379
23379
  });
23380
23380
 
23381
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/null.js
23381
+ // ../../node_modules/js-yaml/lib/js-yaml/type/null.js
23382
23382
  var require_null2 = __commonJS({
23383
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/null.js"(exports2, module2) {
23383
+ "../../node_modules/js-yaml/lib/js-yaml/type/null.js"(exports2, module2) {
23384
23384
  "use strict";
23385
23385
  var Type = require_type();
23386
23386
  function resolveYamlNull(data) {
@@ -23419,9 +23419,9 @@ var require_null2 = __commonJS({
23419
23419
  }
23420
23420
  });
23421
23421
 
23422
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/bool.js
23422
+ // ../../node_modules/js-yaml/lib/js-yaml/type/bool.js
23423
23423
  var require_bool3 = __commonJS({
23424
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/bool.js"(exports2, module2) {
23424
+ "../../node_modules/js-yaml/lib/js-yaml/type/bool.js"(exports2, module2) {
23425
23425
  "use strict";
23426
23426
  var Type = require_type();
23427
23427
  function resolveYamlBoolean(data) {
@@ -23457,9 +23457,9 @@ var require_bool3 = __commonJS({
23457
23457
  }
23458
23458
  });
23459
23459
 
23460
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/int.js
23460
+ // ../../node_modules/js-yaml/lib/js-yaml/type/int.js
23461
23461
  var require_int3 = __commonJS({
23462
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/int.js"(exports2, module2) {
23462
+ "../../node_modules/js-yaml/lib/js-yaml/type/int.js"(exports2, module2) {
23463
23463
  "use strict";
23464
23464
  var common = require_common3(), Type = require_type();
23465
23465
  function isHexCode(c) {
@@ -23560,9 +23560,9 @@ var require_int3 = __commonJS({
23560
23560
  }
23561
23561
  });
23562
23562
 
23563
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/float.js
23563
+ // ../../node_modules/js-yaml/lib/js-yaml/type/float.js
23564
23564
  var require_float3 = __commonJS({
23565
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/float.js"(exports2, module2) {
23565
+ "../../node_modules/js-yaml/lib/js-yaml/type/float.js"(exports2, module2) {
23566
23566
  "use strict";
23567
23567
  var common = require_common3(), Type = require_type(), YAML_FLOAT_PATTERN = new RegExp(
23568
23568
  // 2.5e4, 2.5 and integers
@@ -23629,9 +23629,9 @@ var require_float3 = __commonJS({
23629
23629
  }
23630
23630
  });
23631
23631
 
23632
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/json.js
23632
+ // ../../node_modules/js-yaml/lib/js-yaml/schema/json.js
23633
23633
  var require_json2 = __commonJS({
23634
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/json.js"(exports2, module2) {
23634
+ "../../node_modules/js-yaml/lib/js-yaml/schema/json.js"(exports2, module2) {
23635
23635
  "use strict";
23636
23636
  var Schema = require_schema4();
23637
23637
  module2.exports = new Schema({
@@ -23648,9 +23648,9 @@ var require_json2 = __commonJS({
23648
23648
  }
23649
23649
  });
23650
23650
 
23651
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/core.js
23651
+ // ../../node_modules/js-yaml/lib/js-yaml/schema/core.js
23652
23652
  var require_core2 = __commonJS({
23653
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/core.js"(exports2, module2) {
23653
+ "../../node_modules/js-yaml/lib/js-yaml/schema/core.js"(exports2, module2) {
23654
23654
  "use strict";
23655
23655
  var Schema = require_schema4();
23656
23656
  module2.exports = new Schema({
@@ -23661,9 +23661,9 @@ var require_core2 = __commonJS({
23661
23661
  }
23662
23662
  });
23663
23663
 
23664
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/timestamp.js
23664
+ // ../../node_modules/js-yaml/lib/js-yaml/type/timestamp.js
23665
23665
  var require_timestamp2 = __commonJS({
23666
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/timestamp.js"(exports2, module2) {
23666
+ "../../node_modules/js-yaml/lib/js-yaml/type/timestamp.js"(exports2, module2) {
23667
23667
  "use strict";
23668
23668
  var Type = require_type(), YAML_DATE_REGEXP = new RegExp(
23669
23669
  "^([0-9][0-9][0-9][0-9])-([0-9][0-9])-([0-9][0-9])$"
@@ -23699,9 +23699,9 @@ var require_timestamp2 = __commonJS({
23699
23699
  }
23700
23700
  });
23701
23701
 
23702
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/merge.js
23702
+ // ../../node_modules/js-yaml/lib/js-yaml/type/merge.js
23703
23703
  var require_merge = __commonJS({
23704
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/merge.js"(exports2, module2) {
23704
+ "../../node_modules/js-yaml/lib/js-yaml/type/merge.js"(exports2, module2) {
23705
23705
  "use strict";
23706
23706
  var Type = require_type();
23707
23707
  function resolveYamlMerge(data) {
@@ -23714,9 +23714,9 @@ var require_merge = __commonJS({
23714
23714
  }
23715
23715
  });
23716
23716
 
23717
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/binary.js
23717
+ // ../../node_modules/js-yaml/lib/js-yaml/type/binary.js
23718
23718
  var require_binary2 = __commonJS({
23719
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/binary.js"(exports2, module2) {
23719
+ "../../node_modules/js-yaml/lib/js-yaml/type/binary.js"(exports2, module2) {
23720
23720
  "use strict";
23721
23721
  var NodeBuffer;
23722
23722
  try {
@@ -23762,9 +23762,9 @@ var require_binary2 = __commonJS({
23762
23762
  }
23763
23763
  });
23764
23764
 
23765
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/omap.js
23765
+ // ../../node_modules/js-yaml/lib/js-yaml/type/omap.js
23766
23766
  var require_omap2 = __commonJS({
23767
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/omap.js"(exports2, module2) {
23767
+ "../../node_modules/js-yaml/lib/js-yaml/type/omap.js"(exports2, module2) {
23768
23768
  "use strict";
23769
23769
  var Type = require_type(), _hasOwnProperty = Object.prototype.hasOwnProperty, _toString = Object.prototype.toString;
23770
23770
  function resolveYamlOmap(data) {
@@ -23800,9 +23800,9 @@ var require_omap2 = __commonJS({
23800
23800
  }
23801
23801
  });
23802
23802
 
23803
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/pairs.js
23803
+ // ../../node_modules/js-yaml/lib/js-yaml/type/pairs.js
23804
23804
  var require_pairs2 = __commonJS({
23805
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/pairs.js"(exports2, module2) {
23805
+ "../../node_modules/js-yaml/lib/js-yaml/type/pairs.js"(exports2, module2) {
23806
23806
  "use strict";
23807
23807
  var Type = require_type(), _toString = Object.prototype.toString;
23808
23808
  function resolveYamlPairs(data) {
@@ -23832,9 +23832,9 @@ var require_pairs2 = __commonJS({
23832
23832
  }
23833
23833
  });
23834
23834
 
23835
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/set.js
23835
+ // ../../node_modules/js-yaml/lib/js-yaml/type/set.js
23836
23836
  var require_set2 = __commonJS({
23837
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/set.js"(exports2, module2) {
23837
+ "../../node_modules/js-yaml/lib/js-yaml/type/set.js"(exports2, module2) {
23838
23838
  "use strict";
23839
23839
  var Type = require_type(), _hasOwnProperty = Object.prototype.hasOwnProperty;
23840
23840
  function resolveYamlSet(data) {
@@ -23857,9 +23857,9 @@ var require_set2 = __commonJS({
23857
23857
  }
23858
23858
  });
23859
23859
 
23860
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js
23860
+ // ../../node_modules/js-yaml/lib/js-yaml/schema/default_safe.js
23861
23861
  var require_default_safe = __commonJS({
23862
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/default_safe.js"(exports2, module2) {
23862
+ "../../node_modules/js-yaml/lib/js-yaml/schema/default_safe.js"(exports2, module2) {
23863
23863
  "use strict";
23864
23864
  var Schema = require_schema4();
23865
23865
  module2.exports = new Schema({
@@ -23880,9 +23880,9 @@ var require_default_safe = __commonJS({
23880
23880
  }
23881
23881
  });
23882
23882
 
23883
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js
23883
+ // ../../node_modules/js-yaml/lib/js-yaml/type/js/undefined.js
23884
23884
  var require_undefined = __commonJS({
23885
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/js/undefined.js"(exports2, module2) {
23885
+ "../../node_modules/js-yaml/lib/js-yaml/type/js/undefined.js"(exports2, module2) {
23886
23886
  "use strict";
23887
23887
  var Type = require_type();
23888
23888
  function resolveJavascriptUndefined() {
@@ -23906,9 +23906,9 @@ var require_undefined = __commonJS({
23906
23906
  }
23907
23907
  });
23908
23908
 
23909
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js
23909
+ // ../../node_modules/js-yaml/lib/js-yaml/type/js/regexp.js
23910
23910
  var require_regexp = __commonJS({
23911
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/js/regexp.js"(exports2, module2) {
23911
+ "../../node_modules/js-yaml/lib/js-yaml/type/js/regexp.js"(exports2, module2) {
23912
23912
  "use strict";
23913
23913
  var Type = require_type();
23914
23914
  function resolveJavascriptRegExp(data) {
@@ -23938,9 +23938,9 @@ var require_regexp = __commonJS({
23938
23938
  }
23939
23939
  });
23940
23940
 
23941
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/js/function.js
23941
+ // ../../node_modules/js-yaml/lib/js-yaml/type/js/function.js
23942
23942
  var require_function = __commonJS({
23943
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/type/js/function.js"(exports2, module2) {
23943
+ "../../node_modules/js-yaml/lib/js-yaml/type/js/function.js"(exports2, module2) {
23944
23944
  "use strict";
23945
23945
  var esprima;
23946
23946
  try {
@@ -23983,9 +23983,9 @@ var require_function = __commonJS({
23983
23983
  }
23984
23984
  });
23985
23985
 
23986
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/default_full.js
23986
+ // ../../node_modules/js-yaml/lib/js-yaml/schema/default_full.js
23987
23987
  var require_default_full = __commonJS({
23988
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/schema/default_full.js"(exports2, module2) {
23988
+ "../../node_modules/js-yaml/lib/js-yaml/schema/default_full.js"(exports2, module2) {
23989
23989
  "use strict";
23990
23990
  var Schema = require_schema4();
23991
23991
  module2.exports = Schema.DEFAULT = new Schema({
@@ -24001,9 +24001,9 @@ var require_default_full = __commonJS({
24001
24001
  }
24002
24002
  });
24003
24003
 
24004
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/loader.js
24004
+ // ../../node_modules/js-yaml/lib/js-yaml/loader.js
24005
24005
  var require_loader = __commonJS({
24006
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/loader.js"(exports2, module2) {
24006
+ "../../node_modules/js-yaml/lib/js-yaml/loader.js"(exports2, module2) {
24007
24007
  "use strict";
24008
24008
  var common = require_common3(), YAMLException = require_exception(), Mark = require_mark(), DEFAULT_SAFE_SCHEMA = require_default_safe(), DEFAULT_FULL_SCHEMA = require_default_full(), _hasOwnProperty = Object.prototype.hasOwnProperty, CONTEXT_FLOW_IN = 1, CONTEXT_FLOW_OUT = 2, CONTEXT_BLOCK_IN = 3, CONTEXT_BLOCK_OUT = 4, CHOMPING_CLIP = 1, CHOMPING_STRIP = 2, CHOMPING_KEEP = 3, PATTERN_NON_PRINTABLE = /[\x00-\x08\x0B\x0C\x0E-\x1F\x7F-\x84\x86-\x9F\uFFFE\uFFFF]|[\uD800-\uDBFF](?![\uDC00-\uDFFF])|(?:[^\uD800-\uDBFF]|^)[\uDC00-\uDFFF]/, PATTERN_NON_ASCII_LINE_BREAKS = /[\x85\u2028\u2029]/, PATTERN_FLOW_INDICATORS = /[,\[\]\{\}]/, PATTERN_TAG_HANDLE = /^(?:!|!!|![a-z\-]+!)$/i, PATTERN_TAG_URI = /^(?:!|[^,\[\]\{\}])(?:%[0-9a-f]{2}|[0-9a-z\-#;\/\?:@&=\+\$,_\.!~\*'\(\)\[\]])*$/i;
24009
24009
  function _class(obj) {
@@ -24416,9 +24416,9 @@ var require_loader = __commonJS({
24416
24416
  }
24417
24417
  });
24418
24418
 
24419
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/dumper.js
24419
+ // ../../node_modules/js-yaml/lib/js-yaml/dumper.js
24420
24420
  var require_dumper = __commonJS({
24421
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml/dumper.js"(exports2, module2) {
24421
+ "../../node_modules/js-yaml/lib/js-yaml/dumper.js"(exports2, module2) {
24422
24422
  "use strict";
24423
24423
  var common = require_common3(), YAMLException = require_exception(), DEFAULT_FULL_SCHEMA = require_default_full(), DEFAULT_SAFE_SCHEMA = require_default_safe(), _toString = Object.prototype.toString, _hasOwnProperty = Object.prototype.hasOwnProperty, CHAR_TAB = 9, CHAR_LINE_FEED = 10, CHAR_CARRIAGE_RETURN = 13, CHAR_SPACE = 32, CHAR_EXCLAMATION = 33, CHAR_DOUBLE_QUOTE = 34, CHAR_SHARP = 35, CHAR_PERCENT = 37, CHAR_AMPERSAND = 38, CHAR_SINGLE_QUOTE = 39, CHAR_ASTERISK = 42, CHAR_COMMA = 44, CHAR_MINUS = 45, CHAR_COLON = 58, CHAR_EQUALS = 61, CHAR_GREATER_THAN = 62, CHAR_QUESTION = 63, CHAR_COMMERCIAL_AT = 64, CHAR_LEFT_SQUARE_BRACKET = 91, CHAR_RIGHT_SQUARE_BRACKET = 93, CHAR_GRAVE_ACCENT = 96, CHAR_LEFT_CURLY_BRACKET = 123, CHAR_VERTICAL_LINE = 124, CHAR_RIGHT_CURLY_BRACKET = 125, ESCAPE_SEQUENCES = {};
24424
24424
  ESCAPE_SEQUENCES[0] = "\\0";
@@ -24710,9 +24710,9 @@ var require_dumper = __commonJS({
24710
24710
  }
24711
24711
  });
24712
24712
 
24713
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml.js
24713
+ // ../../node_modules/js-yaml/lib/js-yaml.js
24714
24714
  var require_js_yaml = __commonJS({
24715
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/lib/js-yaml.js"(exports2, module2) {
24715
+ "../../node_modules/js-yaml/lib/js-yaml.js"(exports2, module2) {
24716
24716
  "use strict";
24717
24717
  var loader = require_loader(), dumper = require_dumper();
24718
24718
  function deprecated(name) {
@@ -24744,9 +24744,9 @@ var require_js_yaml = __commonJS({
24744
24744
  }
24745
24745
  });
24746
24746
 
24747
- // ../../node_modules/@expo/package-manager/node_modules/js-yaml/index.js
24747
+ // ../../node_modules/js-yaml/index.js
24748
24748
  var require_js_yaml2 = __commonJS({
24749
- "../../node_modules/@expo/package-manager/node_modules/js-yaml/index.js"(exports2, module2) {
24749
+ "../../node_modules/js-yaml/index.js"(exports2, module2) {
24750
24750
  "use strict";
24751
24751
  var yaml = require_js_yaml();
24752
24752
  module2.exports = yaml;
@@ -26253,7 +26253,7 @@ var globby2 = Object.assign(function(patterns, options) {
26253
26253
  // package.json
26254
26254
  var package_default = {
26255
26255
  name: "create-tamagui",
26256
- version: "1.95.3",
26256
+ version: "1.97.0",
26257
26257
  bin: "./run.js",
26258
26258
  main: "dist",
26259
26259
  files: [
@@ -26274,7 +26274,7 @@ var package_default = {
26274
26274
  devDependencies: {
26275
26275
  "@expo/package-manager": "^1.1.2",
26276
26276
  "@playwright/test": "^1.40.1",
26277
- "@tamagui/build": "1.95.3",
26277
+ "@tamagui/build": "1.97.0",
26278
26278
  "@types/async-retry": "1.4.2",
26279
26279
  "@types/cross-spawn": "^6.0.2",
26280
26280
  "@types/node": "^16.11.9",
@@ -27256,7 +27256,7 @@ minimatch.Minimatch = Minimatch;
27256
27256
  minimatch.escape = escape;
27257
27257
  minimatch.unescape = unescape;
27258
27258
 
27259
- // ../../node_modules/path-scurry/node_modules/lru-cache/dist/mjs/index.js
27259
+ // ../../node_modules/rimraf/node_modules/lru-cache/dist/mjs/index.js
27260
27260
  var perf = typeof performance == "object" && performance && typeof performance.now == "function" ? performance : Date, warned = /* @__PURE__ */ new Set(), PROCESS = typeof process == "object" && process ? process : {}, emitWarning = (msg, type, code, fn) => {
27261
27261
  typeof PROCESS.emitWarning == "function" ? PROCESS.emitWarning(msg, type, code, fn) : console.error(`[${code}] ${type}: ${msg}`);
27262
27262
  }, AC = globalThis.AbortController, AS = globalThis.AbortSignal;
@@ -28032,10 +28032,10 @@ var shouldWarn = (code) => !warned.has(code), TYPE = Symbol("type"), isPosInt =
28032
28032
  }
28033
28033
  };
28034
28034
 
28035
- // ../../node_modules/path-scurry/dist/mjs/index.js
28035
+ // ../../node_modules/rimraf/node_modules/path-scurry/dist/mjs/index.js
28036
28036
  var import_path3 = require("path"), import_url = require("url"), actualFS = __toESM(require("fs"), 1), import_fs2 = require("fs"), import_promises = require("fs/promises");
28037
28037
 
28038
- // ../../node_modules/path-scurry/node_modules/minipass/dist/mjs/index.js
28038
+ // ../../node_modules/rimraf/node_modules/minipass/dist/mjs/index.js
28039
28039
  var import_events = require("events"), import_stream = __toESM(require("stream"), 1), import_string_decoder = require("string_decoder"), proc = typeof process == "object" && process ? process : {
28040
28040
  stdout: null,
28041
28041
  stderr: null
@@ -28591,7 +28591,7 @@ s.pipe !== import_stream.default.Writable.prototype.pipe, isWritable = (s) => !!
28591
28591
  }
28592
28592
  };
28593
28593
 
28594
- // ../../node_modules/path-scurry/dist/mjs/index.js
28594
+ // ../../node_modules/rimraf/node_modules/path-scurry/dist/mjs/index.js
28595
28595
  var realpathSync = import_fs2.realpathSync.native, defaultFS = {
28596
28596
  lstatSync: import_fs2.lstatSync,
28597
28597
  readdir: import_fs2.readdir,
@@ -29999,562 +29999,6 @@ var isPatternList = (pl) => pl.length >= 1, isGlobList = (gl) => gl.length >= 1,
29999
29999
  }
30000
30000
  };
30001
30001
 
30002
- // ../../node_modules/rimraf/node_modules/minipass/dist/mjs/index.js
30003
- var import_events2 = require("events"), import_stream2 = __toESM(require("stream"), 1), import_string_decoder2 = require("string_decoder"), proc2 = typeof process == "object" && process ? process : {
30004
- stdout: null,
30005
- stderr: null
30006
- }, isStream2 = (s) => !!s && typeof s == "object" && (s instanceof Minipass2 || s instanceof import_stream2.default || isReadable2(s) || isWritable2(s)), isReadable2 = (s) => !!s && typeof s == "object" && s instanceof import_events2.EventEmitter && typeof s.pipe == "function" && // node core Writable streams have a pipe() method, but it throws
30007
- s.pipe !== import_stream2.default.Writable.prototype.pipe, isWritable2 = (s) => !!s && typeof s == "object" && s instanceof import_events2.EventEmitter && typeof s.write == "function" && typeof s.end == "function", EOF2 = Symbol("EOF"), MAYBE_EMIT_END2 = Symbol("maybeEmitEnd"), EMITTED_END2 = Symbol("emittedEnd"), EMITTING_END2 = Symbol("emittingEnd"), EMITTED_ERROR2 = Symbol("emittedError"), CLOSED2 = Symbol("closed"), READ2 = Symbol("read"), FLUSH2 = Symbol("flush"), FLUSHCHUNK2 = Symbol("flushChunk"), ENCODING2 = Symbol("encoding"), DECODER2 = Symbol("decoder"), FLOWING2 = Symbol("flowing"), PAUSED2 = Symbol("paused"), RESUME2 = Symbol("resume"), BUFFER2 = Symbol("buffer"), PIPES2 = Symbol("pipes"), BUFFERLENGTH2 = Symbol("bufferLength"), BUFFERPUSH2 = Symbol("bufferPush"), BUFFERSHIFT2 = Symbol("bufferShift"), OBJECTMODE2 = Symbol("objectMode"), DESTROYED2 = Symbol("destroyed"), ERROR2 = Symbol("error"), EMITDATA2 = Symbol("emitData"), EMITEND3 = Symbol("emitEnd"), EMITEND22 = Symbol("emitEnd2"), ASYNC2 = Symbol("async"), ABORT2 = Symbol("abort"), ABORTED2 = Symbol("aborted"), SIGNAL2 = Symbol("signal"), DATALISTENERS2 = Symbol("dataListeners"), DISCARDED2 = Symbol("discarded"), defer2 = (fn) => Promise.resolve().then(fn), nodefer2 = (fn) => fn(), isEndish2 = (ev) => ev === "end" || ev === "finish" || ev === "prefinish", isArrayBufferLike2 = (b) => b instanceof ArrayBuffer || !!b && typeof b == "object" && b.constructor && b.constructor.name === "ArrayBuffer" && b.byteLength >= 0, isArrayBufferView2 = (b) => !Buffer.isBuffer(b) && ArrayBuffer.isView(b), Pipe2 = class {
30008
- src;
30009
- dest;
30010
- opts;
30011
- ondrain;
30012
- constructor(src, dest, opts) {
30013
- this.src = src, this.dest = dest, this.opts = opts, this.ondrain = () => src[RESUME2](), this.dest.on("drain", this.ondrain);
30014
- }
30015
- unpipe() {
30016
- this.dest.removeListener("drain", this.ondrain);
30017
- }
30018
- // only here for the prototype
30019
- /* c8 ignore start */
30020
- proxyErrors(_er) {
30021
- }
30022
- /* c8 ignore stop */
30023
- end() {
30024
- this.unpipe(), this.opts.end && this.dest.end();
30025
- }
30026
- }, PipeProxyErrors2 = class extends Pipe2 {
30027
- unpipe() {
30028
- this.src.removeListener("error", this.proxyErrors), super.unpipe();
30029
- }
30030
- constructor(src, dest, opts) {
30031
- super(src, dest, opts), this.proxyErrors = (er) => dest.emit("error", er), src.on("error", this.proxyErrors);
30032
- }
30033
- }, isObjectModeOptions2 = (o) => !!o.objectMode, isEncodingOptions2 = (o) => !o.objectMode && !!o.encoding && o.encoding !== "buffer", Minipass2 = class extends import_events2.EventEmitter {
30034
- [FLOWING2] = !1;
30035
- [PAUSED2] = !1;
30036
- [PIPES2] = [];
30037
- [BUFFER2] = [];
30038
- [OBJECTMODE2];
30039
- [ENCODING2];
30040
- [ASYNC2];
30041
- [DECODER2];
30042
- [EOF2] = !1;
30043
- [EMITTED_END2] = !1;
30044
- [EMITTING_END2] = !1;
30045
- [CLOSED2] = !1;
30046
- [EMITTED_ERROR2] = null;
30047
- [BUFFERLENGTH2] = 0;
30048
- [DESTROYED2] = !1;
30049
- [SIGNAL2];
30050
- [ABORTED2] = !1;
30051
- [DATALISTENERS2] = 0;
30052
- [DISCARDED2] = !1;
30053
- /**
30054
- * true if the stream can be written
30055
- */
30056
- writable = !0;
30057
- /**
30058
- * true if the stream can be read
30059
- */
30060
- readable = !0;
30061
- /**
30062
- * If `RType` is Buffer, then options do not need to be provided.
30063
- * Otherwise, an options object must be provided to specify either
30064
- * {@link Minipass.SharedOptions.objectMode} or
30065
- * {@link Minipass.SharedOptions.encoding}, as appropriate.
30066
- */
30067
- constructor(...args) {
30068
- let options = args[0] || {};
30069
- if (super(), options.objectMode && typeof options.encoding == "string")
30070
- throw new TypeError("Encoding and objectMode may not be used together");
30071
- isObjectModeOptions2(options) ? (this[OBJECTMODE2] = !0, this[ENCODING2] = null) : isEncodingOptions2(options) ? (this[ENCODING2] = options.encoding, this[OBJECTMODE2] = !1) : (this[OBJECTMODE2] = !1, this[ENCODING2] = null), this[ASYNC2] = !!options.async, this[DECODER2] = this[ENCODING2] ? new import_string_decoder2.StringDecoder(this[ENCODING2]) : null, options && options.debugExposeBuffer === !0 && Object.defineProperty(this, "buffer", { get: () => this[BUFFER2] }), options && options.debugExposePipes === !0 && Object.defineProperty(this, "pipes", { get: () => this[PIPES2] });
30072
- let { signal } = options;
30073
- signal && (this[SIGNAL2] = signal, signal.aborted ? this[ABORT2]() : signal.addEventListener("abort", () => this[ABORT2]()));
30074
- }
30075
- /**
30076
- * The amount of data stored in the buffer waiting to be read.
30077
- *
30078
- * For Buffer strings, this will be the total byte length.
30079
- * For string encoding streams, this will be the string character length,
30080
- * according to JavaScript's `string.length` logic.
30081
- * For objectMode streams, this is a count of the items waiting to be
30082
- * emitted.
30083
- */
30084
- get bufferLength() {
30085
- return this[BUFFERLENGTH2];
30086
- }
30087
- /**
30088
- * The `BufferEncoding` currently in use, or `null`
30089
- */
30090
- get encoding() {
30091
- return this[ENCODING2];
30092
- }
30093
- /**
30094
- * @deprecated - This is a read only property
30095
- */
30096
- set encoding(_enc) {
30097
- throw new Error("Encoding must be set at instantiation time");
30098
- }
30099
- /**
30100
- * @deprecated - Encoding may only be set at instantiation time
30101
- */
30102
- setEncoding(_enc) {
30103
- throw new Error("Encoding must be set at instantiation time");
30104
- }
30105
- /**
30106
- * True if this is an objectMode stream
30107
- */
30108
- get objectMode() {
30109
- return this[OBJECTMODE2];
30110
- }
30111
- /**
30112
- * @deprecated - This is a read-only property
30113
- */
30114
- set objectMode(_om) {
30115
- throw new Error("objectMode must be set at instantiation time");
30116
- }
30117
- /**
30118
- * true if this is an async stream
30119
- */
30120
- get async() {
30121
- return this[ASYNC2];
30122
- }
30123
- /**
30124
- * Set to true to make this stream async.
30125
- *
30126
- * Once set, it cannot be unset, as this would potentially cause incorrect
30127
- * behavior. Ie, a sync stream can be made async, but an async stream
30128
- * cannot be safely made sync.
30129
- */
30130
- set async(a) {
30131
- this[ASYNC2] = this[ASYNC2] || !!a;
30132
- }
30133
- // drop everything and get out of the flow completely
30134
- [ABORT2]() {
30135
- this[ABORTED2] = !0, this.emit("abort", this[SIGNAL2]?.reason), this.destroy(this[SIGNAL2]?.reason);
30136
- }
30137
- /**
30138
- * True if the stream has been aborted.
30139
- */
30140
- get aborted() {
30141
- return this[ABORTED2];
30142
- }
30143
- /**
30144
- * No-op setter. Stream aborted status is set via the AbortSignal provided
30145
- * in the constructor options.
30146
- */
30147
- set aborted(_) {
30148
- }
30149
- write(chunk, encoding, cb) {
30150
- if (this[ABORTED2])
30151
- return !1;
30152
- if (this[EOF2])
30153
- throw new Error("write after end");
30154
- if (this[DESTROYED2])
30155
- return this.emit("error", Object.assign(new Error("Cannot call write after a stream was destroyed"), { code: "ERR_STREAM_DESTROYED" })), !0;
30156
- typeof encoding == "function" && (cb = encoding, encoding = "utf8"), encoding || (encoding = "utf8");
30157
- let fn = this[ASYNC2] ? defer2 : nodefer2;
30158
- if (!this[OBJECTMODE2] && !Buffer.isBuffer(chunk)) {
30159
- if (isArrayBufferView2(chunk))
30160
- chunk = Buffer.from(chunk.buffer, chunk.byteOffset, chunk.byteLength);
30161
- else if (isArrayBufferLike2(chunk))
30162
- chunk = Buffer.from(chunk);
30163
- else if (typeof chunk != "string")
30164
- throw new Error("Non-contiguous data written to non-objectMode stream");
30165
- }
30166
- return this[OBJECTMODE2] ? (this[FLOWING2] && this[BUFFERLENGTH2] !== 0 && this[FLUSH2](!0), this[FLOWING2] ? this.emit("data", chunk) : this[BUFFERPUSH2](chunk), this[BUFFERLENGTH2] !== 0 && this.emit("readable"), cb && fn(cb), this[FLOWING2]) : chunk.length ? (typeof chunk == "string" && // unless it is a string already ready for us to use
30167
- !(encoding === this[ENCODING2] && !this[DECODER2]?.lastNeed) && (chunk = Buffer.from(chunk, encoding)), Buffer.isBuffer(chunk) && this[ENCODING2] && (chunk = this[DECODER2].write(chunk)), this[FLOWING2] && this[BUFFERLENGTH2] !== 0 && this[FLUSH2](!0), this[FLOWING2] ? this.emit("data", chunk) : this[BUFFERPUSH2](chunk), this[BUFFERLENGTH2] !== 0 && this.emit("readable"), cb && fn(cb), this[FLOWING2]) : (this[BUFFERLENGTH2] !== 0 && this.emit("readable"), cb && fn(cb), this[FLOWING2]);
30168
- }
30169
- /**
30170
- * Low-level explicit read method.
30171
- *
30172
- * In objectMode, the argument is ignored, and one item is returned if
30173
- * available.
30174
- *
30175
- * `n` is the number of bytes (or in the case of encoding streams,
30176
- * characters) to consume. If `n` is not provided, then the entire buffer
30177
- * is returned, or `null` is returned if no data is available.
30178
- *
30179
- * If `n` is greater that the amount of data in the internal buffer,
30180
- * then `null` is returned.
30181
- */
30182
- read(n) {
30183
- if (this[DESTROYED2])
30184
- return null;
30185
- if (this[DISCARDED2] = !1, this[BUFFERLENGTH2] === 0 || n === 0 || n && n > this[BUFFERLENGTH2])
30186
- return this[MAYBE_EMIT_END2](), null;
30187
- this[OBJECTMODE2] && (n = null), this[BUFFER2].length > 1 && !this[OBJECTMODE2] && (this[BUFFER2] = [
30188
- this[ENCODING2] ? this[BUFFER2].join("") : Buffer.concat(this[BUFFER2], this[BUFFERLENGTH2])
30189
- ]);
30190
- let ret = this[READ2](n || null, this[BUFFER2][0]);
30191
- return this[MAYBE_EMIT_END2](), ret;
30192
- }
30193
- [READ2](n, chunk) {
30194
- if (this[OBJECTMODE2])
30195
- this[BUFFERSHIFT2]();
30196
- else {
30197
- let c = chunk;
30198
- n === c.length || n === null ? this[BUFFERSHIFT2]() : typeof c == "string" ? (this[BUFFER2][0] = c.slice(n), chunk = c.slice(0, n), this[BUFFERLENGTH2] -= n) : (this[BUFFER2][0] = c.subarray(n), chunk = c.subarray(0, n), this[BUFFERLENGTH2] -= n);
30199
- }
30200
- return this.emit("data", chunk), !this[BUFFER2].length && !this[EOF2] && this.emit("drain"), chunk;
30201
- }
30202
- end(chunk, encoding, cb) {
30203
- return typeof chunk == "function" && (cb = chunk, chunk = void 0), typeof encoding == "function" && (cb = encoding, encoding = "utf8"), chunk !== void 0 && this.write(chunk, encoding), cb && this.once("end", cb), this[EOF2] = !0, this.writable = !1, (this[FLOWING2] || !this[PAUSED2]) && this[MAYBE_EMIT_END2](), this;
30204
- }
30205
- // don't let the internal resume be overwritten
30206
- [RESUME2]() {
30207
- this[DESTROYED2] || (!this[DATALISTENERS2] && !this[PIPES2].length && (this[DISCARDED2] = !0), this[PAUSED2] = !1, this[FLOWING2] = !0, this.emit("resume"), this[BUFFER2].length ? this[FLUSH2]() : this[EOF2] ? this[MAYBE_EMIT_END2]() : this.emit("drain"));
30208
- }
30209
- /**
30210
- * Resume the stream if it is currently in a paused state
30211
- *
30212
- * If called when there are no pipe destinations or `data` event listeners,
30213
- * this will place the stream in a "discarded" state, where all data will
30214
- * be thrown away. The discarded state is removed if a pipe destination or
30215
- * data handler is added, if pause() is called, or if any synchronous or
30216
- * asynchronous iteration is started.
30217
- */
30218
- resume() {
30219
- return this[RESUME2]();
30220
- }
30221
- /**
30222
- * Pause the stream
30223
- */
30224
- pause() {
30225
- this[FLOWING2] = !1, this[PAUSED2] = !0, this[DISCARDED2] = !1;
30226
- }
30227
- /**
30228
- * true if the stream has been forcibly destroyed
30229
- */
30230
- get destroyed() {
30231
- return this[DESTROYED2];
30232
- }
30233
- /**
30234
- * true if the stream is currently in a flowing state, meaning that
30235
- * any writes will be immediately emitted.
30236
- */
30237
- get flowing() {
30238
- return this[FLOWING2];
30239
- }
30240
- /**
30241
- * true if the stream is currently in a paused state
30242
- */
30243
- get paused() {
30244
- return this[PAUSED2];
30245
- }
30246
- [BUFFERPUSH2](chunk) {
30247
- this[OBJECTMODE2] ? this[BUFFERLENGTH2] += 1 : this[BUFFERLENGTH2] += chunk.length, this[BUFFER2].push(chunk);
30248
- }
30249
- [BUFFERSHIFT2]() {
30250
- return this[OBJECTMODE2] ? this[BUFFERLENGTH2] -= 1 : this[BUFFERLENGTH2] -= this[BUFFER2][0].length, this[BUFFER2].shift();
30251
- }
30252
- [FLUSH2](noDrain = !1) {
30253
- do
30254
- ;
30255
- while (this[FLUSHCHUNK2](this[BUFFERSHIFT2]()) && this[BUFFER2].length);
30256
- !noDrain && !this[BUFFER2].length && !this[EOF2] && this.emit("drain");
30257
- }
30258
- [FLUSHCHUNK2](chunk) {
30259
- return this.emit("data", chunk), this[FLOWING2];
30260
- }
30261
- /**
30262
- * Pipe all data emitted by this stream into the destination provided.
30263
- *
30264
- * Triggers the flow of data.
30265
- */
30266
- pipe(dest, opts) {
30267
- if (this[DESTROYED2])
30268
- return dest;
30269
- this[DISCARDED2] = !1;
30270
- let ended = this[EMITTED_END2];
30271
- return opts = opts || {}, dest === proc2.stdout || dest === proc2.stderr ? opts.end = !1 : opts.end = opts.end !== !1, opts.proxyErrors = !!opts.proxyErrors, ended ? opts.end && dest.end() : (this[PIPES2].push(opts.proxyErrors ? new PipeProxyErrors2(this, dest, opts) : new Pipe2(this, dest, opts)), this[ASYNC2] ? defer2(() => this[RESUME2]()) : this[RESUME2]()), dest;
30272
- }
30273
- /**
30274
- * Fully unhook a piped destination stream.
30275
- *
30276
- * If the destination stream was the only consumer of this stream (ie,
30277
- * there are no other piped destinations or `'data'` event listeners)
30278
- * then the flow of data will stop until there is another consumer or
30279
- * {@link Minipass#resume} is explicitly called.
30280
- */
30281
- unpipe(dest) {
30282
- let p = this[PIPES2].find((p2) => p2.dest === dest);
30283
- p && (this[PIPES2].length === 1 ? (this[FLOWING2] && this[DATALISTENERS2] === 0 && (this[FLOWING2] = !1), this[PIPES2] = []) : this[PIPES2].splice(this[PIPES2].indexOf(p), 1), p.unpipe());
30284
- }
30285
- /**
30286
- * Alias for {@link Minipass#on}
30287
- */
30288
- addListener(ev, handler) {
30289
- return this.on(ev, handler);
30290
- }
30291
- /**
30292
- * Mostly identical to `EventEmitter.on`, with the following
30293
- * behavior differences to prevent data loss and unnecessary hangs:
30294
- *
30295
- * - Adding a 'data' event handler will trigger the flow of data
30296
- *
30297
- * - Adding a 'readable' event handler when there is data waiting to be read
30298
- * will cause 'readable' to be emitted immediately.
30299
- *
30300
- * - Adding an 'endish' event handler ('end', 'finish', etc.) which has
30301
- * already passed will cause the event to be emitted immediately and all
30302
- * handlers removed.
30303
- *
30304
- * - Adding an 'error' event handler after an error has been emitted will
30305
- * cause the event to be re-emitted immediately with the error previously
30306
- * raised.
30307
- */
30308
- on(ev, handler) {
30309
- let ret = super.on(ev, handler);
30310
- if (ev === "data")
30311
- this[DISCARDED2] = !1, this[DATALISTENERS2]++, !this[PIPES2].length && !this[FLOWING2] && this[RESUME2]();
30312
- else if (ev === "readable" && this[BUFFERLENGTH2] !== 0)
30313
- super.emit("readable");
30314
- else if (isEndish2(ev) && this[EMITTED_END2])
30315
- super.emit(ev), this.removeAllListeners(ev);
30316
- else if (ev === "error" && this[EMITTED_ERROR2]) {
30317
- let h = handler;
30318
- this[ASYNC2] ? defer2(() => h.call(this, this[EMITTED_ERROR2])) : h.call(this, this[EMITTED_ERROR2]);
30319
- }
30320
- return ret;
30321
- }
30322
- /**
30323
- * Alias for {@link Minipass#off}
30324
- */
30325
- removeListener(ev, handler) {
30326
- return this.off(ev, handler);
30327
- }
30328
- /**
30329
- * Mostly identical to `EventEmitter.off`
30330
- *
30331
- * If a 'data' event handler is removed, and it was the last consumer
30332
- * (ie, there are no pipe destinations or other 'data' event listeners),
30333
- * then the flow of data will stop until there is another consumer or
30334
- * {@link Minipass#resume} is explicitly called.
30335
- */
30336
- off(ev, handler) {
30337
- let ret = super.off(ev, handler);
30338
- return ev === "data" && (this[DATALISTENERS2] = this.listeners("data").length, this[DATALISTENERS2] === 0 && !this[DISCARDED2] && !this[PIPES2].length && (this[FLOWING2] = !1)), ret;
30339
- }
30340
- /**
30341
- * Mostly identical to `EventEmitter.removeAllListeners`
30342
- *
30343
- * If all 'data' event handlers are removed, and they were the last consumer
30344
- * (ie, there are no pipe destinations), then the flow of data will stop
30345
- * until there is another consumer or {@link Minipass#resume} is explicitly
30346
- * called.
30347
- */
30348
- removeAllListeners(ev) {
30349
- let ret = super.removeAllListeners(ev);
30350
- return (ev === "data" || ev === void 0) && (this[DATALISTENERS2] = 0, !this[DISCARDED2] && !this[PIPES2].length && (this[FLOWING2] = !1)), ret;
30351
- }
30352
- /**
30353
- * true if the 'end' event has been emitted
30354
- */
30355
- get emittedEnd() {
30356
- return this[EMITTED_END2];
30357
- }
30358
- [MAYBE_EMIT_END2]() {
30359
- !this[EMITTING_END2] && !this[EMITTED_END2] && !this[DESTROYED2] && this[BUFFER2].length === 0 && this[EOF2] && (this[EMITTING_END2] = !0, this.emit("end"), this.emit("prefinish"), this.emit("finish"), this[CLOSED2] && this.emit("close"), this[EMITTING_END2] = !1);
30360
- }
30361
- /**
30362
- * Mostly identical to `EventEmitter.emit`, with the following
30363
- * behavior differences to prevent data loss and unnecessary hangs:
30364
- *
30365
- * If the stream has been destroyed, and the event is something other
30366
- * than 'close' or 'error', then `false` is returned and no handlers
30367
- * are called.
30368
- *
30369
- * If the event is 'end', and has already been emitted, then the event
30370
- * is ignored. If the stream is in a paused or non-flowing state, then
30371
- * the event will be deferred until data flow resumes. If the stream is
30372
- * async, then handlers will be called on the next tick rather than
30373
- * immediately.
30374
- *
30375
- * If the event is 'close', and 'end' has not yet been emitted, then
30376
- * the event will be deferred until after 'end' is emitted.
30377
- *
30378
- * If the event is 'error', and an AbortSignal was provided for the stream,
30379
- * and there are no listeners, then the event is ignored, matching the
30380
- * behavior of node core streams in the presense of an AbortSignal.
30381
- *
30382
- * If the event is 'finish' or 'prefinish', then all listeners will be
30383
- * removed after emitting the event, to prevent double-firing.
30384
- */
30385
- emit(ev, ...args) {
30386
- let data = args[0];
30387
- if (ev !== "error" && ev !== "close" && ev !== DESTROYED2 && this[DESTROYED2])
30388
- return !1;
30389
- if (ev === "data")
30390
- return !this[OBJECTMODE2] && !data ? !1 : this[ASYNC2] ? (defer2(() => this[EMITDATA2](data)), !0) : this[EMITDATA2](data);
30391
- if (ev === "end")
30392
- return this[EMITEND3]();
30393
- if (ev === "close") {
30394
- if (this[CLOSED2] = !0, !this[EMITTED_END2] && !this[DESTROYED2])
30395
- return !1;
30396
- let ret2 = super.emit("close");
30397
- return this.removeAllListeners("close"), ret2;
30398
- } else if (ev === "error") {
30399
- this[EMITTED_ERROR2] = data, super.emit(ERROR2, data);
30400
- let ret2 = !this[SIGNAL2] || this.listeners("error").length ? super.emit("error", data) : !1;
30401
- return this[MAYBE_EMIT_END2](), ret2;
30402
- } else if (ev === "resume") {
30403
- let ret2 = super.emit("resume");
30404
- return this[MAYBE_EMIT_END2](), ret2;
30405
- } else if (ev === "finish" || ev === "prefinish") {
30406
- let ret2 = super.emit(ev);
30407
- return this.removeAllListeners(ev), ret2;
30408
- }
30409
- let ret = super.emit(ev, ...args);
30410
- return this[MAYBE_EMIT_END2](), ret;
30411
- }
30412
- [EMITDATA2](data) {
30413
- for (let p of this[PIPES2])
30414
- p.dest.write(data) === !1 && this.pause();
30415
- let ret = this[DISCARDED2] ? !1 : super.emit("data", data);
30416
- return this[MAYBE_EMIT_END2](), ret;
30417
- }
30418
- [EMITEND3]() {
30419
- return this[EMITTED_END2] ? !1 : (this[EMITTED_END2] = !0, this.readable = !1, this[ASYNC2] ? (defer2(() => this[EMITEND22]()), !0) : this[EMITEND22]());
30420
- }
30421
- [EMITEND22]() {
30422
- if (this[DECODER2]) {
30423
- let data = this[DECODER2].end();
30424
- if (data) {
30425
- for (let p of this[PIPES2])
30426
- p.dest.write(data);
30427
- this[DISCARDED2] || super.emit("data", data);
30428
- }
30429
- }
30430
- for (let p of this[PIPES2])
30431
- p.end();
30432
- let ret = super.emit("end");
30433
- return this.removeAllListeners("end"), ret;
30434
- }
30435
- /**
30436
- * Return a Promise that resolves to an array of all emitted data once
30437
- * the stream ends.
30438
- */
30439
- async collect() {
30440
- let buf = Object.assign([], {
30441
- dataLength: 0
30442
- });
30443
- this[OBJECTMODE2] || (buf.dataLength = 0);
30444
- let p = this.promise();
30445
- return this.on("data", (c) => {
30446
- buf.push(c), this[OBJECTMODE2] || (buf.dataLength += c.length);
30447
- }), await p, buf;
30448
- }
30449
- /**
30450
- * Return a Promise that resolves to the concatenation of all emitted data
30451
- * once the stream ends.
30452
- *
30453
- * Not allowed on objectMode streams.
30454
- */
30455
- async concat() {
30456
- if (this[OBJECTMODE2])
30457
- throw new Error("cannot concat in objectMode");
30458
- let buf = await this.collect();
30459
- return this[ENCODING2] ? buf.join("") : Buffer.concat(buf, buf.dataLength);
30460
- }
30461
- /**
30462
- * Return a void Promise that resolves once the stream ends.
30463
- */
30464
- async promise() {
30465
- return new Promise((resolve7, reject) => {
30466
- this.on(DESTROYED2, () => reject(new Error("stream destroyed"))), this.on("error", (er) => reject(er)), this.on("end", () => resolve7());
30467
- });
30468
- }
30469
- /**
30470
- * Asynchronous `for await of` iteration.
30471
- *
30472
- * This will continue emitting all chunks until the stream terminates.
30473
- */
30474
- [Symbol.asyncIterator]() {
30475
- this[DISCARDED2] = !1;
30476
- let stopped = !1, stop = async () => (this.pause(), stopped = !0, { value: void 0, done: !0 });
30477
- return {
30478
- next: () => {
30479
- if (stopped)
30480
- return stop();
30481
- let res = this.read();
30482
- if (res !== null)
30483
- return Promise.resolve({ done: !1, value: res });
30484
- if (this[EOF2])
30485
- return stop();
30486
- let resolve7, reject, onerr = (er) => {
30487
- this.off("data", ondata), this.off("end", onend), this.off(DESTROYED2, ondestroy), stop(), reject(er);
30488
- }, ondata = (value) => {
30489
- this.off("error", onerr), this.off("end", onend), this.off(DESTROYED2, ondestroy), this.pause(), resolve7({ value, done: !!this[EOF2] });
30490
- }, onend = () => {
30491
- this.off("error", onerr), this.off("data", ondata), this.off(DESTROYED2, ondestroy), stop(), resolve7({ done: !0, value: void 0 });
30492
- }, ondestroy = () => onerr(new Error("stream destroyed"));
30493
- return new Promise((res2, rej) => {
30494
- reject = rej, resolve7 = res2, this.once(DESTROYED2, ondestroy), this.once("error", onerr), this.once("end", onend), this.once("data", ondata);
30495
- });
30496
- },
30497
- throw: stop,
30498
- return: stop,
30499
- [Symbol.asyncIterator]() {
30500
- return this;
30501
- }
30502
- };
30503
- }
30504
- /**
30505
- * Synchronous `for of` iteration.
30506
- *
30507
- * The iteration will terminate when the internal buffer runs out, even
30508
- * if the stream has not yet terminated.
30509
- */
30510
- [Symbol.iterator]() {
30511
- this[DISCARDED2] = !1;
30512
- let stopped = !1, stop = () => (this.pause(), this.off(ERROR2, stop), this.off(DESTROYED2, stop), this.off("end", stop), stopped = !0, { done: !0, value: void 0 }), next = () => {
30513
- if (stopped)
30514
- return stop();
30515
- let value = this.read();
30516
- return value === null ? stop() : { done: !1, value };
30517
- };
30518
- return this.once("end", stop), this.once(ERROR2, stop), this.once(DESTROYED2, stop), {
30519
- next,
30520
- throw: stop,
30521
- return: stop,
30522
- [Symbol.iterator]() {
30523
- return this;
30524
- }
30525
- };
30526
- }
30527
- /**
30528
- * Destroy a stream, preventing it from being used for any further purpose.
30529
- *
30530
- * If the stream has a `close()` method, then it will be called on
30531
- * destruction.
30532
- *
30533
- * After destruction, any attempt to write data, read data, or emit most
30534
- * events will be ignored.
30535
- *
30536
- * If an error argument is provided, then it will be emitted in an
30537
- * 'error' event.
30538
- */
30539
- destroy(er) {
30540
- if (this[DESTROYED2])
30541
- return er ? this.emit("error", er) : this.emit(DESTROYED2), this;
30542
- this[DESTROYED2] = !0, this[DISCARDED2] = !0, this[BUFFER2].length = 0, this[BUFFERLENGTH2] = 0;
30543
- let wc = this;
30544
- return typeof wc.close == "function" && !this[CLOSED2] && wc.close(), er ? this.emit("error", er) : this.emit(DESTROYED2), this;
30545
- }
30546
- /**
30547
- * Alias for {@link isStream}
30548
- *
30549
- * Former export location, maintained for backwards compatibility.
30550
- *
30551
- * @deprecated
30552
- */
30553
- static get isStream() {
30554
- return isStream2;
30555
- }
30556
- };
30557
-
30558
30002
  // ../../node_modules/rimraf/node_modules/glob/dist/mjs/ignore.js
30559
30003
  var defaultPlatform2 = typeof process == "object" && process && typeof process.platform == "string" ? process.platform : "linux", Ignore = class {
30560
30004
  relative;
@@ -30948,7 +30392,7 @@ var makeIgnore = (ignore, opts) => typeof ignore == "string" ? new Ignore([ignor
30948
30392
  }, GlobStream = class extends GlobUtil {
30949
30393
  results;
30950
30394
  constructor(patterns, path6, opts) {
30951
- super(patterns, path6, opts), this.results = new Minipass2({
30395
+ super(patterns, path6, opts), this.results = new Minipass({
30952
30396
  signal: this.signal,
30953
30397
  objectMode: !0
30954
30398
  }), this.results.on("drain", () => this.resume()), this.results.on("resume", () => this.resume());