@requence/task 1.0.0-alpha.4 → 1.0.0-alpha.40

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 (100) hide show
  1. package/CHANGELOG.md +216 -0
  2. package/build/chunk-y4v98p2s.js +53 -0
  3. package/build/chunk-y4v98p2s.js.map +10 -0
  4. package/build/cli.js +660 -158
  5. package/build/cli.js.map +28 -17
  6. package/build/index.js +861 -227
  7. package/build/index.js.map +20 -8
  8. package/build/types/helpers/src/files/RequenceFile.d.ts +40 -0
  9. package/build/types/helpers/src/files/RequenceFile.d.ts.map +1 -0
  10. package/build/types/helpers/src/files/RequenceStream.d.ts +32 -0
  11. package/build/types/helpers/src/files/RequenceStream.d.ts.map +1 -0
  12. package/build/types/helpers/src/files/fileObject.d.ts +16 -0
  13. package/build/types/helpers/src/files/fileObject.d.ts.map +1 -0
  14. package/build/types/helpers/src/files/index.d.ts +7 -0
  15. package/build/types/helpers/src/files/index.d.ts.map +1 -0
  16. package/build/types/helpers/src/files/isValidMimeType.d.ts +5 -0
  17. package/build/types/helpers/src/files/isValidMimeType.d.ts.map +1 -0
  18. package/build/types/helpers/src/files/mapOutput.d.ts +10 -0
  19. package/build/types/helpers/src/files/mapOutput.d.ts.map +1 -0
  20. package/build/types/helpers/src/files/streamObject.d.ts +14 -0
  21. package/build/types/helpers/src/files/streamObject.d.ts.map +1 -0
  22. package/build/types/helpers/src/files/types.d.ts +4 -0
  23. package/build/types/helpers/src/files/types.d.ts.map +1 -0
  24. package/build/types/helpers/src/index.d.ts +11 -6
  25. package/build/types/helpers/src/index.d.ts.map +1 -1
  26. package/build/types/helpers/src/jsonschema/mapSchema.d.ts +20 -0
  27. package/build/types/helpers/src/jsonschema/mapSchema.d.ts.map +1 -0
  28. package/build/types/helpers/src/jsonschema/types.d.ts +13 -0
  29. package/build/types/helpers/src/jsonschema/types.d.ts.map +1 -0
  30. package/build/types/helpers/src/jsonschema/validate.d.ts +32 -0
  31. package/build/types/helpers/src/jsonschema/validate.d.ts.map +1 -0
  32. package/build/types/helpers/src/jsonschema/zod.d.ts +16 -0
  33. package/build/types/helpers/src/jsonschema/zod.d.ts.map +1 -0
  34. package/build/types/helpers/src/protocol/NodeTree.d.ts +479 -0
  35. package/build/types/helpers/src/protocol/NodeTree.d.ts.map +1 -0
  36. package/build/types/helpers/src/protocol/command.d.ts +489 -0
  37. package/build/types/helpers/src/protocol/command.d.ts.map +1 -0
  38. package/build/types/helpers/src/protocol/helpers.d.ts +7 -0
  39. package/build/types/helpers/src/protocol/helpers.d.ts.map +1 -0
  40. package/build/types/helpers/src/protocol/index.d.ts +8 -0
  41. package/build/types/helpers/src/protocol/index.d.ts.map +1 -0
  42. package/build/types/helpers/src/protocol/nodeType.d.ts +169 -0
  43. package/build/types/helpers/src/protocol/nodeType.d.ts.map +1 -0
  44. package/build/types/helpers/src/protocol/taskOptions.d.ts +23 -0
  45. package/build/types/helpers/src/protocol/taskOptions.d.ts.map +1 -0
  46. package/build/types/helpers/src/protocol/templateNodeTypes.d.ts +235 -0
  47. package/build/types/helpers/src/protocol/templateNodeTypes.d.ts.map +1 -0
  48. package/build/types/helpers/src/protocol/treeNodes.d.ts +832 -0
  49. package/build/types/helpers/src/protocol/treeNodes.d.ts.map +1 -0
  50. package/build/types/helpers/src/protocol/update.d.ts +381 -0
  51. package/build/types/helpers/src/protocol/update.d.ts.map +1 -0
  52. package/build/types/helpers/src/utils/callbackToAsyncIterator.d.ts +3 -0
  53. package/build/types/helpers/src/utils/callbackToAsyncIterator.d.ts.map +1 -0
  54. package/build/types/helpers/src/utils/clone.d.ts +3 -0
  55. package/build/types/helpers/src/utils/clone.d.ts.map +1 -0
  56. package/build/types/helpers/src/utils/createObjectProxy.d.ts +2 -0
  57. package/build/types/helpers/src/utils/createObjectProxy.d.ts.map +1 -0
  58. package/build/types/helpers/src/{createRemotePromise.d.ts → utils/createRemotePromise.d.ts} +1 -1
  59. package/build/types/helpers/src/utils/createRemotePromise.d.ts.map +1 -0
  60. package/build/types/helpers/src/utils/isRecord.d.ts +2 -0
  61. package/build/types/helpers/src/utils/isRecord.d.ts.map +1 -0
  62. package/build/types/helpers/src/utils/mapData.d.ts +18 -0
  63. package/build/types/helpers/src/utils/mapData.d.ts.map +1 -0
  64. package/build/types/helpers/src/{utils.d.ts → utils/matchSchema.d.ts} +2 -2
  65. package/build/types/helpers/src/utils/matchSchema.d.ts.map +1 -0
  66. package/build/types/helpers/src/utils/obfuscate.d.ts.map +1 -0
  67. package/build/types/helpers/src/utils/requenceCallback.d.ts +17 -0
  68. package/build/types/helpers/src/utils/requenceCallback.d.ts.map +1 -0
  69. package/build/types/helpers/src/utils/resolveRequenceTypes.d.ts +8 -0
  70. package/build/types/helpers/src/utils/resolveRequenceTypes.d.ts.map +1 -0
  71. package/build/types/helpers/src/utils/types.d.ts +4 -0
  72. package/build/types/helpers/src/utils/types.d.ts.map +1 -0
  73. package/build/types/task/src/abortTask.d.ts +8 -0
  74. package/build/types/task/src/abortTask.d.ts.map +1 -0
  75. package/build/types/task/src/createTask.d.ts +14 -103
  76. package/build/types/task/src/createTask.d.ts.map +1 -1
  77. package/build/types/task/src/getTask.d.ts +24 -0
  78. package/build/types/task/src/getTask.d.ts.map +1 -0
  79. package/build/types/task/src/index.d.ts +6 -1
  80. package/build/types/task/src/index.d.ts.map +1 -1
  81. package/build/types/task/src/recreateTask.d.ts +10 -0
  82. package/build/types/task/src/recreateTask.d.ts.map +1 -0
  83. package/build/types/task/src/types.d.ts +189 -941
  84. package/build/types/task/src/types.d.ts.map +1 -1
  85. package/build/types/task/src/utils/getAccessToken.d.ts.map +1 -1
  86. package/build/types/task/src/watchTasks.d.ts +13 -97
  87. package/build/types/task/src/watchTasks.d.ts.map +1 -1
  88. package/package.json +8 -7
  89. package/build/chunk-6pjtq0hg.js +0 -66
  90. package/build/chunk-6pjtq0hg.js.map +0 -12
  91. package/build/types/helpers/src/clone.d.ts +0 -3
  92. package/build/types/helpers/src/clone.d.ts.map +0 -1
  93. package/build/types/helpers/src/createObjectProxy.d.ts +0 -2
  94. package/build/types/helpers/src/createObjectProxy.d.ts.map +0 -1
  95. package/build/types/helpers/src/createRemotePromise.d.ts.map +0 -1
  96. package/build/types/helpers/src/obfuscate.d.ts.map +0 -1
  97. package/build/types/helpers/src/utils.d.ts.map +0 -1
  98. package/build/types/task/src/utils/callbackToAsyncIterator.d.ts +0 -5
  99. package/build/types/task/src/utils/callbackToAsyncIterator.d.ts.map +0 -1
  100. /package/build/types/helpers/src/{obfuscate.d.ts → utils/obfuscate.d.ts} +0 -0
package/build/cli.js CHANGED
@@ -1,8 +1,37 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
- __require,
3
+ __commonJS,
4
+ __toESM,
4
5
  deobfuscate
5
- } from "./chunk-6pjtq0hg.js";
6
+ } from "./chunk-y4v98p2s.js";
7
+
8
+ // ../../node_modules/emoji-regex/index.js
9
+ var require_emoji_regex = __commonJS((exports, module) => {
10
+ module.exports = () => {
11
+ return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
12
+ };
13
+ });
14
+
15
+ // ../../node_modules/get-caller-file/index.js
16
+ var require_get_caller_file = __commonJS((exports, module) => {
17
+ module.exports = function getCallerFile(position) {
18
+ if (position === undefined) {
19
+ position = 2;
20
+ }
21
+ if (position >= Error.stackTraceLimit) {
22
+ throw new TypeError("getCallerFile(position) requires position be less then Error.stackTraceLimit but position was: `" + position + "` and Error.stackTraceLimit was: `" + Error.stackTraceLimit + "`");
23
+ }
24
+ var oldPrepareStackTrace = Error.prepareStackTrace;
25
+ Error.prepareStackTrace = function(_, stack2) {
26
+ return stack2;
27
+ };
28
+ var stack = new Error().stack;
29
+ Error.prepareStackTrace = oldPrepareStackTrace;
30
+ if (stack !== null && typeof stack === "object") {
31
+ return stack[position] ? stack[position].getFileName() : undefined;
32
+ }
33
+ };
34
+ });
6
35
 
7
36
  // src/cli.ts
8
37
  import fs from "node:fs";
@@ -271,36 +300,482 @@ function cliui(opts, _mixin) {
271
300
  });
272
301
  }
273
302
 
274
- // ../../node_modules/cliui/build/lib/string-utils.js
275
- var ansi = new RegExp("\x1B(?:\\[(?:\\d+[ABCDEFGJKSTm]|\\d+;\\d+[Hfm]|" + "\\d+;\\d+;\\d+m|6n|s|u|\\?25[lh])|\\w)", "g");
276
- function stripAnsi(str) {
277
- return str.replace(ansi, "");
303
+ // ../../node_modules/string-width/node_modules/strip-ansi/node_modules/ansi-regex/index.js
304
+ function ansiRegex({ onlyFirst = false } = {}) {
305
+ const ST = "(?:\\u0007|\\u001B\\u005C|\\u009C)";
306
+ const pattern = [
307
+ `[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?${ST})`,
308
+ "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"
309
+ ].join("|");
310
+ return new RegExp(pattern, onlyFirst ? undefined : "g");
278
311
  }
279
- function wrap(str, width) {
280
- const [start, end] = str.match(ansi) || ["", ""];
281
- str = stripAnsi(str);
282
- let wrapped = "";
283
- for (let i = 0;i < str.length; i++) {
284
- if (i !== 0 && i % width === 0) {
285
- wrapped += `
286
- `;
312
+
313
+ // ../../node_modules/string-width/node_modules/strip-ansi/index.js
314
+ var regex = ansiRegex();
315
+ function stripAnsi(string) {
316
+ if (typeof string !== "string") {
317
+ throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
318
+ }
319
+ return string.replace(regex, "");
320
+ }
321
+
322
+ // ../../node_modules/get-east-asian-width/lookup.js
323
+ function isAmbiguous(x) {
324
+ return x === 161 || x === 164 || x === 167 || x === 168 || x === 170 || x === 173 || x === 174 || x >= 176 && x <= 180 || x >= 182 && x <= 186 || x >= 188 && x <= 191 || x === 198 || x === 208 || x === 215 || x === 216 || x >= 222 && x <= 225 || x === 230 || x >= 232 && x <= 234 || x === 236 || x === 237 || x === 240 || x === 242 || x === 243 || x >= 247 && x <= 250 || x === 252 || x === 254 || x === 257 || x === 273 || x === 275 || x === 283 || x === 294 || x === 295 || x === 299 || x >= 305 && x <= 307 || x === 312 || x >= 319 && x <= 322 || x === 324 || x >= 328 && x <= 331 || x === 333 || x === 338 || x === 339 || x === 358 || x === 359 || x === 363 || x === 462 || x === 464 || x === 466 || x === 468 || x === 470 || x === 472 || x === 474 || x === 476 || x === 593 || x === 609 || x === 708 || x === 711 || x >= 713 && x <= 715 || x === 717 || x === 720 || x >= 728 && x <= 731 || x === 733 || x === 735 || x >= 768 && x <= 879 || x >= 913 && x <= 929 || x >= 931 && x <= 937 || x >= 945 && x <= 961 || x >= 963 && x <= 969 || x === 1025 || x >= 1040 && x <= 1103 || x === 1105 || x === 8208 || x >= 8211 && x <= 8214 || x === 8216 || x === 8217 || x === 8220 || x === 8221 || x >= 8224 && x <= 8226 || x >= 8228 && x <= 8231 || x === 8240 || x === 8242 || x === 8243 || x === 8245 || x === 8251 || x === 8254 || x === 8308 || x === 8319 || x >= 8321 && x <= 8324 || x === 8364 || x === 8451 || x === 8453 || x === 8457 || x === 8467 || x === 8470 || x === 8481 || x === 8482 || x === 8486 || x === 8491 || x === 8531 || x === 8532 || x >= 8539 && x <= 8542 || x >= 8544 && x <= 8555 || x >= 8560 && x <= 8569 || x === 8585 || x >= 8592 && x <= 8601 || x === 8632 || x === 8633 || x === 8658 || x === 8660 || x === 8679 || x === 8704 || x === 8706 || x === 8707 || x === 8711 || x === 8712 || x === 8715 || x === 8719 || x === 8721 || x === 8725 || x === 8730 || x >= 8733 && x <= 8736 || x === 8739 || x === 8741 || x >= 8743 && x <= 8748 || x === 8750 || x >= 8756 && x <= 8759 || x === 8764 || x === 8765 || x === 8776 || x === 8780 || x === 8786 || x === 8800 || x === 8801 || x >= 8804 && x <= 8807 || x === 8810 || x === 8811 || x === 8814 || x === 8815 || x === 8834 || x === 8835 || x === 8838 || x === 8839 || x === 8853 || x === 8857 || x === 8869 || x === 8895 || x === 8978 || x >= 9312 && x <= 9449 || x >= 9451 && x <= 9547 || x >= 9552 && x <= 9587 || x >= 9600 && x <= 9615 || x >= 9618 && x <= 9621 || x === 9632 || x === 9633 || x >= 9635 && x <= 9641 || x === 9650 || x === 9651 || x === 9654 || x === 9655 || x === 9660 || x === 9661 || x === 9664 || x === 9665 || x >= 9670 && x <= 9672 || x === 9675 || x >= 9678 && x <= 9681 || x >= 9698 && x <= 9701 || x === 9711 || x === 9733 || x === 9734 || x === 9737 || x === 9742 || x === 9743 || x === 9756 || x === 9758 || x === 9792 || x === 9794 || x === 9824 || x === 9825 || x >= 9827 && x <= 9829 || x >= 9831 && x <= 9834 || x === 9836 || x === 9837 || x === 9839 || x === 9886 || x === 9887 || x === 9919 || x >= 9926 && x <= 9933 || x >= 9935 && x <= 9939 || x >= 9941 && x <= 9953 || x === 9955 || x === 9960 || x === 9961 || x >= 9963 && x <= 9969 || x === 9972 || x >= 9974 && x <= 9977 || x === 9979 || x === 9980 || x === 9982 || x === 9983 || x === 10045 || x >= 10102 && x <= 10111 || x >= 11094 && x <= 11097 || x >= 12872 && x <= 12879 || x >= 57344 && x <= 63743 || x >= 65024 && x <= 65039 || x === 65533 || x >= 127232 && x <= 127242 || x >= 127248 && x <= 127277 || x >= 127280 && x <= 127337 || x >= 127344 && x <= 127373 || x === 127375 || x === 127376 || x >= 127387 && x <= 127404 || x >= 917760 && x <= 917999 || x >= 983040 && x <= 1048573 || x >= 1048576 && x <= 1114109;
325
+ }
326
+ function isFullWidth(x) {
327
+ return x === 12288 || x >= 65281 && x <= 65376 || x >= 65504 && x <= 65510;
328
+ }
329
+ function isWide(x) {
330
+ return x >= 4352 && x <= 4447 || x === 8986 || x === 8987 || x === 9001 || x === 9002 || x >= 9193 && x <= 9196 || x === 9200 || x === 9203 || x === 9725 || x === 9726 || x === 9748 || x === 9749 || x >= 9776 && x <= 9783 || x >= 9800 && x <= 9811 || x === 9855 || x >= 9866 && x <= 9871 || x === 9875 || x === 9889 || x === 9898 || x === 9899 || x === 9917 || x === 9918 || x === 9924 || x === 9925 || x === 9934 || x === 9940 || x === 9962 || x === 9970 || x === 9971 || x === 9973 || x === 9978 || x === 9981 || x === 9989 || x === 9994 || x === 9995 || x === 10024 || x === 10060 || x === 10062 || x >= 10067 && x <= 10069 || x === 10071 || x >= 10133 && x <= 10135 || x === 10160 || x === 10175 || x === 11035 || x === 11036 || x === 11088 || x === 11093 || x >= 11904 && x <= 11929 || x >= 11931 && x <= 12019 || x >= 12032 && x <= 12245 || x >= 12272 && x <= 12287 || x >= 12289 && x <= 12350 || x >= 12353 && x <= 12438 || x >= 12441 && x <= 12543 || x >= 12549 && x <= 12591 || x >= 12593 && x <= 12686 || x >= 12688 && x <= 12773 || x >= 12783 && x <= 12830 || x >= 12832 && x <= 12871 || x >= 12880 && x <= 42124 || x >= 42128 && x <= 42182 || x >= 43360 && x <= 43388 || x >= 44032 && x <= 55203 || x >= 63744 && x <= 64255 || x >= 65040 && x <= 65049 || x >= 65072 && x <= 65106 || x >= 65108 && x <= 65126 || x >= 65128 && x <= 65131 || x >= 94176 && x <= 94180 || x === 94192 || x === 94193 || x >= 94208 && x <= 100343 || x >= 100352 && x <= 101589 || x >= 101631 && x <= 101640 || x >= 110576 && x <= 110579 || x >= 110581 && x <= 110587 || x === 110589 || x === 110590 || x >= 110592 && x <= 110882 || x === 110898 || x >= 110928 && x <= 110930 || x === 110933 || x >= 110948 && x <= 110951 || x >= 110960 && x <= 111355 || x >= 119552 && x <= 119638 || x >= 119648 && x <= 119670 || x === 126980 || x === 127183 || x === 127374 || x >= 127377 && x <= 127386 || x >= 127488 && x <= 127490 || x >= 127504 && x <= 127547 || x >= 127552 && x <= 127560 || x === 127568 || x === 127569 || x >= 127584 && x <= 127589 || x >= 127744 && x <= 127776 || x >= 127789 && x <= 127797 || x >= 127799 && x <= 127868 || x >= 127870 && x <= 127891 || x >= 127904 && x <= 127946 || x >= 127951 && x <= 127955 || x >= 127968 && x <= 127984 || x === 127988 || x >= 127992 && x <= 128062 || x === 128064 || x >= 128066 && x <= 128252 || x >= 128255 && x <= 128317 || x >= 128331 && x <= 128334 || x >= 128336 && x <= 128359 || x === 128378 || x === 128405 || x === 128406 || x === 128420 || x >= 128507 && x <= 128591 || x >= 128640 && x <= 128709 || x === 128716 || x >= 128720 && x <= 128722 || x >= 128725 && x <= 128727 || x >= 128732 && x <= 128735 || x === 128747 || x === 128748 || x >= 128756 && x <= 128764 || x >= 128992 && x <= 129003 || x === 129008 || x >= 129292 && x <= 129338 || x >= 129340 && x <= 129349 || x >= 129351 && x <= 129535 || x >= 129648 && x <= 129660 || x >= 129664 && x <= 129673 || x >= 129679 && x <= 129734 || x >= 129742 && x <= 129756 || x >= 129759 && x <= 129769 || x >= 129776 && x <= 129784 || x >= 131072 && x <= 196605 || x >= 196608 && x <= 262141;
331
+ }
332
+
333
+ // ../../node_modules/get-east-asian-width/index.js
334
+ function validate(codePoint) {
335
+ if (!Number.isSafeInteger(codePoint)) {
336
+ throw new TypeError(`Expected a code point, got \`${typeof codePoint}\`.`);
337
+ }
338
+ }
339
+ function eastAsianWidth(codePoint, { ambiguousAsWide = false } = {}) {
340
+ validate(codePoint);
341
+ if (isFullWidth(codePoint) || isWide(codePoint) || ambiguousAsWide && isAmbiguous(codePoint)) {
342
+ return 2;
343
+ }
344
+ return 1;
345
+ }
346
+
347
+ // ../../node_modules/string-width/index.js
348
+ var import_emoji_regex = __toESM(require_emoji_regex(), 1);
349
+ var segmenter = new Intl.Segmenter;
350
+ var defaultIgnorableCodePointRegex = /^\p{Default_Ignorable_Code_Point}$/u;
351
+ function stringWidth(string, options = {}) {
352
+ if (typeof string !== "string" || string.length === 0) {
353
+ return 0;
354
+ }
355
+ const {
356
+ ambiguousIsNarrow = true,
357
+ countAnsiEscapeCodes = false
358
+ } = options;
359
+ if (!countAnsiEscapeCodes) {
360
+ string = stripAnsi(string);
361
+ }
362
+ if (string.length === 0) {
363
+ return 0;
364
+ }
365
+ let width = 0;
366
+ const eastAsianWidthOptions = { ambiguousAsWide: !ambiguousIsNarrow };
367
+ for (const { segment: character } of segmenter.segment(string)) {
368
+ const codePoint = character.codePointAt(0);
369
+ if (codePoint <= 31 || codePoint >= 127 && codePoint <= 159) {
370
+ continue;
371
+ }
372
+ if (codePoint >= 8203 && codePoint <= 8207 || codePoint === 65279) {
373
+ continue;
374
+ }
375
+ if (codePoint >= 768 && codePoint <= 879 || codePoint >= 6832 && codePoint <= 6911 || codePoint >= 7616 && codePoint <= 7679 || codePoint >= 8400 && codePoint <= 8447 || codePoint >= 65056 && codePoint <= 65071) {
376
+ continue;
377
+ }
378
+ if (codePoint >= 55296 && codePoint <= 57343) {
379
+ continue;
287
380
  }
288
- wrapped += str.charAt(i);
381
+ if (codePoint >= 65024 && codePoint <= 65039) {
382
+ continue;
383
+ }
384
+ if (defaultIgnorableCodePointRegex.test(character)) {
385
+ continue;
386
+ }
387
+ if (import_emoji_regex.default().test(character)) {
388
+ width += 2;
389
+ continue;
390
+ }
391
+ width += eastAsianWidth(codePoint, eastAsianWidthOptions);
289
392
  }
290
- if (start && end) {
291
- wrapped = `${start}${wrapped}${end}`;
393
+ return width;
394
+ }
395
+
396
+ // ../../node_modules/cliui/node_modules/strip-ansi/node_modules/ansi-regex/index.js
397
+ function ansiRegex2({ onlyFirst = false } = {}) {
398
+ const ST = "(?:\\u0007|\\u001B\\u005C|\\u009C)";
399
+ const pattern = [
400
+ `[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?${ST})`,
401
+ "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"
402
+ ].join("|");
403
+ return new RegExp(pattern, onlyFirst ? undefined : "g");
404
+ }
405
+
406
+ // ../../node_modules/cliui/node_modules/strip-ansi/index.js
407
+ var regex2 = ansiRegex2();
408
+ function stripAnsi2(string) {
409
+ if (typeof string !== "string") {
410
+ throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
292
411
  }
293
- return wrapped;
412
+ return string.replace(regex2, "");
413
+ }
414
+
415
+ // ../../node_modules/wrap-ansi/node_modules/strip-ansi/node_modules/ansi-regex/index.js
416
+ function ansiRegex3({ onlyFirst = false } = {}) {
417
+ const ST = "(?:\\u0007|\\u001B\\u005C|\\u009C)";
418
+ const pattern = [
419
+ `[\\u001B\\u009B][[\\]()#;?]*(?:(?:(?:(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]+)*|[a-zA-Z\\d]+(?:;[-a-zA-Z\\d\\/#&.:=?%@~_]*)*)?${ST})`,
420
+ "(?:(?:\\d{1,4}(?:;\\d{0,4})*)?[\\dA-PR-TZcf-nq-uy=><~]))"
421
+ ].join("|");
422
+ return new RegExp(pattern, onlyFirst ? undefined : "g");
423
+ }
424
+
425
+ // ../../node_modules/wrap-ansi/node_modules/strip-ansi/index.js
426
+ var regex3 = ansiRegex3();
427
+ function stripAnsi3(string) {
428
+ if (typeof string !== "string") {
429
+ throw new TypeError(`Expected a \`string\`, got \`${typeof string}\``);
430
+ }
431
+ return string.replace(regex3, "");
432
+ }
433
+
434
+ // ../../node_modules/wrap-ansi/node_modules/ansi-styles/index.js
435
+ var ANSI_BACKGROUND_OFFSET = 10;
436
+ var wrapAnsi16 = (offset = 0) => (code) => `\x1B[${code + offset}m`;
437
+ var wrapAnsi256 = (offset = 0) => (code) => `\x1B[${38 + offset};5;${code}m`;
438
+ var wrapAnsi16m = (offset = 0) => (red, green, blue) => `\x1B[${38 + offset};2;${red};${green};${blue}m`;
439
+ var styles = {
440
+ modifier: {
441
+ reset: [0, 0],
442
+ bold: [1, 22],
443
+ dim: [2, 22],
444
+ italic: [3, 23],
445
+ underline: [4, 24],
446
+ overline: [53, 55],
447
+ inverse: [7, 27],
448
+ hidden: [8, 28],
449
+ strikethrough: [9, 29]
450
+ },
451
+ color: {
452
+ black: [30, 39],
453
+ red: [31, 39],
454
+ green: [32, 39],
455
+ yellow: [33, 39],
456
+ blue: [34, 39],
457
+ magenta: [35, 39],
458
+ cyan: [36, 39],
459
+ white: [37, 39],
460
+ blackBright: [90, 39],
461
+ gray: [90, 39],
462
+ grey: [90, 39],
463
+ redBright: [91, 39],
464
+ greenBright: [92, 39],
465
+ yellowBright: [93, 39],
466
+ blueBright: [94, 39],
467
+ magentaBright: [95, 39],
468
+ cyanBright: [96, 39],
469
+ whiteBright: [97, 39]
470
+ },
471
+ bgColor: {
472
+ bgBlack: [40, 49],
473
+ bgRed: [41, 49],
474
+ bgGreen: [42, 49],
475
+ bgYellow: [43, 49],
476
+ bgBlue: [44, 49],
477
+ bgMagenta: [45, 49],
478
+ bgCyan: [46, 49],
479
+ bgWhite: [47, 49],
480
+ bgBlackBright: [100, 49],
481
+ bgGray: [100, 49],
482
+ bgGrey: [100, 49],
483
+ bgRedBright: [101, 49],
484
+ bgGreenBright: [102, 49],
485
+ bgYellowBright: [103, 49],
486
+ bgBlueBright: [104, 49],
487
+ bgMagentaBright: [105, 49],
488
+ bgCyanBright: [106, 49],
489
+ bgWhiteBright: [107, 49]
490
+ }
491
+ };
492
+ var modifierNames = Object.keys(styles.modifier);
493
+ var foregroundColorNames = Object.keys(styles.color);
494
+ var backgroundColorNames = Object.keys(styles.bgColor);
495
+ var colorNames = [...foregroundColorNames, ...backgroundColorNames];
496
+ function assembleStyles() {
497
+ const codes = new Map;
498
+ for (const [groupName, group] of Object.entries(styles)) {
499
+ for (const [styleName, style] of Object.entries(group)) {
500
+ styles[styleName] = {
501
+ open: `\x1B[${style[0]}m`,
502
+ close: `\x1B[${style[1]}m`
503
+ };
504
+ group[styleName] = styles[styleName];
505
+ codes.set(style[0], style[1]);
506
+ }
507
+ Object.defineProperty(styles, groupName, {
508
+ value: group,
509
+ enumerable: false
510
+ });
511
+ }
512
+ Object.defineProperty(styles, "codes", {
513
+ value: codes,
514
+ enumerable: false
515
+ });
516
+ styles.color.close = "\x1B[39m";
517
+ styles.bgColor.close = "\x1B[49m";
518
+ styles.color.ansi = wrapAnsi16();
519
+ styles.color.ansi256 = wrapAnsi256();
520
+ styles.color.ansi16m = wrapAnsi16m();
521
+ styles.bgColor.ansi = wrapAnsi16(ANSI_BACKGROUND_OFFSET);
522
+ styles.bgColor.ansi256 = wrapAnsi256(ANSI_BACKGROUND_OFFSET);
523
+ styles.bgColor.ansi16m = wrapAnsi16m(ANSI_BACKGROUND_OFFSET);
524
+ Object.defineProperties(styles, {
525
+ rgbToAnsi256: {
526
+ value: (red, green, blue) => {
527
+ if (red === green && green === blue) {
528
+ if (red < 8) {
529
+ return 16;
530
+ }
531
+ if (red > 248) {
532
+ return 231;
533
+ }
534
+ return Math.round((red - 8) / 247 * 24) + 232;
535
+ }
536
+ return 16 + 36 * Math.round(red / 255 * 5) + 6 * Math.round(green / 255 * 5) + Math.round(blue / 255 * 5);
537
+ },
538
+ enumerable: false
539
+ },
540
+ hexToRgb: {
541
+ value: (hex) => {
542
+ const matches = /[a-f\d]{6}|[a-f\d]{3}/i.exec(hex.toString(16));
543
+ if (!matches) {
544
+ return [0, 0, 0];
545
+ }
546
+ let [colorString] = matches;
547
+ if (colorString.length === 3) {
548
+ colorString = [...colorString].map((character) => character + character).join("");
549
+ }
550
+ const integer = Number.parseInt(colorString, 16);
551
+ return [
552
+ integer >> 16 & 255,
553
+ integer >> 8 & 255,
554
+ integer & 255
555
+ ];
556
+ },
557
+ enumerable: false
558
+ },
559
+ hexToAnsi256: {
560
+ value: (hex) => styles.rgbToAnsi256(...styles.hexToRgb(hex)),
561
+ enumerable: false
562
+ },
563
+ ansi256ToAnsi: {
564
+ value: (code) => {
565
+ if (code < 8) {
566
+ return 30 + code;
567
+ }
568
+ if (code < 16) {
569
+ return 90 + (code - 8);
570
+ }
571
+ let red;
572
+ let green;
573
+ let blue;
574
+ if (code >= 232) {
575
+ red = ((code - 232) * 10 + 8) / 255;
576
+ green = red;
577
+ blue = red;
578
+ } else {
579
+ code -= 16;
580
+ const remainder = code % 36;
581
+ red = Math.floor(code / 36) / 5;
582
+ green = Math.floor(remainder / 6) / 5;
583
+ blue = remainder % 6 / 5;
584
+ }
585
+ const value = Math.max(red, green, blue) * 2;
586
+ if (value === 0) {
587
+ return 30;
588
+ }
589
+ let result = 30 + (Math.round(blue) << 2 | Math.round(green) << 1 | Math.round(red));
590
+ if (value === 2) {
591
+ result += 60;
592
+ }
593
+ return result;
594
+ },
595
+ enumerable: false
596
+ },
597
+ rgbToAnsi: {
598
+ value: (red, green, blue) => styles.ansi256ToAnsi(styles.rgbToAnsi256(red, green, blue)),
599
+ enumerable: false
600
+ },
601
+ hexToAnsi: {
602
+ value: (hex) => styles.ansi256ToAnsi(styles.hexToAnsi256(hex)),
603
+ enumerable: false
604
+ }
605
+ });
606
+ return styles;
607
+ }
608
+ var ansiStyles = assembleStyles();
609
+ var ansi_styles_default = ansiStyles;
610
+
611
+ // ../../node_modules/wrap-ansi/index.js
612
+ var ESCAPES = new Set([
613
+ "\x1B",
614
+ "›"
615
+ ]);
616
+ var END_CODE = 39;
617
+ var ANSI_ESCAPE_BELL = "\x07";
618
+ var ANSI_CSI = "[";
619
+ var ANSI_OSC = "]";
620
+ var ANSI_SGR_TERMINATOR = "m";
621
+ var ANSI_ESCAPE_LINK = `${ANSI_OSC}8;;`;
622
+ var wrapAnsiCode = (code) => `${ESCAPES.values().next().value}${ANSI_CSI}${code}${ANSI_SGR_TERMINATOR}`;
623
+ var wrapAnsiHyperlink = (url) => `${ESCAPES.values().next().value}${ANSI_ESCAPE_LINK}${url}${ANSI_ESCAPE_BELL}`;
624
+ var wordLengths = (string) => string.split(" ").map((character) => stringWidth(character));
625
+ var wrapWord = (rows, word, columns) => {
626
+ const characters = [...word];
627
+ let isInsideEscape = false;
628
+ let isInsideLinkEscape = false;
629
+ let visible = stringWidth(stripAnsi3(rows.at(-1)));
630
+ for (const [index, character] of characters.entries()) {
631
+ const characterLength = stringWidth(character);
632
+ if (visible + characterLength <= columns) {
633
+ rows[rows.length - 1] += character;
634
+ } else {
635
+ rows.push(character);
636
+ visible = 0;
637
+ }
638
+ if (ESCAPES.has(character)) {
639
+ isInsideEscape = true;
640
+ const ansiEscapeLinkCandidate = characters.slice(index + 1, index + 1 + ANSI_ESCAPE_LINK.length).join("");
641
+ isInsideLinkEscape = ansiEscapeLinkCandidate === ANSI_ESCAPE_LINK;
642
+ }
643
+ if (isInsideEscape) {
644
+ if (isInsideLinkEscape) {
645
+ if (character === ANSI_ESCAPE_BELL) {
646
+ isInsideEscape = false;
647
+ isInsideLinkEscape = false;
648
+ }
649
+ } else if (character === ANSI_SGR_TERMINATOR) {
650
+ isInsideEscape = false;
651
+ }
652
+ continue;
653
+ }
654
+ visible += characterLength;
655
+ if (visible === columns && index < characters.length - 1) {
656
+ rows.push("");
657
+ visible = 0;
658
+ }
659
+ }
660
+ if (!visible && rows.at(-1).length > 0 && rows.length > 1) {
661
+ rows[rows.length - 2] += rows.pop();
662
+ }
663
+ };
664
+ var stringVisibleTrimSpacesRight = (string) => {
665
+ const words = string.split(" ");
666
+ let last = words.length;
667
+ while (last > 0) {
668
+ if (stringWidth(words[last - 1]) > 0) {
669
+ break;
670
+ }
671
+ last--;
672
+ }
673
+ if (last === words.length) {
674
+ return string;
675
+ }
676
+ return words.slice(0, last).join(" ") + words.slice(last).join("");
677
+ };
678
+ var exec = (string, columns, options = {}) => {
679
+ if (options.trim !== false && string.trim() === "") {
680
+ return "";
681
+ }
682
+ let returnValue = "";
683
+ let escapeCode;
684
+ let escapeUrl;
685
+ const lengths = wordLengths(string);
686
+ let rows = [""];
687
+ for (const [index, word] of string.split(" ").entries()) {
688
+ if (options.trim !== false) {
689
+ rows[rows.length - 1] = rows.at(-1).trimStart();
690
+ }
691
+ let rowLength = stringWidth(rows.at(-1));
692
+ if (index !== 0) {
693
+ if (rowLength >= columns && (options.wordWrap === false || options.trim === false)) {
694
+ rows.push("");
695
+ rowLength = 0;
696
+ }
697
+ if (rowLength > 0 || options.trim === false) {
698
+ rows[rows.length - 1] += " ";
699
+ rowLength++;
700
+ }
701
+ }
702
+ if (options.hard && lengths[index] > columns) {
703
+ const remainingColumns = columns - rowLength;
704
+ const breaksStartingThisLine = 1 + Math.floor((lengths[index] - remainingColumns - 1) / columns);
705
+ const breaksStartingNextLine = Math.floor((lengths[index] - 1) / columns);
706
+ if (breaksStartingNextLine < breaksStartingThisLine) {
707
+ rows.push("");
708
+ }
709
+ wrapWord(rows, word, columns);
710
+ continue;
711
+ }
712
+ if (rowLength + lengths[index] > columns && rowLength > 0 && lengths[index] > 0) {
713
+ if (options.wordWrap === false && rowLength < columns) {
714
+ wrapWord(rows, word, columns);
715
+ continue;
716
+ }
717
+ rows.push("");
718
+ }
719
+ if (rowLength + lengths[index] > columns && options.wordWrap === false) {
720
+ wrapWord(rows, word, columns);
721
+ continue;
722
+ }
723
+ rows[rows.length - 1] += word;
724
+ }
725
+ if (options.trim !== false) {
726
+ rows = rows.map((row) => stringVisibleTrimSpacesRight(row));
727
+ }
728
+ const preString = rows.join(`
729
+ `);
730
+ const pre = [...preString];
731
+ let preStringIndex = 0;
732
+ for (const [index, character] of pre.entries()) {
733
+ returnValue += character;
734
+ if (ESCAPES.has(character)) {
735
+ const { groups } = new RegExp(`(?:\\${ANSI_CSI}(?<code>\\d+)m|\\${ANSI_ESCAPE_LINK}(?<uri>.*)${ANSI_ESCAPE_BELL})`).exec(preString.slice(preStringIndex)) || { groups: {} };
736
+ if (groups.code !== undefined) {
737
+ const code2 = Number.parseFloat(groups.code);
738
+ escapeCode = code2 === END_CODE ? undefined : code2;
739
+ } else if (groups.uri !== undefined) {
740
+ escapeUrl = groups.uri.length === 0 ? undefined : groups.uri;
741
+ }
742
+ }
743
+ const code = ansi_styles_default.codes.get(Number(escapeCode));
744
+ if (pre[index + 1] === `
745
+ `) {
746
+ if (escapeUrl) {
747
+ returnValue += wrapAnsiHyperlink("");
748
+ }
749
+ if (escapeCode && code) {
750
+ returnValue += wrapAnsiCode(code);
751
+ }
752
+ } else if (character === `
753
+ `) {
754
+ if (escapeCode && code) {
755
+ returnValue += wrapAnsiCode(escapeCode);
756
+ }
757
+ if (escapeUrl) {
758
+ returnValue += wrapAnsiHyperlink(escapeUrl);
759
+ }
760
+ }
761
+ preStringIndex += character.length;
762
+ }
763
+ return returnValue;
764
+ };
765
+ function wrapAnsi(string, columns, options) {
766
+ return String(string).normalize().replaceAll(`\r
767
+ `, `
768
+ `).split(`
769
+ `).map((line) => exec(line, columns, options)).join(`
770
+ `);
294
771
  }
295
772
 
296
773
  // ../../node_modules/cliui/index.mjs
297
774
  function ui(opts) {
298
775
  return cliui(opts, {
299
- stringWidth: (str) => {
300
- return [...str].length;
301
- },
302
- stripAnsi,
303
- wrap
776
+ stringWidth,
777
+ stripAnsi: stripAnsi2,
778
+ wrap: wrapAnsi
304
779
  });
305
780
  }
306
781
 
@@ -325,14 +800,13 @@ function sync_default(start, callback) {
325
800
 
326
801
  // ../../node_modules/yargs/lib/platform-shims/esm.mjs
327
802
  import { inspect } from "util";
328
- import { readFileSync as readFileSync2 } from "fs";
329
803
  import { fileURLToPath } from "url";
330
804
 
331
- // ../../node_modules/yargs-parser/build/lib/index.js
805
+ // ../../node_modules/yargs/node_modules/yargs-parser/build/lib/index.js
332
806
  import { format } from "util";
333
807
  import { normalize, resolve as resolve2 } from "path";
334
808
 
335
- // ../../node_modules/yargs-parser/build/lib/string-utils.js
809
+ // ../../node_modules/yargs/node_modules/yargs-parser/build/lib/string-utils.js
336
810
  function camelCase(str) {
337
811
  const isCamelCase = str !== str.toLowerCase() && str !== str.toUpperCase();
338
812
  if (!isCamelCase) {
@@ -386,7 +860,7 @@ function looksLikeNumber(x) {
386
860
  return /^[-]?(?:\d+(?:\.\d*)?|\.\d+)(e[-+]?\d+)?$/.test(x);
387
861
  }
388
862
 
389
- // ../../node_modules/yargs-parser/build/lib/tokenize-arg-string.js
863
+ // ../../node_modules/yargs/node_modules/yargs-parser/build/lib/tokenize-arg-string.js
390
864
  function tokenizeArgString(argString) {
391
865
  if (Array.isArray(argString)) {
392
866
  return argString.map((e) => typeof e !== "string" ? e + "" : e);
@@ -418,7 +892,7 @@ function tokenizeArgString(argString) {
418
892
  return args;
419
893
  }
420
894
 
421
- // ../../node_modules/yargs-parser/build/lib/yargs-parser-types.js
895
+ // ../../node_modules/yargs/node_modules/yargs-parser/build/lib/yargs-parser-types.js
422
896
  var DefaultValuesForTypeKey;
423
897
  (function(DefaultValuesForTypeKey2) {
424
898
  DefaultValuesForTypeKey2["BOOLEAN"] = "boolean";
@@ -427,7 +901,7 @@ var DefaultValuesForTypeKey;
427
901
  DefaultValuesForTypeKey2["ARRAY"] = "array";
428
902
  })(DefaultValuesForTypeKey || (DefaultValuesForTypeKey = {}));
429
903
 
430
- // ../../node_modules/yargs-parser/build/lib/yargs-parser.js
904
+ // ../../node_modules/yargs/node_modules/yargs-parser/build/lib/yargs-parser.js
431
905
  var mixin2;
432
906
 
433
907
  class YargsParser {
@@ -1265,11 +1739,13 @@ function stripQuotes(val) {
1265
1739
  return typeof val === "string" && (val[0] === "'" || val[0] === '"') && val[val.length - 1] === val[0] ? val.substring(1, val.length - 1) : val;
1266
1740
  }
1267
1741
 
1268
- // ../../node_modules/yargs-parser/build/lib/index.js
1742
+ // ../../node_modules/yargs/node_modules/yargs-parser/build/lib/index.js
1743
+ import { readFileSync } from "fs";
1744
+ import { createRequire } from "node:module";
1269
1745
  var _a;
1270
1746
  var _b;
1271
1747
  var _c;
1272
- var minNodeVersion = process && process.env && process.env.YARGS_MIN_NODE_VERSION ? Number(process.env.YARGS_MIN_NODE_VERSION) : 12;
1748
+ var minNodeVersion = process && process.env && process.env.YARGS_MIN_NODE_VERSION ? Number(process.env.YARGS_MIN_NODE_VERSION) : 20;
1273
1749
  var nodeVersion = (_b = (_a = process === null || process === undefined ? undefined : process.versions) === null || _a === undefined ? undefined : _a.node) !== null && _b !== undefined ? _b : (_c = process === null || process === undefined ? undefined : process.version) === null || _c === undefined ? undefined : _c.slice(1);
1274
1750
  if (nodeVersion) {
1275
1751
  const major = Number(nodeVersion.match(/^([^.]+)/)[1]);
@@ -1278,6 +1754,7 @@ if (nodeVersion) {
1278
1754
  }
1279
1755
  }
1280
1756
  var env = process ? process.env : {};
1757
+ var require2 = createRequire ? createRequire(import.meta.url) : undefined;
1281
1758
  var parser = new YargsParser({
1282
1759
  cwd: process.cwd,
1283
1760
  env: () => {
@@ -1287,10 +1764,13 @@ var parser = new YargsParser({
1287
1764
  normalize,
1288
1765
  resolve: resolve2,
1289
1766
  require: (path) => {
1290
- if (true) {
1291
- return __require(path);
1292
- } else
1293
- ;
1767
+ if (typeof require2 !== "undefined") {
1768
+ return require2(path);
1769
+ } else if (path.match(/\.json$/)) {
1770
+ return JSON.parse(readFileSync(path, "utf8"));
1771
+ } else {
1772
+ throw Error("only .json config files are supported in ESM");
1773
+ }
1294
1774
  }
1295
1775
  });
1296
1776
  var yargsParser = function Parser(args, opts) {
@@ -1306,7 +1786,7 @@ yargsParser.looksLikeNumber = looksLikeNumber;
1306
1786
  var lib_default = yargsParser;
1307
1787
 
1308
1788
  // ../../node_modules/yargs/lib/platform-shims/esm.mjs
1309
- import { basename, dirname as dirname2, extname, relative, resolve as resolve4 } from "path";
1789
+ import { basename, dirname as dirname2, extname, relative, resolve as resolve4, join } from "path";
1310
1790
 
1311
1791
  // ../../node_modules/yargs/build/lib/utils/process-argv.js
1312
1792
  function getProcessArgvBinIndex() {
@@ -1327,24 +1807,13 @@ function getProcessArgvBin() {
1327
1807
  return process.argv[getProcessArgvBinIndex()];
1328
1808
  }
1329
1809
 
1330
- // ../../node_modules/yargs/build/lib/yerror.js
1331
- class YError extends Error {
1332
- constructor(msg) {
1333
- super(msg || "yargs error");
1334
- this.name = "YError";
1335
- if (Error.captureStackTrace) {
1336
- Error.captureStackTrace(this, YError);
1337
- }
1338
- }
1339
- }
1340
-
1341
1810
  // ../../node_modules/y18n/build/lib/platform-shims/node.js
1342
- import { readFileSync, statSync as statSync2, writeFile } from "fs";
1811
+ import { readFileSync as readFileSync2, statSync as statSync2, writeFile } from "fs";
1343
1812
  import { format as format2 } from "util";
1344
1813
  import { resolve as resolve3 } from "path";
1345
1814
  var node_default = {
1346
1815
  fs: {
1347
- readFileSync,
1816
+ readFileSync: readFileSync2,
1348
1817
  writeFile
1349
1818
  },
1350
1819
  format: format2,
@@ -1376,12 +1845,10 @@ class Y18N {
1376
1845
  return this._taggedLiteral(arguments[0], ...arguments);
1377
1846
  }
1378
1847
  const str = args.shift();
1379
- let cb = function() {
1380
- };
1848
+ let cb = function() {};
1381
1849
  if (typeof args[args.length - 1] === "function")
1382
1850
  cb = args.pop();
1383
- cb = cb || function() {
1384
- };
1851
+ cb = cb || function() {};
1385
1852
  if (!this.cache[this.locale])
1386
1853
  this._readLocaleFile();
1387
1854
  if (!this.cache[this.locale][str] && this.updateFiles) {
@@ -1401,8 +1868,7 @@ class Y18N {
1401
1868
  const singular = args.shift();
1402
1869
  const plural = args.shift();
1403
1870
  const quantity = args.shift();
1404
- let cb = function() {
1405
- };
1871
+ let cb = function() {};
1406
1872
  if (typeof args[args.length - 1] === "function")
1407
1873
  cb = args.pop();
1408
1874
  if (!this.cache[this.locale])
@@ -1527,15 +1993,12 @@ var y18n2 = (opts) => {
1527
1993
  var y18n_default = y18n2;
1528
1994
 
1529
1995
  // ../../node_modules/yargs/lib/platform-shims/esm.mjs
1530
- var REQUIRE_ERROR = "require is not supported by ESM";
1531
- var REQUIRE_DIRECTORY_ERROR = "loading a directory of commands is not supported yet for ESM";
1532
- var __dirname2;
1533
- try {
1534
- __dirname2 = fileURLToPath(import.meta.url);
1535
- } catch (e) {
1536
- __dirname2 = process.cwd();
1537
- }
1996
+ var import_get_caller_file = __toESM(require_get_caller_file(), 1);
1997
+ import { createRequire as createRequire2 } from "node:module";
1998
+ import { readFileSync as readFileSync3, readdirSync as readdirSync2 } from "node:fs";
1999
+ var __dirname2 = fileURLToPath(import.meta.url);
1538
2000
  var mainFilename = __dirname2.substring(0, __dirname2.lastIndexOf("node_modules"));
2001
+ var require3 = createRequire2(import.meta.url);
1539
2002
  var esm_default = {
1540
2003
  assert: {
1541
2004
  notStrictEqual,
@@ -1547,9 +2010,6 @@ var esm_default = {
1547
2010
  return process.env[key];
1548
2011
  },
1549
2012
  inspect,
1550
- getCallerFile: () => {
1551
- throw new YError(REQUIRE_DIRECTORY_ERROR);
1552
- },
1553
2013
  getProcessArgvBin,
1554
2014
  mainFilename: mainFilename || process.cwd(),
1555
2015
  Parser: lib_default,
@@ -1558,27 +2018,28 @@ var esm_default = {
1558
2018
  dirname: dirname2,
1559
2019
  extname,
1560
2020
  relative,
1561
- resolve: resolve4
2021
+ resolve: resolve4,
2022
+ join
1562
2023
  },
1563
2024
  process: {
1564
2025
  argv: () => process.argv,
1565
2026
  cwd: process.cwd,
1566
2027
  emitWarning: (warning, type) => process.emitWarning(warning, type),
1567
2028
  execPath: () => process.execPath,
1568
- exit: process.exit,
2029
+ exit: (code) => {
2030
+ process.exit(code);
2031
+ },
1569
2032
  nextTick: process.nextTick,
1570
2033
  stdColumns: typeof process.stdout.columns !== "undefined" ? process.stdout.columns : null
1571
2034
  },
1572
- readFileSync: readFileSync2,
1573
- require: () => {
1574
- throw new YError(REQUIRE_ERROR);
1575
- },
1576
- requireDirectory: () => {
1577
- throw new YError(REQUIRE_DIRECTORY_ERROR);
1578
- },
1579
- stringWidth: (str) => {
1580
- return [...str].length;
2035
+ readFileSync: readFileSync3,
2036
+ readdirSync: readdirSync2,
2037
+ require: require3,
2038
+ getCallerFile: () => {
2039
+ const callerFile = import_get_caller_file.default(3);
2040
+ return callerFile.match(/^file:\/\//) ? fileURLToPath(callerFile) : callerFile;
1581
2041
  },
2042
+ stringWidth,
1582
2043
  y18n: y18n_default({
1583
2044
  directory: resolve4(__dirname2, "../../../locales"),
1584
2045
  updateFiles: false
@@ -1601,6 +2062,17 @@ function isPromise(maybePromise) {
1601
2062
  return !!maybePromise && !!maybePromise.then && typeof maybePromise.then === "function";
1602
2063
  }
1603
2064
 
2065
+ // ../../node_modules/yargs/build/lib/yerror.js
2066
+ class YError extends Error {
2067
+ constructor(msg) {
2068
+ super(msg || "yargs error");
2069
+ this.name = "YError";
2070
+ if (Error.captureStackTrace) {
2071
+ Error.captureStackTrace(this, YError);
2072
+ }
2073
+ }
2074
+ }
2075
+
1604
2076
  // ../../node_modules/yargs/build/lib/parse-command.js
1605
2077
  function parseCommand(cmd) {
1606
2078
  const extraSpacesStrippedCommand = cmd.replace(/\s{2,}/g, " ");
@@ -1789,18 +2261,6 @@ function isFunction(arg) {
1789
2261
  return typeof arg === "function";
1790
2262
  }
1791
2263
 
1792
- // ../../node_modules/yargs/build/lib/utils/which-module.js
1793
- function whichModule(exported) {
1794
- if (false)
1795
- ;
1796
- for (let i = 0, files = Object.keys(__require.cache), mod;i < files.length; i++) {
1797
- mod = __require.cache[files[i]];
1798
- if (mod.exports === exported)
1799
- return mod;
1800
- }
1801
- return null;
1802
- }
1803
-
1804
2264
  // ../../node_modules/yargs/build/lib/command.js
1805
2265
  var DEFAULT_MARKER = /(^\*)|(^\$0)/;
1806
2266
 
@@ -1817,29 +2277,63 @@ class CommandInstance {
1817
2277
  }
1818
2278
  addDirectory(dir, req, callerFile, opts) {
1819
2279
  opts = opts || {};
1820
- if (typeof opts.recurse !== "boolean")
1821
- opts.recurse = false;
2280
+ this.requireCache.add(callerFile);
2281
+ const fullDirPath = this.shim.path.resolve(this.shim.path.dirname(callerFile), dir);
2282
+ const files = this.shim.readdirSync(fullDirPath, {
2283
+ recursive: opts.recurse ? true : false
2284
+ });
1822
2285
  if (!Array.isArray(opts.extensions))
1823
2286
  opts.extensions = ["js"];
1824
- const parentVisit = typeof opts.visit === "function" ? opts.visit : (o) => o;
1825
- opts.visit = (obj, joined, filename) => {
1826
- const visited = parentVisit(obj, joined, filename);
1827
- if (visited) {
1828
- if (this.requireCache.has(joined))
1829
- return visited;
1830
- else
1831
- this.requireCache.add(joined);
1832
- this.addHandler(visited);
2287
+ const visit = typeof opts.visit === "function" ? opts.visit : (o) => o;
2288
+ for (const fileb of files) {
2289
+ const file = fileb.toString();
2290
+ if (opts.exclude) {
2291
+ let exclude = false;
2292
+ if (typeof opts.exclude === "function") {
2293
+ exclude = opts.exclude(file);
2294
+ } else {
2295
+ exclude = opts.exclude.test(file);
2296
+ }
2297
+ if (exclude)
2298
+ continue;
1833
2299
  }
1834
- return visited;
1835
- };
1836
- this.shim.requireDirectory({ require: req, filename: callerFile }, dir, opts);
2300
+ if (opts.include) {
2301
+ let include = false;
2302
+ if (typeof opts.include === "function") {
2303
+ include = opts.include(file);
2304
+ } else {
2305
+ include = opts.include.test(file);
2306
+ }
2307
+ if (!include)
2308
+ continue;
2309
+ }
2310
+ let supportedExtension = false;
2311
+ for (const ext of opts.extensions) {
2312
+ if (file.endsWith(ext))
2313
+ supportedExtension = true;
2314
+ }
2315
+ if (supportedExtension) {
2316
+ const joined = this.shim.path.join(fullDirPath, file);
2317
+ const module = req(joined);
2318
+ const extendableModule = Object.create(null, Object.getOwnPropertyDescriptors({ ...module }));
2319
+ const visited = visit(extendableModule, joined, file);
2320
+ if (visited) {
2321
+ if (this.requireCache.has(joined))
2322
+ continue;
2323
+ else
2324
+ this.requireCache.add(joined);
2325
+ if (!extendableModule.command) {
2326
+ extendableModule.command = this.shim.path.basename(joined, this.shim.path.extname(joined));
2327
+ }
2328
+ this.addHandler(extendableModule);
2329
+ }
2330
+ }
2331
+ }
1837
2332
  }
1838
2333
  addHandler(cmd, description, builder, handler, commandMiddleware, deprecated) {
1839
2334
  let aliases = [];
1840
2335
  const middlewares = commandMiddlewareFactory(commandMiddleware);
1841
- handler = handler || (() => {
1842
- });
2336
+ handler = handler || (() => {});
1843
2337
  if (Array.isArray(cmd)) {
1844
2338
  if (isCommandAndAliases(cmd)) {
1845
2339
  [cmd, ...aliases] = cmd;
@@ -1849,7 +2343,10 @@ class CommandInstance {
1849
2343
  }
1850
2344
  }
1851
2345
  } else if (isCommandHandlerDefinition(cmd)) {
1852
- let command = Array.isArray(cmd.command) || typeof cmd.command === "string" ? cmd.command : this.moduleName(cmd);
2346
+ let command = Array.isArray(cmd.command) || typeof cmd.command === "string" ? cmd.command : null;
2347
+ if (command === null) {
2348
+ throw new Error(`No command name given for module: ${this.shim.inspect(cmd)}`);
2349
+ }
1853
2350
  if (cmd.aliases)
1854
2351
  command = [].concat(command).concat(cmd.aliases);
1855
2352
  this.addHandler(command, this.extractDesc(cmd), cmd.builder, cmd.handler, cmd.middlewares, cmd.deprecated);
@@ -1988,8 +2485,7 @@ class CommandInstance {
1988
2485
  innerArgv.catch((error) => {
1989
2486
  try {
1990
2487
  yargs.getInternalMethods().getUsageInstance().fail(null, error);
1991
- } catch (_err) {
1992
- }
2488
+ } catch (_err) {}
1993
2489
  });
1994
2490
  }
1995
2491
  }
@@ -2134,15 +2630,6 @@ class CommandInstance {
2134
2630
  }
2135
2631
  return;
2136
2632
  }
2137
- moduleName(obj) {
2138
- const mod = whichModule(obj);
2139
- if (!mod)
2140
- throw new Error(`No command name given for module: ${this.shim.inspect(obj)}`);
2141
- return this.commandFromFilename(mod.filename);
2142
- }
2143
- commandFromFilename(filename) {
2144
- return this.shim.path.basename(filename, this.shim.path.extname(filename));
2145
- }
2146
2633
  extractDesc({ describe, description, desc }) {
2147
2634
  for (const test of [describe, description, desc]) {
2148
2635
  if (typeof test === "string" || test === false)
@@ -2339,20 +2826,20 @@ function usage(yargs, shim2) {
2339
2826
  epilogs.push(msg);
2340
2827
  };
2341
2828
  let wrapSet = false;
2342
- let wrap2;
2829
+ let wrap;
2343
2830
  self.wrap = (cols) => {
2344
2831
  wrapSet = true;
2345
- wrap2 = cols;
2832
+ wrap = cols;
2346
2833
  };
2347
2834
  self.getWrap = () => {
2348
2835
  if (shim2.getEnv("YARGS_DISABLE_WRAP")) {
2349
2836
  return null;
2350
2837
  }
2351
2838
  if (!wrapSet) {
2352
- wrap2 = windowWidth();
2839
+ wrap = windowWidth();
2353
2840
  wrapSet = true;
2354
2841
  }
2355
- return wrap2;
2842
+ return wrap;
2356
2843
  };
2357
2844
  const deferY18nLookupPrefix = "__yargsString__:";
2358
2845
  self.deferY18nLookup = (str) => deferY18nLookupPrefix + str;
@@ -2760,9 +3247,10 @@ _{{app_name}}_yargs_completions()
2760
3247
  args=("\${COMP_WORDS[@]}")
2761
3248
 
2762
3249
  # ask yargs to generate completions.
2763
- type_list=$({{app_path}} --get-yargs-completions "\${args[@]}")
2764
-
2765
- COMPREPLY=( $(compgen -W "\${type_list}" -- \${cur_word}) )
3250
+ # see https://stackoverflow.com/a/40944195/7080036 for the spaces-handling awk
3251
+ mapfile -t type_list < <({{app_path}} --get-yargs-completions "\${args[@]}")
3252
+ mapfile -t COMPREPLY < <(compgen -W "$( printf '%q ' "\${type_list[@]}" )" -- "\${cur_word}" |
3253
+ awk '/ / { print "\\""$0"\\"" } /^[^ ]+$/ { print $0 }')
2766
3254
 
2767
3255
  # if no match was found, fall back to filename completion
2768
3256
  if [ \${#COMPREPLY[@]} -eq 0 ]; then
@@ -2789,9 +3277,17 @@ _{{app_name}}_yargs_completions()
2789
3277
  IFS=$'
2790
3278
  ' reply=($(COMP_CWORD="$((CURRENT-1))" COMP_LINE="$BUFFER" COMP_POINT="$CURSOR" {{app_path}} --get-yargs-completions "\${words[@]}"))
2791
3279
  IFS=$si
2792
- _describe 'values' reply
3280
+ if [[ \${#reply} -gt 0 ]]; then
3281
+ _describe 'values' reply
3282
+ else
3283
+ _default
3284
+ fi
2793
3285
  }
2794
- compdef _{{app_name}}_yargs_completions {{app_name}}
3286
+ if [[ "'\${zsh_eval_context[-1]}" == "loadautofunc" ]]; then
3287
+ _{{app_name}}_yargs_completions "$@"
3288
+ else
3289
+ compdef _{{app_name}}_yargs_completions {{app_name}}
3290
+ fi
2795
3291
  ###-end-{{app_name}}-completions-###
2796
3292
  `;
2797
3293
 
@@ -3322,7 +3818,7 @@ function applyExtends(config, cwd, mergeExtends, _shim) {
3322
3818
  let pathToDefault = null;
3323
3819
  if (!isPath) {
3324
3820
  try {
3325
- pathToDefault = __require.resolve(config.extends);
3821
+ pathToDefault = import.meta.resolve(config.extends);
3326
3822
  } catch (_err) {
3327
3823
  return config;
3328
3824
  }
@@ -3331,7 +3827,7 @@ function applyExtends(config, cwd, mergeExtends, _shim) {
3331
3827
  }
3332
3828
  checkForCircularExtends(pathToDefault);
3333
3829
  previouslyVisitedConfigs.push(pathToDefault);
3334
- defaultConfig = isPath ? JSON.parse(shim2.readFileSync(pathToDefault, "utf8")) : __require(config.extends);
3830
+ defaultConfig = isPath ? JSON.parse(shim2.readFileSync(pathToDefault, "utf8")) : _shim.require(config.extends);
3335
3831
  delete config.extends;
3336
3832
  defaultConfig = applyExtends(defaultConfig, shim2.path.dirname(pathToDefault), mergeExtends, shim2);
3337
3833
  }
@@ -3464,6 +3960,7 @@ var kRunYargsParserAndExecuteCommands = Symbol("runYargsParserAndExecuteCommands
3464
3960
  var kRunValidation = Symbol("runValidation");
3465
3961
  var kSetHasOutput = Symbol("setHasOutput");
3466
3962
  var kTrackManuallySetKeys = Symbol("kTrackManuallySetKeys");
3963
+ var DEFAULT_LOCALE = "en_US";
3467
3964
 
3468
3965
  class YargsInstance {
3469
3966
  constructor(processArgs = [], cwd, parentRequire, shim3) {
@@ -3517,6 +4014,7 @@ class YargsInstance {
3517
4014
  __classPrivateFieldSet(this, _YargsInstance_options, __classPrivateFieldGet(this, _YargsInstance_options, "f"), "f");
3518
4015
  __classPrivateFieldGet(this, _YargsInstance_options, "f").showHiddenOpt = __classPrivateFieldGet(this, _YargsInstance_defaultShowHiddenOpt, "f");
3519
4016
  __classPrivateFieldSet(this, _YargsInstance_logger, this[kCreateLogger](), "f");
4017
+ __classPrivateFieldGet(this, _YargsInstance_shim, "f").y18n.setLocale(DEFAULT_LOCALE);
3520
4018
  }
3521
4019
  addHelpOpt(opt, msg) {
3522
4020
  const defaultHelpOpt = "help";
@@ -3608,29 +4106,26 @@ class YargsInstance {
3608
4106
  if (!value) {
3609
4107
  throw new YError("coerce callback must be provided");
3610
4108
  }
3611
- __classPrivateFieldGet(this, _YargsInstance_options, "f").key[keys] = true;
4109
+ const coerceKey = keys;
4110
+ __classPrivateFieldGet(this, _YargsInstance_options, "f").key[coerceKey] = true;
3612
4111
  __classPrivateFieldGet(this, _YargsInstance_globalMiddleware, "f").addCoerceMiddleware((argv, yargs) => {
3613
- let aliases;
3614
- const shouldCoerce = Object.prototype.hasOwnProperty.call(argv, keys);
3615
- if (!shouldCoerce) {
4112
+ var _a2;
4113
+ const coerceKeyAliases = (_a2 = yargs.getAliases()[coerceKey]) !== null && _a2 !== undefined ? _a2 : [];
4114
+ const argvKeys = [coerceKey, ...coerceKeyAliases].filter((key) => Object.prototype.hasOwnProperty.call(argv, key));
4115
+ if (argvKeys.length === 0) {
3616
4116
  return argv;
3617
4117
  }
3618
4118
  return maybeAsyncResult(() => {
3619
- aliases = yargs.getAliases();
3620
- return value(argv[keys]);
4119
+ return value(argv[argvKeys[0]]);
3621
4120
  }, (result) => {
3622
- argv[keys] = result;
3623
- const stripAliased = yargs.getInternalMethods().getParserConfiguration()["strip-aliased"];
3624
- if (aliases[keys] && stripAliased !== true) {
3625
- for (const alias of aliases[keys]) {
3626
- argv[alias] = result;
3627
- }
3628
- }
4121
+ argvKeys.forEach((key) => {
4122
+ argv[key] = result;
4123
+ });
3629
4124
  return argv;
3630
4125
  }, (err) => {
3631
4126
  throw new YError(err.message);
3632
4127
  });
3633
- }, keys);
4128
+ }, coerceKey);
3634
4129
  return this;
3635
4130
  }
3636
4131
  conflicts(key1, key2) {
@@ -4337,8 +4832,7 @@ class YargsInstance {
4337
4832
  argv._.push.apply(argv._, argv["--"]);
4338
4833
  try {
4339
4834
  delete argv["--"];
4340
- } catch (_err) {
4341
- }
4835
+ } catch (_err) {}
4342
4836
  return argv;
4343
4837
  }
4344
4838
  [kCreateLogger]() {
@@ -4454,7 +4948,7 @@ class YargsInstance {
4454
4948
  let obj = {};
4455
4949
  try {
4456
4950
  let startDir = rootPath || __classPrivateFieldGet(this, _YargsInstance_shim, "f").mainFilename;
4457
- if (!rootPath && __classPrivateFieldGet(this, _YargsInstance_shim, "f").path.extname(startDir)) {
4951
+ if (__classPrivateFieldGet(this, _YargsInstance_shim, "f").path.extname(startDir)) {
4458
4952
  startDir = __classPrivateFieldGet(this, _YargsInstance_shim, "f").path.dirname(startDir);
4459
4953
  }
4460
4954
  const pkgJsonPath = __classPrivateFieldGet(this, _YargsInstance_shim, "f").findUp(startDir, (dir, names) => {
@@ -4466,8 +4960,7 @@ class YargsInstance {
4466
4960
  });
4467
4961
  assertNotStrictEqual(pkgJsonPath, undefined, __classPrivateFieldGet(this, _YargsInstance_shim, "f"));
4468
4962
  obj = JSON.parse(__classPrivateFieldGet(this, _YargsInstance_shim, "f").readFileSync(pkgJsonPath, "utf8"));
4469
- } catch (_noop) {
4470
- }
4963
+ } catch (_noop) {}
4471
4964
  __classPrivateFieldGet(this, _YargsInstance_pkgs, "f")[npath] = obj || {};
4472
4965
  return __classPrivateFieldGet(this, _YargsInstance_pkgs, "f")[npath];
4473
4966
  }
@@ -4698,6 +5191,7 @@ class YargsInstance {
4698
5191
  return __classPrivateFieldGet(this, _YargsInstance_shim, "f").path.relative(base, dir);
4699
5192
  }
4700
5193
  [kRunYargsParserAndExecuteCommands](args, shortCircuit, calledFromCommand, commandIndex = 0, helpOnly = false) {
5194
+ var _a2, _b2, _c2, _d;
4701
5195
  let skipValidation = !!calledFromCommand || helpOnly;
4702
5196
  args = args || __classPrivateFieldGet(this, _YargsInstance_processArgs, "f");
4703
5197
  __classPrivateFieldGet(this, _YargsInstance_options, "f").__ = __classPrivateFieldGet(this, _YargsInstance_shim, "f").y18n.__;
@@ -4740,7 +5234,10 @@ class YargsInstance {
4740
5234
  }
4741
5235
  __classPrivateFieldSet(this, _YargsInstance_isGlobalContext, false, "f");
4742
5236
  const handlerKeys = __classPrivateFieldGet(this, _YargsInstance_command, "f").getCommands();
4743
- const requestCompletions = __classPrivateFieldGet(this, _YargsInstance_completion, "f").completionKey in argv;
5237
+ const requestCompletions = ((_a2 = __classPrivateFieldGet(this, _YargsInstance_completion, "f")) === null || _a2 === undefined ? undefined : _a2.completionKey) ? [
5238
+ (_b2 = __classPrivateFieldGet(this, _YargsInstance_completion, "f")) === null || _b2 === undefined ? undefined : _b2.completionKey,
5239
+ ...(_d = this.getAliases()[(_c2 = __classPrivateFieldGet(this, _YargsInstance_completion, "f")) === null || _c2 === undefined ? undefined : _c2.completionKey]) !== null && _d !== undefined ? _d : []
5240
+ ].some((key) => Object.prototype.hasOwnProperty.call(argv, key)) : false;
4744
5241
  const skipRecommendation = helpOptSet || requestCompletions || helpOnly;
4745
5242
  if (argv._.length) {
4746
5243
  if (handlerKeys.length) {
@@ -4790,8 +5287,10 @@ class YargsInstance {
4790
5287
  if (__classPrivateFieldGet(this, _YargsInstance_exitProcess, "f"))
4791
5288
  setBlocking(true);
4792
5289
  skipValidation = true;
4793
- this.showHelp("log");
4794
- this.exit(0);
5290
+ this.showHelp((message) => {
5291
+ __classPrivateFieldGet(this, _YargsInstance_logger, "f").log(message);
5292
+ this.exit(0);
5293
+ });
4795
5294
  } else if (versionOptSet) {
4796
5295
  if (__classPrivateFieldGet(this, _YargsInstance_exitProcess, "f"))
4797
5296
  setBlocking(true);
@@ -4881,13 +5380,18 @@ function errorExit(title, text) {
4881
5380
  process.exit(1);
4882
5381
  }
4883
5382
  y.command("generate-types", "generates typescript types", (yargs) => yargs.option("access-token", {
4884
- describe: "access token"
5383
+ describe: "access token",
5384
+ type: "string"
4885
5385
  }).option("outfile", {
4886
5386
  default: "requence-env.d.ts"
4887
5387
  }).option("outdir", {
4888
5388
  default: ""
4889
5389
  }), async (argv) => {
4890
- const token = argv.accessToken ?? process.env.REQUENCE_ACCESS_TOKEN ?? JSON.parse(fs.readFileSync("package.json", "utf-8")).requence?.accessToken;
5390
+ let token = argv.accessToken ?? process.env.REQUENCE_TASK_ACCESS_TOKEN ?? process.env.REQUENCE_ACCESS_TOKEN;
5391
+ if (!token) {
5392
+ const pkgJson = JSON.parse(fs.readFileSync("package.json", "utf-8"));
5393
+ token = pkgJson.requence?.task?.accessToken ?? pkgJson.requence?.accessToken;
5394
+ }
4891
5395
  console.info();
4892
5396
  if (!token) {
4893
5397
  errorExit("No access token found", `You can provide the access token as argument to ${chalk.bold("createTask")},
@@ -4899,7 +5403,7 @@ in your ${chalk.bold("package.json")} in ${chalk.bold("requence.accessToken")}`)
4899
5403
  errorExit("Invalid access token");
4900
5404
  }
4901
5405
  const [, accessToken, serverUrl] = parts;
4902
- console.info(chalk.gray(`generating typescript definitions…`));
5406
+ console.info(chalk.gray("generating typescript definitions…"));
4903
5407
  const response = await fetch(serverUrl + "/task/types/typescript", {
4904
5408
  method: "GET",
4905
5409
  headers: {
@@ -4911,14 +5415,12 @@ in your ${chalk.bold("package.json")} in ${chalk.bold("requence.accessToken")}`)
4911
5415
  errorExit(error);
4912
5416
  }
4913
5417
  const text = await response.text();
4914
- const data = `/* eslint-disable */
4915
- /* prettier-ignore */
4916
-
4917
- ${text}`;
5418
+ const data = ["/* eslint-disable */", "/* prettier-ignore */", text].join(`
5419
+ `);
4918
5420
  const file = path.join(argv.outdir || process.cwd(), argv.outfile);
4919
5421
  fs.writeFileSync(file, data);
4920
5422
  console.info(chalk.green("types saved to", chalk.bold(path.relative(process.cwd(), file))));
4921
5423
  }).scriptName("requence-task").help("h").demandCommand(1, 1).strict().parse();
4922
5424
 
4923
- //# debugId=B7E3681F48E5677864756E2164756E21
5425
+ //# debugId=3D3AC8735384F72F64756E2164756E21
4924
5426
  //# sourceMappingURL=cli.js.map