@shopify/create-app 3.73.2 → 3.74.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.
Files changed (39) hide show
  1. package/dist/{chokidar-5LLC6S6D.js → chokidar-LYCK7UIU.js} +20 -574
  2. package/dist/chunk-3I3GQNEW.js +95 -0
  3. package/dist/{chunk-CRHXI6PS.js → chunk-5DBS6QOU.js} +102 -638
  4. package/dist/{chunk-7BLDARWR.js → chunk-7LUJ2Y3A.js} +40 -22
  5. package/dist/{chunk-Z2K6T5HO.js → chunk-A2CUF3IE.js} +2 -2
  6. package/dist/{chunk-BUFIEXZ5.js → chunk-B3YWYURY.js} +701 -141
  7. package/dist/{chunk-K7HGDAI4.js → chunk-CDBXAE2F.js} +20 -104
  8. package/dist/chunk-CP3BRHWK.js +33 -0
  9. package/dist/{chunk-5MQK53ZB.js → chunk-IS43CUN4.js} +490 -411
  10. package/dist/{chunk-OAZFIMJ3.js → chunk-LQ2ZKVR6.js} +45 -115
  11. package/dist/{chunk-3HBRMIPY.js → chunk-MW7RWHY5.js} +341 -211
  12. package/dist/{chunk-BOBYVF6Z.js → chunk-NBA3G6YQ.js} +55430 -36539
  13. package/dist/chunk-UV6IYZ3Q.js +15929 -0
  14. package/dist/{chunk-55N7E5WW.js → chunk-VS6UX7CH.js} +1849 -4319
  15. package/dist/{chunk-U52U2BAX.js → chunk-XENZIRXB.js} +640 -1166
  16. package/dist/{chunk-EZFQXNK5.js → chunk-ZKGBK6WQ.js} +2 -2
  17. package/dist/chunk-ZUCWDIGE.js +111 -0
  18. package/dist/{custom-oclif-loader-COXUWDRX.js → custom-oclif-loader-N77DUCDG.js} +9 -8
  19. package/dist/{del-WGII2Y5S.js → del-CKAQ44SX.js} +5 -5
  20. package/dist/{devtools-K7FXBBFZ.js → devtools-6LOQORRT.js} +2 -2
  21. package/dist/{error-handler-NLEDBRP4.js → error-handler-OVH57TNJ.js} +13 -12
  22. package/dist/hooks/postrun.js +14 -12
  23. package/dist/hooks/prerun.js +27 -12
  24. package/dist/{http-proxy-FXWKYHZ3.js → http-proxy-L3MCJRQS.js} +3 -2
  25. package/dist/index.js +19915 -17261
  26. package/dist/index.test.js +80 -133
  27. package/dist/lib-ZAUU5FOJ.js +11 -0
  28. package/dist/{local-WM5Y2GKE.js → local-ERLG2ZPN.js} +11 -10
  29. package/dist/{node-package-manager-U4IKWNRD.js → node-package-manager-YQCLDJCT.js} +10 -9
  30. package/dist/out-AZBX4ITJ.js +7 -0
  31. package/dist/{path-2HZUSAGR.js → path-GWAZZN2N.js} +3 -2
  32. package/dist/tsconfig.tsbuildinfo +1 -1
  33. package/dist/{ui-NMBUMLWD.js → ui-J4ZQO6RP.js} +9 -8
  34. package/oclif.manifest.json +1 -1
  35. package/package.json +3 -4
  36. package/dist/chunk-JHSNPAK4.js +0 -15742
  37. package/dist/chunk-TKDPJ4ZU.js +0 -27
  38. package/dist/lib-CKTRCGTR.js +0 -11
  39. package/dist/out-JR4DWQ2G.js +0 -7
@@ -2,11 +2,11 @@ import {
2
2
  require_normalize_path
3
3
  } from "./chunk-X7YTIMNN.js";
4
4
  import {
5
+ require_braces,
5
6
  require_glob_parent,
6
7
  require_is_glob,
7
- require_picomatch,
8
- require_to_regex_range
9
- } from "./chunk-BUFIEXZ5.js";
8
+ require_picomatch
9
+ } from "./chunk-B3YWYURY.js";
10
10
  import {
11
11
  __commonJS,
12
12
  __require,
@@ -205,552 +205,6 @@ var require_anymatch = __commonJS({
205
205
  }
206
206
  });
207
207
 
208
- // ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/utils.js
209
- var require_utils = __commonJS({
210
- "../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/utils.js"(exports) {
211
- "use strict";
212
- init_cjs_shims();
213
- exports.isInteger = (num) => typeof num == "number" ? Number.isInteger(num) : typeof num == "string" && num.trim() !== "" ? Number.isInteger(Number(num)) : !1;
214
- exports.find = (node, type) => node.nodes.find((node2) => node2.type === type);
215
- exports.exceedsLimit = (min, max, step = 1, limit) => limit === !1 || !exports.isInteger(min) || !exports.isInteger(max) ? !1 : (Number(max) - Number(min)) / Number(step) >= limit;
216
- exports.escapeNode = (block, n = 0, type) => {
217
- let node = block.nodes[n];
218
- node && (type && node.type === type || node.type === "open" || node.type === "close") && node.escaped !== !0 && (node.value = "\\" + node.value, node.escaped = !0);
219
- };
220
- exports.encloseBrace = (node) => node.type !== "brace" || node.commas >> 0 + node.ranges >> 0 ? !1 : (node.invalid = !0, !0);
221
- exports.isInvalidBrace = (block) => block.type !== "brace" ? !1 : block.invalid === !0 || block.dollar ? !0 : !(block.commas >> 0 + block.ranges >> 0) || block.open !== !0 || block.close !== !0 ? (block.invalid = !0, !0) : !1;
222
- exports.isOpenOrClose = (node) => node.type === "open" || node.type === "close" ? !0 : node.open === !0 || node.close === !0;
223
- exports.reduce = (nodes) => nodes.reduce((acc, node) => (node.type === "text" && acc.push(node.value), node.type === "range" && (node.type = "text"), acc), []);
224
- exports.flatten = (...args) => {
225
- let result = [], flat = (arr) => {
226
- for (let i = 0; i < arr.length; i++) {
227
- let ele = arr[i];
228
- Array.isArray(ele) ? flat(ele, result) : ele !== void 0 && result.push(ele);
229
- }
230
- return result;
231
- };
232
- return flat(args), result;
233
- };
234
- }
235
- });
236
-
237
- // ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/stringify.js
238
- var require_stringify = __commonJS({
239
- "../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/stringify.js"(exports, module) {
240
- "use strict";
241
- init_cjs_shims();
242
- var utils = require_utils();
243
- module.exports = (ast, options = {}) => {
244
- let stringify = (node, parent = {}) => {
245
- let invalidBlock = options.escapeInvalid && utils.isInvalidBrace(parent), invalidNode = node.invalid === !0 && options.escapeInvalid === !0, output = "";
246
- if (node.value)
247
- return (invalidBlock || invalidNode) && utils.isOpenOrClose(node) ? "\\" + node.value : node.value;
248
- if (node.value)
249
- return node.value;
250
- if (node.nodes)
251
- for (let child of node.nodes)
252
- output += stringify(child);
253
- return output;
254
- };
255
- return stringify(ast);
256
- };
257
- }
258
- });
259
-
260
- // ../../node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range/index.js
261
- var require_fill_range = __commonJS({
262
- "../../node_modules/.pnpm/fill-range@7.0.1/node_modules/fill-range/index.js"(exports, module) {
263
- "use strict";
264
- init_cjs_shims();
265
- var util = __require("util"), toRegexRange = require_to_regex_range(), isObject = (val) => val !== null && typeof val == "object" && !Array.isArray(val), transform = (toNumber) => (value) => toNumber === !0 ? Number(value) : String(value), isValidValue = (value) => typeof value == "number" || typeof value == "string" && value !== "", isNumber = (num) => Number.isInteger(+num), zeros = (input) => {
266
- let value = `${input}`, index = -1;
267
- if (value[0] === "-" && (value = value.slice(1)), value === "0") return !1;
268
- for (; value[++index] === "0"; ) ;
269
- return index > 0;
270
- }, stringify = (start, end, options) => typeof start == "string" || typeof end == "string" ? !0 : options.stringify === !0, pad = (input, maxLength, toNumber) => {
271
- if (maxLength > 0) {
272
- let dash = input[0] === "-" ? "-" : "";
273
- dash && (input = input.slice(1)), input = dash + input.padStart(dash ? maxLength - 1 : maxLength, "0");
274
- }
275
- return toNumber === !1 ? String(input) : input;
276
- }, toMaxLen = (input, maxLength) => {
277
- let negative = input[0] === "-" ? "-" : "";
278
- for (negative && (input = input.slice(1), maxLength--); input.length < maxLength; ) input = "0" + input;
279
- return negative ? "-" + input : input;
280
- }, toSequence = (parts, options) => {
281
- parts.negatives.sort((a, b) => a < b ? -1 : a > b ? 1 : 0), parts.positives.sort((a, b) => a < b ? -1 : a > b ? 1 : 0);
282
- let prefix = options.capture ? "" : "?:", positives = "", negatives = "", result;
283
- return parts.positives.length && (positives = parts.positives.join("|")), parts.negatives.length && (negatives = `-(${prefix}${parts.negatives.join("|")})`), positives && negatives ? result = `${positives}|${negatives}` : result = positives || negatives, options.wrap ? `(${prefix}${result})` : result;
284
- }, toRange = (a, b, isNumbers, options) => {
285
- if (isNumbers)
286
- return toRegexRange(a, b, { wrap: !1, ...options });
287
- let start = String.fromCharCode(a);
288
- if (a === b) return start;
289
- let stop = String.fromCharCode(b);
290
- return `[${start}-${stop}]`;
291
- }, toRegex = (start, end, options) => {
292
- if (Array.isArray(start)) {
293
- let wrap = options.wrap === !0, prefix = options.capture ? "" : "?:";
294
- return wrap ? `(${prefix}${start.join("|")})` : start.join("|");
295
- }
296
- return toRegexRange(start, end, options);
297
- }, rangeError = (...args) => new RangeError("Invalid range arguments: " + util.inspect(...args)), invalidRange = (start, end, options) => {
298
- if (options.strictRanges === !0) throw rangeError([start, end]);
299
- return [];
300
- }, invalidStep = (step, options) => {
301
- if (options.strictRanges === !0)
302
- throw new TypeError(`Expected step "${step}" to be a number`);
303
- return [];
304
- }, fillNumbers = (start, end, step = 1, options = {}) => {
305
- let a = Number(start), b = Number(end);
306
- if (!Number.isInteger(a) || !Number.isInteger(b)) {
307
- if (options.strictRanges === !0) throw rangeError([start, end]);
308
- return [];
309
- }
310
- a === 0 && (a = 0), b === 0 && (b = 0);
311
- let descending = a > b, startString = String(start), endString = String(end), stepString = String(step);
312
- step = Math.max(Math.abs(step), 1);
313
- let padded = zeros(startString) || zeros(endString) || zeros(stepString), maxLen = padded ? Math.max(startString.length, endString.length, stepString.length) : 0, toNumber = padded === !1 && stringify(start, end, options) === !1, format = options.transform || transform(toNumber);
314
- if (options.toRegex && step === 1)
315
- return toRange(toMaxLen(start, maxLen), toMaxLen(end, maxLen), !0, options);
316
- let parts = { negatives: [], positives: [] }, push = (num) => parts[num < 0 ? "negatives" : "positives"].push(Math.abs(num)), range = [], index = 0;
317
- for (; descending ? a >= b : a <= b; )
318
- options.toRegex === !0 && step > 1 ? push(a) : range.push(pad(format(a, index), maxLen, toNumber)), a = descending ? a - step : a + step, index++;
319
- return options.toRegex === !0 ? step > 1 ? toSequence(parts, options) : toRegex(range, null, { wrap: !1, ...options }) : range;
320
- }, fillLetters = (start, end, step = 1, options = {}) => {
321
- if (!isNumber(start) && start.length > 1 || !isNumber(end) && end.length > 1)
322
- return invalidRange(start, end, options);
323
- let format = options.transform || ((val) => String.fromCharCode(val)), a = `${start}`.charCodeAt(0), b = `${end}`.charCodeAt(0), descending = a > b, min = Math.min(a, b), max = Math.max(a, b);
324
- if (options.toRegex && step === 1)
325
- return toRange(min, max, !1, options);
326
- let range = [], index = 0;
327
- for (; descending ? a >= b : a <= b; )
328
- range.push(format(a, index)), a = descending ? a - step : a + step, index++;
329
- return options.toRegex === !0 ? toRegex(range, null, { wrap: !1, options }) : range;
330
- }, fill = (start, end, step, options = {}) => {
331
- if (end == null && isValidValue(start))
332
- return [start];
333
- if (!isValidValue(start) || !isValidValue(end))
334
- return invalidRange(start, end, options);
335
- if (typeof step == "function")
336
- return fill(start, end, 1, { transform: step });
337
- if (isObject(step))
338
- return fill(start, end, 0, step);
339
- let opts = { ...options };
340
- return opts.capture === !0 && (opts.wrap = !0), step = step || opts.step || 1, isNumber(step) ? isNumber(start) && isNumber(end) ? fillNumbers(start, end, step, opts) : fillLetters(start, end, Math.max(Math.abs(step), 1), opts) : step != null && !isObject(step) ? invalidStep(step, opts) : fill(start, end, 1, step);
341
- };
342
- module.exports = fill;
343
- }
344
- });
345
-
346
- // ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/compile.js
347
- var require_compile = __commonJS({
348
- "../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/compile.js"(exports, module) {
349
- "use strict";
350
- init_cjs_shims();
351
- var fill = require_fill_range(), utils = require_utils(), compile = (ast, options = {}) => {
352
- let walk = (node, parent = {}) => {
353
- let invalidBlock = utils.isInvalidBrace(parent), invalidNode = node.invalid === !0 && options.escapeInvalid === !0, invalid = invalidBlock === !0 || invalidNode === !0, prefix = options.escapeInvalid === !0 ? "\\" : "", output = "";
354
- if (node.isOpen === !0 || node.isClose === !0)
355
- return prefix + node.value;
356
- if (node.type === "open")
357
- return invalid ? prefix + node.value : "(";
358
- if (node.type === "close")
359
- return invalid ? prefix + node.value : ")";
360
- if (node.type === "comma")
361
- return node.prev.type === "comma" ? "" : invalid ? node.value : "|";
362
- if (node.value)
363
- return node.value;
364
- if (node.nodes && node.ranges > 0) {
365
- let args = utils.reduce(node.nodes), range = fill(...args, { ...options, wrap: !1, toRegex: !0 });
366
- if (range.length !== 0)
367
- return args.length > 1 && range.length > 1 ? `(${range})` : range;
368
- }
369
- if (node.nodes)
370
- for (let child of node.nodes)
371
- output += walk(child, node);
372
- return output;
373
- };
374
- return walk(ast);
375
- };
376
- module.exports = compile;
377
- }
378
- });
379
-
380
- // ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/expand.js
381
- var require_expand = __commonJS({
382
- "../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/expand.js"(exports, module) {
383
- "use strict";
384
- init_cjs_shims();
385
- var fill = require_fill_range(), stringify = require_stringify(), utils = require_utils(), append = (queue = "", stash = "", enclose = !1) => {
386
- let result = [];
387
- if (queue = [].concat(queue), stash = [].concat(stash), !stash.length) return queue;
388
- if (!queue.length)
389
- return enclose ? utils.flatten(stash).map((ele) => `{${ele}}`) : stash;
390
- for (let item of queue)
391
- if (Array.isArray(item))
392
- for (let value of item)
393
- result.push(append(value, stash, enclose));
394
- else
395
- for (let ele of stash)
396
- enclose === !0 && typeof ele == "string" && (ele = `{${ele}}`), result.push(Array.isArray(ele) ? append(item, ele, enclose) : item + ele);
397
- return utils.flatten(result);
398
- }, expand = (ast, options = {}) => {
399
- let rangeLimit = options.rangeLimit === void 0 ? 1e3 : options.rangeLimit, walk = (node, parent = {}) => {
400
- node.queue = [];
401
- let p = parent, q = parent.queue;
402
- for (; p.type !== "brace" && p.type !== "root" && p.parent; )
403
- p = p.parent, q = p.queue;
404
- if (node.invalid || node.dollar) {
405
- q.push(append(q.pop(), stringify(node, options)));
406
- return;
407
- }
408
- if (node.type === "brace" && node.invalid !== !0 && node.nodes.length === 2) {
409
- q.push(append(q.pop(), ["{}"]));
410
- return;
411
- }
412
- if (node.nodes && node.ranges > 0) {
413
- let args = utils.reduce(node.nodes);
414
- if (utils.exceedsLimit(...args, options.step, rangeLimit))
415
- throw new RangeError("expanded array length exceeds range limit. Use options.rangeLimit to increase or disable the limit.");
416
- let range = fill(...args, options);
417
- range.length === 0 && (range = stringify(node, options)), q.push(append(q.pop(), range)), node.nodes = [];
418
- return;
419
- }
420
- let enclose = utils.encloseBrace(node), queue = node.queue, block = node;
421
- for (; block.type !== "brace" && block.type !== "root" && block.parent; )
422
- block = block.parent, queue = block.queue;
423
- for (let i = 0; i < node.nodes.length; i++) {
424
- let child = node.nodes[i];
425
- if (child.type === "comma" && node.type === "brace") {
426
- i === 1 && queue.push(""), queue.push("");
427
- continue;
428
- }
429
- if (child.type === "close") {
430
- q.push(append(q.pop(), queue, enclose));
431
- continue;
432
- }
433
- if (child.value && child.type !== "open") {
434
- queue.push(append(queue.pop(), child.value));
435
- continue;
436
- }
437
- child.nodes && walk(child, node);
438
- }
439
- return queue;
440
- };
441
- return utils.flatten(walk(ast));
442
- };
443
- module.exports = expand;
444
- }
445
- });
446
-
447
- // ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/constants.js
448
- var require_constants = __commonJS({
449
- "../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/constants.js"(exports, module) {
450
- "use strict";
451
- init_cjs_shims();
452
- module.exports = {
453
- MAX_LENGTH: 1024 * 64,
454
- // Digits
455
- CHAR_0: "0",
456
- /* 0 */
457
- CHAR_9: "9",
458
- /* 9 */
459
- // Alphabet chars.
460
- CHAR_UPPERCASE_A: "A",
461
- /* A */
462
- CHAR_LOWERCASE_A: "a",
463
- /* a */
464
- CHAR_UPPERCASE_Z: "Z",
465
- /* Z */
466
- CHAR_LOWERCASE_Z: "z",
467
- /* z */
468
- CHAR_LEFT_PARENTHESES: "(",
469
- /* ( */
470
- CHAR_RIGHT_PARENTHESES: ")",
471
- /* ) */
472
- CHAR_ASTERISK: "*",
473
- /* * */
474
- // Non-alphabetic chars.
475
- CHAR_AMPERSAND: "&",
476
- /* & */
477
- CHAR_AT: "@",
478
- /* @ */
479
- CHAR_BACKSLASH: "\\",
480
- /* \ */
481
- CHAR_BACKTICK: "`",
482
- /* ` */
483
- CHAR_CARRIAGE_RETURN: "\r",
484
- /* \r */
485
- CHAR_CIRCUMFLEX_ACCENT: "^",
486
- /* ^ */
487
- CHAR_COLON: ":",
488
- /* : */
489
- CHAR_COMMA: ",",
490
- /* , */
491
- CHAR_DOLLAR: "$",
492
- /* . */
493
- CHAR_DOT: ".",
494
- /* . */
495
- CHAR_DOUBLE_QUOTE: '"',
496
- /* " */
497
- CHAR_EQUAL: "=",
498
- /* = */
499
- CHAR_EXCLAMATION_MARK: "!",
500
- /* ! */
501
- CHAR_FORM_FEED: "\f",
502
- /* \f */
503
- CHAR_FORWARD_SLASH: "/",
504
- /* / */
505
- CHAR_HASH: "#",
506
- /* # */
507
- CHAR_HYPHEN_MINUS: "-",
508
- /* - */
509
- CHAR_LEFT_ANGLE_BRACKET: "<",
510
- /* < */
511
- CHAR_LEFT_CURLY_BRACE: "{",
512
- /* { */
513
- CHAR_LEFT_SQUARE_BRACKET: "[",
514
- /* [ */
515
- CHAR_LINE_FEED: `
516
- `,
517
- /* \n */
518
- CHAR_NO_BREAK_SPACE: "\xA0",
519
- /* \u00A0 */
520
- CHAR_PERCENT: "%",
521
- /* % */
522
- CHAR_PLUS: "+",
523
- /* + */
524
- CHAR_QUESTION_MARK: "?",
525
- /* ? */
526
- CHAR_RIGHT_ANGLE_BRACKET: ">",
527
- /* > */
528
- CHAR_RIGHT_CURLY_BRACE: "}",
529
- /* } */
530
- CHAR_RIGHT_SQUARE_BRACKET: "]",
531
- /* ] */
532
- CHAR_SEMICOLON: ";",
533
- /* ; */
534
- CHAR_SINGLE_QUOTE: "'",
535
- /* ' */
536
- CHAR_SPACE: " ",
537
- /* */
538
- CHAR_TAB: " ",
539
- /* \t */
540
- CHAR_UNDERSCORE: "_",
541
- /* _ */
542
- CHAR_VERTICAL_LINE: "|",
543
- /* | */
544
- CHAR_ZERO_WIDTH_NOBREAK_SPACE: "\uFEFF"
545
- /* \uFEFF */
546
- };
547
- }
548
- });
549
-
550
- // ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/parse.js
551
- var require_parse = __commonJS({
552
- "../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/lib/parse.js"(exports, module) {
553
- "use strict";
554
- init_cjs_shims();
555
- var stringify = require_stringify(), {
556
- MAX_LENGTH,
557
- CHAR_BACKSLASH,
558
- /* \ */
559
- CHAR_BACKTICK,
560
- /* ` */
561
- CHAR_COMMA,
562
- /* , */
563
- CHAR_DOT,
564
- /* . */
565
- CHAR_LEFT_PARENTHESES,
566
- /* ( */
567
- CHAR_RIGHT_PARENTHESES,
568
- /* ) */
569
- CHAR_LEFT_CURLY_BRACE,
570
- /* { */
571
- CHAR_RIGHT_CURLY_BRACE,
572
- /* } */
573
- CHAR_LEFT_SQUARE_BRACKET,
574
- /* [ */
575
- CHAR_RIGHT_SQUARE_BRACKET,
576
- /* ] */
577
- CHAR_DOUBLE_QUOTE,
578
- /* " */
579
- CHAR_SINGLE_QUOTE,
580
- /* ' */
581
- CHAR_NO_BREAK_SPACE,
582
- CHAR_ZERO_WIDTH_NOBREAK_SPACE
583
- } = require_constants(), parse = (input, options = {}) => {
584
- if (typeof input != "string")
585
- throw new TypeError("Expected a string");
586
- let opts = options || {}, max = typeof opts.maxLength == "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
587
- if (input.length > max)
588
- throw new SyntaxError(`Input length (${input.length}), exceeds max characters (${max})`);
589
- let ast = { type: "root", input, nodes: [] }, stack = [ast], block = ast, prev = ast, brackets = 0, length = input.length, index = 0, depth = 0, value, memo = {}, advance = () => input[index++], push = (node) => {
590
- if (node.type === "text" && prev.type === "dot" && (prev.type = "text"), prev && prev.type === "text" && node.type === "text") {
591
- prev.value += node.value;
592
- return;
593
- }
594
- return block.nodes.push(node), node.parent = block, node.prev = prev, prev = node, node;
595
- };
596
- for (push({ type: "bos" }); index < length; )
597
- if (block = stack[stack.length - 1], value = advance(), !(value === CHAR_ZERO_WIDTH_NOBREAK_SPACE || value === CHAR_NO_BREAK_SPACE)) {
598
- if (value === CHAR_BACKSLASH) {
599
- push({ type: "text", value: (options.keepEscaping ? value : "") + advance() });
600
- continue;
601
- }
602
- if (value === CHAR_RIGHT_SQUARE_BRACKET) {
603
- push({ type: "text", value: "\\" + value });
604
- continue;
605
- }
606
- if (value === CHAR_LEFT_SQUARE_BRACKET) {
607
- brackets++;
608
- let closed = !0, next;
609
- for (; index < length && (next = advance()); ) {
610
- if (value += next, next === CHAR_LEFT_SQUARE_BRACKET) {
611
- brackets++;
612
- continue;
613
- }
614
- if (next === CHAR_BACKSLASH) {
615
- value += advance();
616
- continue;
617
- }
618
- if (next === CHAR_RIGHT_SQUARE_BRACKET && (brackets--, brackets === 0))
619
- break;
620
- }
621
- push({ type: "text", value });
622
- continue;
623
- }
624
- if (value === CHAR_LEFT_PARENTHESES) {
625
- block = push({ type: "paren", nodes: [] }), stack.push(block), push({ type: "text", value });
626
- continue;
627
- }
628
- if (value === CHAR_RIGHT_PARENTHESES) {
629
- if (block.type !== "paren") {
630
- push({ type: "text", value });
631
- continue;
632
- }
633
- block = stack.pop(), push({ type: "text", value }), block = stack[stack.length - 1];
634
- continue;
635
- }
636
- if (value === CHAR_DOUBLE_QUOTE || value === CHAR_SINGLE_QUOTE || value === CHAR_BACKTICK) {
637
- let open = value, next;
638
- for (options.keepQuotes !== !0 && (value = ""); index < length && (next = advance()); ) {
639
- if (next === CHAR_BACKSLASH) {
640
- value += next + advance();
641
- continue;
642
- }
643
- if (next === open) {
644
- options.keepQuotes === !0 && (value += next);
645
- break;
646
- }
647
- value += next;
648
- }
649
- push({ type: "text", value });
650
- continue;
651
- }
652
- if (value === CHAR_LEFT_CURLY_BRACE) {
653
- depth++;
654
- let brace = {
655
- type: "brace",
656
- open: !0,
657
- close: !1,
658
- dollar: prev.value && prev.value.slice(-1) === "$" || block.dollar === !0,
659
- depth,
660
- commas: 0,
661
- ranges: 0,
662
- nodes: []
663
- };
664
- block = push(brace), stack.push(block), push({ type: "open", value });
665
- continue;
666
- }
667
- if (value === CHAR_RIGHT_CURLY_BRACE) {
668
- if (block.type !== "brace") {
669
- push({ type: "text", value });
670
- continue;
671
- }
672
- let type = "close";
673
- block = stack.pop(), block.close = !0, push({ type, value }), depth--, block = stack[stack.length - 1];
674
- continue;
675
- }
676
- if (value === CHAR_COMMA && depth > 0) {
677
- if (block.ranges > 0) {
678
- block.ranges = 0;
679
- let open = block.nodes.shift();
680
- block.nodes = [open, { type: "text", value: stringify(block) }];
681
- }
682
- push({ type: "comma", value }), block.commas++;
683
- continue;
684
- }
685
- if (value === CHAR_DOT && depth > 0 && block.commas === 0) {
686
- let siblings = block.nodes;
687
- if (depth === 0 || siblings.length === 0) {
688
- push({ type: "text", value });
689
- continue;
690
- }
691
- if (prev.type === "dot") {
692
- if (block.range = [], prev.value += value, prev.type = "range", block.nodes.length !== 3 && block.nodes.length !== 5) {
693
- block.invalid = !0, block.ranges = 0, prev.type = "text";
694
- continue;
695
- }
696
- block.ranges++, block.args = [];
697
- continue;
698
- }
699
- if (prev.type === "range") {
700
- siblings.pop();
701
- let before = siblings[siblings.length - 1];
702
- before.value += prev.value + value, prev = before, block.ranges--;
703
- continue;
704
- }
705
- push({ type: "dot", value });
706
- continue;
707
- }
708
- push({ type: "text", value });
709
- }
710
- do
711
- if (block = stack.pop(), block.type !== "root") {
712
- block.nodes.forEach((node) => {
713
- node.nodes || (node.type === "open" && (node.isOpen = !0), node.type === "close" && (node.isClose = !0), node.nodes || (node.type = "text"), node.invalid = !0);
714
- });
715
- let parent = stack[stack.length - 1], index2 = parent.nodes.indexOf(block);
716
- parent.nodes.splice(index2, 1, ...block.nodes);
717
- }
718
- while (stack.length > 0);
719
- return push({ type: "eos" }), ast;
720
- };
721
- module.exports = parse;
722
- }
723
- });
724
-
725
- // ../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/index.js
726
- var require_braces = __commonJS({
727
- "../../node_modules/.pnpm/braces@3.0.2/node_modules/braces/index.js"(exports, module) {
728
- "use strict";
729
- init_cjs_shims();
730
- var stringify = require_stringify(), compile = require_compile(), expand = require_expand(), parse = require_parse(), braces = (input, options = {}) => {
731
- let output = [];
732
- if (Array.isArray(input))
733
- for (let pattern of input) {
734
- let result = braces.create(pattern, options);
735
- Array.isArray(result) ? output.push(...result) : output.push(result);
736
- }
737
- else
738
- output = [].concat(braces.create(input, options));
739
- return options && options.expand === !0 && options.nodupes === !0 && (output = [...new Set(output)]), output;
740
- };
741
- braces.parse = (input, options = {}) => parse(input, options);
742
- braces.stringify = (input, options = {}) => stringify(typeof input == "string" ? braces.parse(input, options) : input, options);
743
- braces.compile = (input, options = {}) => (typeof input == "string" && (input = braces.parse(input, options)), compile(input, options));
744
- braces.expand = (input, options = {}) => {
745
- typeof input == "string" && (input = braces.parse(input, options));
746
- let result = expand(input, options);
747
- return options.noempty === !0 && (result = result.filter(Boolean)), options.nodupes === !0 && (result = [...new Set(result)]), result;
748
- };
749
- braces.create = (input, options = {}) => input === "" || input.length < 3 ? [input] : options.expand !== !0 ? braces.compile(input, options) : braces.expand(input, options);
750
- module.exports = braces;
751
- }
752
- });
753
-
754
208
  // ../../node_modules/.pnpm/binary-extensions@2.3.0/node_modules/binary-extensions/binary-extensions.json
755
209
  var require_binary_extensions = __commonJS({
756
210
  "../../node_modules/.pnpm/binary-extensions@2.3.0/node_modules/binary-extensions/binary-extensions.json"(exports, module) {
@@ -1038,9 +492,9 @@ var require_is_binary_path = __commonJS({
1038
492
  }
1039
493
  });
1040
494
 
1041
- // ../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/lib/constants.js
1042
- var require_constants2 = __commonJS({
1043
- "../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/lib/constants.js"(exports) {
495
+ // ../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/lib/constants.js
496
+ var require_constants = __commonJS({
497
+ "../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/lib/constants.js"(exports) {
1044
498
  "use strict";
1045
499
  init_cjs_shims();
1046
500
  var { sep } = __require("path"), { platform } = process, os = __require("os");
@@ -1062,6 +516,7 @@ var require_constants2 = __commonJS({
1062
516
  exports.FSEVENT_MOVED = "moved";
1063
517
  exports.FSEVENT_CLONED = "cloned";
1064
518
  exports.FSEVENT_UNKNOWN = "unknown";
519
+ exports.FSEVENT_FLAG_MUST_SCAN_SUBDIRS = 1;
1065
520
  exports.FSEVENT_TYPE_FILE = "file";
1066
521
  exports.FSEVENT_TYPE_DIRECTORY = "directory";
1067
522
  exports.FSEVENT_TYPE_SYMLINK = "symlink";
@@ -1100,9 +555,9 @@ var require_constants2 = __commonJS({
1100
555
  }
1101
556
  });
1102
557
 
1103
- // ../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/lib/nodefs-handler.js
558
+ // ../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/lib/nodefs-handler.js
1104
559
  var require_nodefs_handler = __commonJS({
1105
- "../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/lib/nodefs-handler.js"(exports, module) {
560
+ "../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/lib/nodefs-handler.js"(exports, module) {
1106
561
  "use strict";
1107
562
  init_cjs_shims();
1108
563
  var fs = __require("fs"), sysPath = __require("path"), { promisify } = __require("util"), isBinaryPath = require_is_binary_path(), {
@@ -1122,7 +577,7 @@ var require_nodefs_handler = __commonJS({
1122
577
  STR_END,
1123
578
  BRACE_START,
1124
579
  STAR
1125
- } = require_constants2(), THROTTLE_MODE_WATCH = "watch", open = promisify(fs.open), stat = promisify(fs.stat), lstat = promisify(fs.lstat), close = promisify(fs.close), fsrealpath = promisify(fs.realpath), statMethods = { lstat, stat }, foreach = (val, fn) => {
580
+ } = require_constants(), THROTTLE_MODE_WATCH = "watch", open = promisify(fs.open), stat = promisify(fs.stat), lstat = promisify(fs.lstat), close = promisify(fs.close), fsrealpath = promisify(fs.realpath), statMethods = { lstat, stat }, foreach = (val, fn) => {
1126
581
  val instanceof Set ? val.forEach(fn) : fn(val);
1127
582
  }, addAndConvert = (main, prop, item) => {
1128
583
  let container = main[prop];
@@ -1407,9 +862,9 @@ var require_nodefs_handler = __commonJS({
1407
862
  }
1408
863
  });
1409
864
 
1410
- // ../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/lib/fsevents-handler.js
865
+ // ../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/lib/fsevents-handler.js
1411
866
  var require_fsevents_handler = __commonJS({
1412
- "../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/lib/fsevents-handler.js"(exports, module) {
867
+ "../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/lib/fsevents-handler.js"(exports, module) {
1413
868
  "use strict";
1414
869
  init_cjs_shims();
1415
870
  var fs = __require("fs"), sysPath = __require("path"), { promisify } = __require("util"), fsevents;
@@ -1439,6 +894,7 @@ var require_fsevents_handler = __commonJS({
1439
894
  FSEVENT_MOVED,
1440
895
  // FSEVENT_CLONED,
1441
896
  FSEVENT_UNKNOWN,
897
+ FSEVENT_FLAG_MUST_SCAN_SUBDIRS,
1442
898
  FSEVENT_TYPE_FILE,
1443
899
  FSEVENT_TYPE_DIRECTORY,
1444
900
  FSEVENT_TYPE_SYMLINK,
@@ -1448,7 +904,7 @@ var require_fsevents_handler = __commonJS({
1448
904
  FUNCTION_TYPE,
1449
905
  EMPTY_FN,
1450
906
  IDENTITY_FN
1451
- } = require_constants2(), Depth = (value) => isNaN(value) ? {} : { depth: value }, stat = promisify(fs.stat), lstat = promisify(fs.lstat), realpath = promisify(fs.realpath), statMethods = { stat, lstat }, FSEventsWatchers = /* @__PURE__ */ new Map(), consolidateThreshhold = 10, wrongEventFlags = /* @__PURE__ */ new Set([
907
+ } = require_constants(), Depth = (value) => isNaN(value) ? {} : { depth: value }, stat = promisify(fs.stat), lstat = promisify(fs.lstat), realpath = promisify(fs.realpath), statMethods = { stat, lstat }, FSEventsWatchers = /* @__PURE__ */ new Map(), consolidateThreshhold = 10, wrongEventFlags = /* @__PURE__ */ new Set([
1452
908
  69888,
1453
909
  70400,
1454
910
  71424,
@@ -1473,7 +929,7 @@ var require_fsevents_handler = __commonJS({
1473
929
  listeners: /* @__PURE__ */ new Set([filteredListener]),
1474
930
  rawEmitter,
1475
931
  watcher: createFSEventsInstance(watchPath, (fullPath, flags) => {
1476
- if (!cont.listeners.size) return;
932
+ if (!cont.listeners.size || flags & FSEVENT_FLAG_MUST_SCAN_SUBDIRS) return;
1477
933
  let info = fsevents.getInfo(fullPath, flags);
1478
934
  cont.listeners.forEach((list) => {
1479
935
  list(fullPath, flags, info);
@@ -1690,9 +1146,9 @@ var require_fsevents_handler = __commonJS({
1690
1146
  }
1691
1147
  });
1692
1148
 
1693
- // ../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/index.js
1149
+ // ../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/index.js
1694
1150
  var require_chokidar = __commonJS({
1695
- "../../node_modules/.pnpm/chokidar@3.5.3/node_modules/chokidar/index.js"(exports) {
1151
+ "../../node_modules/.pnpm/chokidar@3.6.0/node_modules/chokidar/index.js"(exports) {
1696
1152
  init_cjs_shims();
1697
1153
  var { EventEmitter } = __require("events"), fs = __require("fs"), sysPath = __require("path"), { promisify } = __require("util"), readdirp = require_readdirp(), anymatch = require_anymatch().default, globParent = require_glob_parent(), isGlob = require_is_glob(), braces = require_braces(), normalizePath = require_normalize_path(), NodeFsHandler = require_nodefs_handler(), FsEventsHandler = require_fsevents_handler(), {
1698
1154
  EV_ALL,
@@ -1727,7 +1183,7 @@ var require_chokidar = __commonJS({
1727
1183
  isWindows,
1728
1184
  isMacos,
1729
1185
  isIBMi
1730
- } = require_constants2(), stat = promisify(fs.stat), readdir = promisify(fs.readdir), arrify = (value = []) => Array.isArray(value) ? value : [value], flatten = (list, result = []) => (list.forEach((item) => {
1186
+ } = require_constants(), stat = promisify(fs.stat), readdir = promisify(fs.readdir), arrify = (value = []) => Array.isArray(value) ? value : [value], flatten = (list, result = []) => (list.forEach((item) => {
1731
1187
  Array.isArray(item) ? flatten(item, result) : result.push(item);
1732
1188
  }), result), unifyPaths = (paths_) => {
1733
1189
  let paths = flatten(arrify(paths_));
@@ -1847,7 +1303,7 @@ var require_chokidar = __commonJS({
1847
1303
  return cwd && (paths = paths.map((path) => {
1848
1304
  let absPath = getAbsolutePath(path, cwd);
1849
1305
  return disableGlobbing || !isGlob(path) ? absPath : normalizePath(absPath);
1850
- })), paths = paths.filter((path) => path.startsWith(BANG) ? (this._ignoredPaths.add(path.slice(1)), !1) : (this._ignoredPaths.delete(path), this._ignoredPaths.delete(path + SLASH_GLOBSTAR), this._userIgnored = void 0, !0)), this.options.useFsEvents && this._fsEventsHandler ? (this._readyCount || (this._readyCount = paths.length), this.options.persistent && (this._readyCount *= 2), paths.forEach((path) => this._fsEventsHandler._addToFsEvents(path))) : (this._readyCount || (this._readyCount = 0), this._readyCount += paths.length, Promise.all(
1306
+ })), paths = paths.filter((path) => path.startsWith(BANG) ? (this._ignoredPaths.add(path.slice(1)), !1) : (this._ignoredPaths.delete(path), this._ignoredPaths.delete(path + SLASH_GLOBSTAR), this._userIgnored = void 0, !0)), this.options.useFsEvents && this._fsEventsHandler ? (this._readyCount || (this._readyCount = paths.length), this.options.persistent && (this._readyCount += paths.length), paths.forEach((path) => this._fsEventsHandler._addToFsEvents(path))) : (this._readyCount || (this._readyCount = 0), this._readyCount += paths.length, Promise.all(
1851
1307
  paths.map(async (path) => {
1852
1308
  let res = await this._nodeFsHandler._addToNodeFs(path, !_internal, 0, 0, _origAdd);
1853
1309
  return res && this._emitReady(), res;
@@ -2138,14 +1594,4 @@ var require_chokidar = __commonJS({
2138
1594
  }
2139
1595
  });
2140
1596
  export default require_chokidar();
2141
- /*! Bundled license information:
2142
-
2143
- fill-range/index.js:
2144
- (*!
2145
- * fill-range <https://github.com/jonschlinkert/fill-range>
2146
- *
2147
- * Copyright (c) 2014-present, Jon Schlinkert.
2148
- * Licensed under the MIT License.
2149
- *)
2150
- */
2151
- //# sourceMappingURL=chokidar-5LLC6S6D.js.map
1597
+ //# sourceMappingURL=chokidar-LYCK7UIU.js.map