@donotdev/cli 0.0.13 → 0.0.14

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 (32) hide show
  1. package/dependencies-matrix.json +2 -2
  2. package/dist/bin/commands/agent-setup.d.ts +6 -0
  3. package/dist/bin/commands/agent-setup.d.ts.map +1 -0
  4. package/dist/bin/commands/agent-setup.js +623 -0
  5. package/dist/bin/commands/agent-setup.js.map +1 -0
  6. package/dist/bin/commands/build.js +13 -12
  7. package/dist/bin/commands/bump.js +70 -28
  8. package/dist/bin/commands/cacheout.js +13 -12
  9. package/dist/bin/commands/create-app.js +53 -151
  10. package/dist/bin/commands/create-project.js +72 -166
  11. package/dist/bin/commands/deploy.js +16 -15
  12. package/dist/bin/commands/dev.js +13 -12
  13. package/dist/bin/commands/emu.js +13 -12
  14. package/dist/bin/commands/format.js +13 -12
  15. package/dist/bin/commands/lint.js +13 -12
  16. package/dist/bin/commands/preview.js +13 -12
  17. package/dist/bin/commands/sync-secrets.js +13 -12
  18. package/dist/bin/commands/wai.js +7397 -11
  19. package/dist/index.js +74 -55
  20. package/package.json +1 -1
  21. package/templates/root-consumer/.claude/commands/brainstorm.md.example +1 -1
  22. package/templates/root-consumer/.claude/commands/build.md.example +1 -1
  23. package/templates/root-consumer/.claude/commands/design.md.example +1 -1
  24. package/templates/root-consumer/.claude/commands/polish.md.example +1 -1
  25. package/templates/root-consumer/.dndev/args.json.example +6 -0
  26. package/templates/root-consumer/.gemini/settings.json.example +2 -2
  27. package/templates/root-consumer/AI.md.example +25 -14
  28. package/templates/root-consumer/CLAUDE.md.example +10 -4
  29. package/templates/root-consumer/guides/dndev/AGENT_START_HERE.md.example +34 -0
  30. package/templates/root-consumer/guides/dndev/GOTCHAS.md.example +186 -0
  31. package/templates/root-consumer/guides/dndev/INDEX.md.example +1 -0
  32. package/templates/root-consumer/guides/dndev/SETUP_FUNCTIONS.md.example +12 -7
@@ -1975,7 +1975,7 @@ var require_parse = __commonJS({
1975
1975
  CHAR_NO_BREAK_SPACE,
1976
1976
  CHAR_ZERO_WIDTH_NOBREAK_SPACE
1977
1977
  } = require_constants();
1978
- var parse = (input, options = {}) => {
1978
+ var parse2 = (input, options = {}) => {
1979
1979
  if (typeof input !== "string") {
1980
1980
  throw new TypeError("Expected a string");
1981
1981
  }
@@ -2175,7 +2175,7 @@ var require_parse = __commonJS({
2175
2175
  push({ type: "eos" });
2176
2176
  return ast;
2177
2177
  };
2178
- module.exports = parse;
2178
+ module.exports = parse2;
2179
2179
  }
2180
2180
  });
2181
2181
 
@@ -2187,7 +2187,7 @@ var require_braces = __commonJS({
2187
2187
  var stringify2 = require_stringify();
2188
2188
  var compile = require_compile();
2189
2189
  var expand = require_expand();
2190
- var parse = require_parse();
2190
+ var parse2 = require_parse();
2191
2191
  var braces = (input, options = {}) => {
2192
2192
  let output = [];
2193
2193
  if (Array.isArray(input)) {
@@ -2207,7 +2207,7 @@ var require_braces = __commonJS({
2207
2207
  }
2208
2208
  return output;
2209
2209
  };
2210
- braces.parse = (input, options = {}) => parse(input, options);
2210
+ braces.parse = (input, options = {}) => parse2(input, options);
2211
2211
  braces.stringify = (input, options = {}) => {
2212
2212
  if (typeof input === "string") {
2213
2213
  return stringify2(braces.parse(input, options), options);
@@ -2864,7 +2864,7 @@ var require_parse2 = __commonJS({
2864
2864
  var syntaxError = (type, char) => {
2865
2865
  return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
2866
2866
  };
2867
- var parse = (input, options) => {
2867
+ var parse2 = (input, options) => {
2868
2868
  if (typeof input !== "string") {
2869
2869
  throw new TypeError("Expected a string");
2870
2870
  }
@@ -3013,7 +3013,7 @@ var require_parse2 = __commonJS({
3013
3013
  output = token.close = `)$))${extglobStar}`;
3014
3014
  }
3015
3015
  if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
3016
- const expression = parse(rest, { ...options, fastpaths: false }).output;
3016
+ const expression = parse2(rest, { ...options, fastpaths: false }).output;
3017
3017
  output = token.close = `)${expression})${extglobStar})`;
3018
3018
  }
3019
3019
  if (token.prev.type === "bos") {
@@ -3538,7 +3538,7 @@ var require_parse2 = __commonJS({
3538
3538
  }
3539
3539
  return state;
3540
3540
  };
3541
- parse.fastpaths = (input, options) => {
3541
+ parse2.fastpaths = (input, options) => {
3542
3542
  const opts = { ...options };
3543
3543
  const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
3544
3544
  const len = input.length;
@@ -3604,7 +3604,7 @@ var require_parse2 = __commonJS({
3604
3604
  }
3605
3605
  return source;
3606
3606
  };
3607
- module.exports = parse;
3607
+ module.exports = parse2;
3608
3608
  }
3609
3609
  });
3610
3610
 
@@ -3615,7 +3615,7 @@ var require_picomatch = __commonJS({
3615
3615
  init_utils();
3616
3616
  var path = __require("path");
3617
3617
  var scan = require_scan();
3618
- var parse = require_parse2();
3618
+ var parse2 = require_parse2();
3619
3619
  var utils = require_utils2();
3620
3620
  var constants2 = require_constants2();
3621
3621
  var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
@@ -3703,7 +3703,7 @@ var require_picomatch = __commonJS({
3703
3703
  picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
3704
3704
  picomatch.parse = (pattern, options) => {
3705
3705
  if (Array.isArray(pattern)) return pattern.map((p2) => picomatch.parse(p2, options));
3706
- return parse(pattern, { ...options, fastpaths: false });
3706
+ return parse2(pattern, { ...options, fastpaths: false });
3707
3707
  };
3708
3708
  picomatch.scan = (input, options) => scan(input, options);
3709
3709
  picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
@@ -3729,10 +3729,10 @@ var require_picomatch = __commonJS({
3729
3729
  }
3730
3730
  let parsed = { negated: false, fastpaths: true };
3731
3731
  if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
3732
- parsed.output = parse.fastpaths(input, options);
3732
+ parsed.output = parse2.fastpaths(input, options);
3733
3733
  }
3734
3734
  if (!parsed.output) {
3735
- parsed = parse(input, options);
3735
+ parsed = parse2(input, options);
3736
3736
  }
3737
3737
  return picomatch.compileRe(parsed, options, returnOutput, returnState);
3738
3738
  };
@@ -7715,6 +7715,7 @@ import {
7715
7715
  extname as extname2,
7716
7716
  relative as relative2,
7717
7717
  resolve as resolve2,
7718
+ parse,
7718
7719
  isAbsolute as pathIsAbsolute
7719
7720
  } from "node:path";
7720
7721
  import { fileURLToPath as fileURLToPath2 } from "node:url";
@@ -1596,7 +1596,7 @@ var require_parse = __commonJS({
1596
1596
  CHAR_NO_BREAK_SPACE,
1597
1597
  CHAR_ZERO_WIDTH_NOBREAK_SPACE
1598
1598
  } = require_constants();
1599
- var parse = (input, options = {}) => {
1599
+ var parse2 = (input, options = {}) => {
1600
1600
  if (typeof input !== "string") {
1601
1601
  throw new TypeError("Expected a string");
1602
1602
  }
@@ -1796,7 +1796,7 @@ var require_parse = __commonJS({
1796
1796
  push({ type: "eos" });
1797
1797
  return ast;
1798
1798
  };
1799
- module.exports = parse;
1799
+ module.exports = parse2;
1800
1800
  }
1801
1801
  });
1802
1802
 
@@ -1808,7 +1808,7 @@ var require_braces = __commonJS({
1808
1808
  var stringify2 = require_stringify();
1809
1809
  var compile = require_compile();
1810
1810
  var expand = require_expand();
1811
- var parse = require_parse();
1811
+ var parse2 = require_parse();
1812
1812
  var braces = (input, options = {}) => {
1813
1813
  let output = [];
1814
1814
  if (Array.isArray(input)) {
@@ -1828,7 +1828,7 @@ var require_braces = __commonJS({
1828
1828
  }
1829
1829
  return output;
1830
1830
  };
1831
- braces.parse = (input, options = {}) => parse(input, options);
1831
+ braces.parse = (input, options = {}) => parse2(input, options);
1832
1832
  braces.stringify = (input, options = {}) => {
1833
1833
  if (typeof input === "string") {
1834
1834
  return stringify2(braces.parse(input, options), options);
@@ -2485,7 +2485,7 @@ var require_parse2 = __commonJS({
2485
2485
  var syntaxError = (type, char) => {
2486
2486
  return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
2487
2487
  };
2488
- var parse = (input, options) => {
2488
+ var parse2 = (input, options) => {
2489
2489
  if (typeof input !== "string") {
2490
2490
  throw new TypeError("Expected a string");
2491
2491
  }
@@ -2634,7 +2634,7 @@ var require_parse2 = __commonJS({
2634
2634
  output = token.close = `)$))${extglobStar}`;
2635
2635
  }
2636
2636
  if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
2637
- const expression = parse(rest, { ...options, fastpaths: false }).output;
2637
+ const expression = parse2(rest, { ...options, fastpaths: false }).output;
2638
2638
  output = token.close = `)${expression})${extglobStar})`;
2639
2639
  }
2640
2640
  if (token.prev.type === "bos") {
@@ -3159,7 +3159,7 @@ var require_parse2 = __commonJS({
3159
3159
  }
3160
3160
  return state;
3161
3161
  };
3162
- parse.fastpaths = (input, options) => {
3162
+ parse2.fastpaths = (input, options) => {
3163
3163
  const opts = { ...options };
3164
3164
  const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
3165
3165
  const len = input.length;
@@ -3225,7 +3225,7 @@ var require_parse2 = __commonJS({
3225
3225
  }
3226
3226
  return source;
3227
3227
  };
3228
- module.exports = parse;
3228
+ module.exports = parse2;
3229
3229
  }
3230
3230
  });
3231
3231
 
@@ -3236,7 +3236,7 @@ var require_picomatch = __commonJS({
3236
3236
  init_utils();
3237
3237
  var path = __require("path");
3238
3238
  var scan = require_scan();
3239
- var parse = require_parse2();
3239
+ var parse2 = require_parse2();
3240
3240
  var utils = require_utils2();
3241
3241
  var constants2 = require_constants2();
3242
3242
  var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
@@ -3324,7 +3324,7 @@ var require_picomatch = __commonJS({
3324
3324
  picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
3325
3325
  picomatch.parse = (pattern, options) => {
3326
3326
  if (Array.isArray(pattern)) return pattern.map((p) => picomatch.parse(p, options));
3327
- return parse(pattern, { ...options, fastpaths: false });
3327
+ return parse2(pattern, { ...options, fastpaths: false });
3328
3328
  };
3329
3329
  picomatch.scan = (input, options) => scan(input, options);
3330
3330
  picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
@@ -3350,10 +3350,10 @@ var require_picomatch = __commonJS({
3350
3350
  }
3351
3351
  let parsed = { negated: false, fastpaths: true };
3352
3352
  if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
3353
- parsed.output = parse.fastpaths(input, options);
3353
+ parsed.output = parse2.fastpaths(input, options);
3354
3354
  }
3355
3355
  if (!parsed.output) {
3356
- parsed = parse(input, options);
3356
+ parsed = parse2(input, options);
3357
3357
  }
3358
3358
  return picomatch.compileRe(parsed, options, returnOutput, returnState);
3359
3359
  };
@@ -7336,6 +7336,7 @@ import {
7336
7336
  extname as extname2,
7337
7337
  relative as relative2,
7338
7338
  resolve as resolve2,
7339
+ parse,
7339
7340
  isAbsolute as pathIsAbsolute
7340
7341
  } from "node:path";
7341
7342
  import { fileURLToPath as fileURLToPath2 } from "node:url";
@@ -1596,7 +1596,7 @@ var require_parse = __commonJS({
1596
1596
  CHAR_NO_BREAK_SPACE,
1597
1597
  CHAR_ZERO_WIDTH_NOBREAK_SPACE
1598
1598
  } = require_constants();
1599
- var parse = (input, options = {}) => {
1599
+ var parse2 = (input, options = {}) => {
1600
1600
  if (typeof input !== "string") {
1601
1601
  throw new TypeError("Expected a string");
1602
1602
  }
@@ -1796,7 +1796,7 @@ var require_parse = __commonJS({
1796
1796
  push({ type: "eos" });
1797
1797
  return ast;
1798
1798
  };
1799
- module.exports = parse;
1799
+ module.exports = parse2;
1800
1800
  }
1801
1801
  });
1802
1802
 
@@ -1808,7 +1808,7 @@ var require_braces = __commonJS({
1808
1808
  var stringify2 = require_stringify();
1809
1809
  var compile = require_compile();
1810
1810
  var expand = require_expand();
1811
- var parse = require_parse();
1811
+ var parse2 = require_parse();
1812
1812
  var braces = (input, options = {}) => {
1813
1813
  let output = [];
1814
1814
  if (Array.isArray(input)) {
@@ -1828,7 +1828,7 @@ var require_braces = __commonJS({
1828
1828
  }
1829
1829
  return output;
1830
1830
  };
1831
- braces.parse = (input, options = {}) => parse(input, options);
1831
+ braces.parse = (input, options = {}) => parse2(input, options);
1832
1832
  braces.stringify = (input, options = {}) => {
1833
1833
  if (typeof input === "string") {
1834
1834
  return stringify2(braces.parse(input, options), options);
@@ -2485,7 +2485,7 @@ var require_parse2 = __commonJS({
2485
2485
  var syntaxError = (type, char) => {
2486
2486
  return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
2487
2487
  };
2488
- var parse = (input, options) => {
2488
+ var parse2 = (input, options) => {
2489
2489
  if (typeof input !== "string") {
2490
2490
  throw new TypeError("Expected a string");
2491
2491
  }
@@ -2634,7 +2634,7 @@ var require_parse2 = __commonJS({
2634
2634
  output = token.close = `)$))${extglobStar}`;
2635
2635
  }
2636
2636
  if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
2637
- const expression = parse(rest, { ...options, fastpaths: false }).output;
2637
+ const expression = parse2(rest, { ...options, fastpaths: false }).output;
2638
2638
  output = token.close = `)${expression})${extglobStar})`;
2639
2639
  }
2640
2640
  if (token.prev.type === "bos") {
@@ -3159,7 +3159,7 @@ var require_parse2 = __commonJS({
3159
3159
  }
3160
3160
  return state;
3161
3161
  };
3162
- parse.fastpaths = (input, options) => {
3162
+ parse2.fastpaths = (input, options) => {
3163
3163
  const opts = { ...options };
3164
3164
  const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
3165
3165
  const len = input.length;
@@ -3225,7 +3225,7 @@ var require_parse2 = __commonJS({
3225
3225
  }
3226
3226
  return source;
3227
3227
  };
3228
- module.exports = parse;
3228
+ module.exports = parse2;
3229
3229
  }
3230
3230
  });
3231
3231
 
@@ -3236,7 +3236,7 @@ var require_picomatch = __commonJS({
3236
3236
  init_utils();
3237
3237
  var path = __require("path");
3238
3238
  var scan = require_scan();
3239
- var parse = require_parse2();
3239
+ var parse2 = require_parse2();
3240
3240
  var utils = require_utils2();
3241
3241
  var constants2 = require_constants2();
3242
3242
  var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
@@ -3324,7 +3324,7 @@ var require_picomatch = __commonJS({
3324
3324
  picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
3325
3325
  picomatch.parse = (pattern, options) => {
3326
3326
  if (Array.isArray(pattern)) return pattern.map((p) => picomatch.parse(p, options));
3327
- return parse(pattern, { ...options, fastpaths: false });
3327
+ return parse2(pattern, { ...options, fastpaths: false });
3328
3328
  };
3329
3329
  picomatch.scan = (input, options) => scan(input, options);
3330
3330
  picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
@@ -3350,10 +3350,10 @@ var require_picomatch = __commonJS({
3350
3350
  }
3351
3351
  let parsed = { negated: false, fastpaths: true };
3352
3352
  if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
3353
- parsed.output = parse.fastpaths(input, options);
3353
+ parsed.output = parse2.fastpaths(input, options);
3354
3354
  }
3355
3355
  if (!parsed.output) {
3356
- parsed = parse(input, options);
3356
+ parsed = parse2(input, options);
3357
3357
  }
3358
3358
  return picomatch.compileRe(parsed, options, returnOutput, returnState);
3359
3359
  };
@@ -7336,6 +7336,7 @@ import {
7336
7336
  extname as extname2,
7337
7337
  relative as relative2,
7338
7338
  resolve as resolve2,
7339
+ parse,
7339
7340
  isAbsolute as pathIsAbsolute
7340
7341
  } from "node:path";
7341
7342
  import { fileURLToPath as fileURLToPath2 } from "node:url";
@@ -1892,7 +1892,7 @@ var require_parse = __commonJS({
1892
1892
  CHAR_NO_BREAK_SPACE,
1893
1893
  CHAR_ZERO_WIDTH_NOBREAK_SPACE
1894
1894
  } = require_constants();
1895
- var parse = (input, options = {}) => {
1895
+ var parse2 = (input, options = {}) => {
1896
1896
  if (typeof input !== "string") {
1897
1897
  throw new TypeError("Expected a string");
1898
1898
  }
@@ -2092,7 +2092,7 @@ var require_parse = __commonJS({
2092
2092
  push({ type: "eos" });
2093
2093
  return ast;
2094
2094
  };
2095
- module.exports = parse;
2095
+ module.exports = parse2;
2096
2096
  }
2097
2097
  });
2098
2098
 
@@ -2104,7 +2104,7 @@ var require_braces = __commonJS({
2104
2104
  var stringify2 = require_stringify();
2105
2105
  var compile = require_compile();
2106
2106
  var expand = require_expand();
2107
- var parse = require_parse();
2107
+ var parse2 = require_parse();
2108
2108
  var braces = (input, options = {}) => {
2109
2109
  let output = [];
2110
2110
  if (Array.isArray(input)) {
@@ -2124,7 +2124,7 @@ var require_braces = __commonJS({
2124
2124
  }
2125
2125
  return output;
2126
2126
  };
2127
- braces.parse = (input, options = {}) => parse(input, options);
2127
+ braces.parse = (input, options = {}) => parse2(input, options);
2128
2128
  braces.stringify = (input, options = {}) => {
2129
2129
  if (typeof input === "string") {
2130
2130
  return stringify2(braces.parse(input, options), options);
@@ -2781,7 +2781,7 @@ var require_parse2 = __commonJS({
2781
2781
  var syntaxError = (type, char) => {
2782
2782
  return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
2783
2783
  };
2784
- var parse = (input, options) => {
2784
+ var parse2 = (input, options) => {
2785
2785
  if (typeof input !== "string") {
2786
2786
  throw new TypeError("Expected a string");
2787
2787
  }
@@ -2930,7 +2930,7 @@ var require_parse2 = __commonJS({
2930
2930
  output = token.close = `)$))${extglobStar}`;
2931
2931
  }
2932
2932
  if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
2933
- const expression = parse(rest, { ...options, fastpaths: false }).output;
2933
+ const expression = parse2(rest, { ...options, fastpaths: false }).output;
2934
2934
  output = token.close = `)${expression})${extglobStar})`;
2935
2935
  }
2936
2936
  if (token.prev.type === "bos") {
@@ -3455,7 +3455,7 @@ var require_parse2 = __commonJS({
3455
3455
  }
3456
3456
  return state;
3457
3457
  };
3458
- parse.fastpaths = (input, options) => {
3458
+ parse2.fastpaths = (input, options) => {
3459
3459
  const opts = { ...options };
3460
3460
  const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
3461
3461
  const len = input.length;
@@ -3521,7 +3521,7 @@ var require_parse2 = __commonJS({
3521
3521
  }
3522
3522
  return source;
3523
3523
  };
3524
- module.exports = parse;
3524
+ module.exports = parse2;
3525
3525
  }
3526
3526
  });
3527
3527
 
@@ -3532,7 +3532,7 @@ var require_picomatch = __commonJS({
3532
3532
  init_utils();
3533
3533
  var path = __require("path");
3534
3534
  var scan = require_scan();
3535
- var parse = require_parse2();
3535
+ var parse2 = require_parse2();
3536
3536
  var utils = require_utils2();
3537
3537
  var constants2 = require_constants2();
3538
3538
  var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
@@ -3620,7 +3620,7 @@ var require_picomatch = __commonJS({
3620
3620
  picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
3621
3621
  picomatch.parse = (pattern, options) => {
3622
3622
  if (Array.isArray(pattern)) return pattern.map((p2) => picomatch.parse(p2, options));
3623
- return parse(pattern, { ...options, fastpaths: false });
3623
+ return parse2(pattern, { ...options, fastpaths: false });
3624
3624
  };
3625
3625
  picomatch.scan = (input, options) => scan(input, options);
3626
3626
  picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
@@ -3646,10 +3646,10 @@ var require_picomatch = __commonJS({
3646
3646
  }
3647
3647
  let parsed = { negated: false, fastpaths: true };
3648
3648
  if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
3649
- parsed.output = parse.fastpaths(input, options);
3649
+ parsed.output = parse2.fastpaths(input, options);
3650
3650
  }
3651
3651
  if (!parsed.output) {
3652
- parsed = parse(input, options);
3652
+ parsed = parse2(input, options);
3653
3653
  }
3654
3654
  return picomatch.compileRe(parsed, options, returnOutput, returnState);
3655
3655
  };
@@ -7632,6 +7632,7 @@ import {
7632
7632
  extname as extname2,
7633
7633
  relative as relative2,
7634
7634
  resolve as resolve2,
7635
+ parse,
7635
7636
  isAbsolute as pathIsAbsolute
7636
7637
  } from "node:path";
7637
7638
  import { fileURLToPath as fileURLToPath2 } from "node:url";
@@ -1915,7 +1915,7 @@ var require_parse = __commonJS({
1915
1915
  CHAR_NO_BREAK_SPACE,
1916
1916
  CHAR_ZERO_WIDTH_NOBREAK_SPACE
1917
1917
  } = require_constants();
1918
- var parse = (input, options = {}) => {
1918
+ var parse2 = (input, options = {}) => {
1919
1919
  if (typeof input !== "string") {
1920
1920
  throw new TypeError("Expected a string");
1921
1921
  }
@@ -2115,7 +2115,7 @@ var require_parse = __commonJS({
2115
2115
  push({ type: "eos" });
2116
2116
  return ast;
2117
2117
  };
2118
- module.exports = parse;
2118
+ module.exports = parse2;
2119
2119
  }
2120
2120
  });
2121
2121
 
@@ -2127,7 +2127,7 @@ var require_braces = __commonJS({
2127
2127
  var stringify2 = require_stringify();
2128
2128
  var compile = require_compile();
2129
2129
  var expand = require_expand();
2130
- var parse = require_parse();
2130
+ var parse2 = require_parse();
2131
2131
  var braces = (input, options = {}) => {
2132
2132
  let output = [];
2133
2133
  if (Array.isArray(input)) {
@@ -2147,7 +2147,7 @@ var require_braces = __commonJS({
2147
2147
  }
2148
2148
  return output;
2149
2149
  };
2150
- braces.parse = (input, options = {}) => parse(input, options);
2150
+ braces.parse = (input, options = {}) => parse2(input, options);
2151
2151
  braces.stringify = (input, options = {}) => {
2152
2152
  if (typeof input === "string") {
2153
2153
  return stringify2(braces.parse(input, options), options);
@@ -2804,7 +2804,7 @@ var require_parse2 = __commonJS({
2804
2804
  var syntaxError = (type, char) => {
2805
2805
  return `Missing ${type}: "${char}" - use "\\\\${char}" to match literal characters`;
2806
2806
  };
2807
- var parse = (input, options) => {
2807
+ var parse2 = (input, options) => {
2808
2808
  if (typeof input !== "string") {
2809
2809
  throw new TypeError("Expected a string");
2810
2810
  }
@@ -2953,7 +2953,7 @@ var require_parse2 = __commonJS({
2953
2953
  output = token.close = `)$))${extglobStar}`;
2954
2954
  }
2955
2955
  if (token.inner.includes("*") && (rest = remaining()) && /^\.[^\\/.]+$/.test(rest)) {
2956
- const expression = parse(rest, { ...options, fastpaths: false }).output;
2956
+ const expression = parse2(rest, { ...options, fastpaths: false }).output;
2957
2957
  output = token.close = `)${expression})${extglobStar})`;
2958
2958
  }
2959
2959
  if (token.prev.type === "bos") {
@@ -3478,7 +3478,7 @@ var require_parse2 = __commonJS({
3478
3478
  }
3479
3479
  return state;
3480
3480
  };
3481
- parse.fastpaths = (input, options) => {
3481
+ parse2.fastpaths = (input, options) => {
3482
3482
  const opts = { ...options };
3483
3483
  const max = typeof opts.maxLength === "number" ? Math.min(MAX_LENGTH, opts.maxLength) : MAX_LENGTH;
3484
3484
  const len = input.length;
@@ -3544,7 +3544,7 @@ var require_parse2 = __commonJS({
3544
3544
  }
3545
3545
  return source;
3546
3546
  };
3547
- module.exports = parse;
3547
+ module.exports = parse2;
3548
3548
  }
3549
3549
  });
3550
3550
 
@@ -3555,7 +3555,7 @@ var require_picomatch = __commonJS({
3555
3555
  init_utils();
3556
3556
  var path = __require("path");
3557
3557
  var scan = require_scan();
3558
- var parse = require_parse2();
3558
+ var parse2 = require_parse2();
3559
3559
  var utils = require_utils2();
3560
3560
  var constants2 = require_constants2();
3561
3561
  var isObject = (val) => val && typeof val === "object" && !Array.isArray(val);
@@ -3643,7 +3643,7 @@ var require_picomatch = __commonJS({
3643
3643
  picomatch.isMatch = (str, patterns, options) => picomatch(patterns, options)(str);
3644
3644
  picomatch.parse = (pattern, options) => {
3645
3645
  if (Array.isArray(pattern)) return pattern.map((p2) => picomatch.parse(p2, options));
3646
- return parse(pattern, { ...options, fastpaths: false });
3646
+ return parse2(pattern, { ...options, fastpaths: false });
3647
3647
  };
3648
3648
  picomatch.scan = (input, options) => scan(input, options);
3649
3649
  picomatch.compileRe = (state, options, returnOutput = false, returnState = false) => {
@@ -3669,10 +3669,10 @@ var require_picomatch = __commonJS({
3669
3669
  }
3670
3670
  let parsed = { negated: false, fastpaths: true };
3671
3671
  if (options.fastpaths !== false && (input[0] === "." || input[0] === "*")) {
3672
- parsed.output = parse.fastpaths(input, options);
3672
+ parsed.output = parse2.fastpaths(input, options);
3673
3673
  }
3674
3674
  if (!parsed.output) {
3675
- parsed = parse(input, options);
3675
+ parsed = parse2(input, options);
3676
3676
  }
3677
3677
  return picomatch.compileRe(parsed, options, returnOutput, returnState);
3678
3678
  };
@@ -7655,6 +7655,7 @@ import {
7655
7655
  extname as extname2,
7656
7656
  relative as relative2,
7657
7657
  resolve as resolve2,
7658
+ parse,
7658
7659
  isAbsolute as pathIsAbsolute
7659
7660
  } from "node:path";
7660
7661
  import { fileURLToPath as fileURLToPath2 } from "node:url";