windmill-cli 1.447.5 → 1.447.6

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 (425) hide show
  1. package/esm/deps/jsr.io/@std/fmt/{1.0.2 → 1.0.4}/colors.js +1 -1
  2. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_create_walk_entry.js +3 -3
  3. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_same_path.js +2 -2
  4. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_subdir.js +3 -3
  5. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_to_path_string.js +2 -2
  6. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/copy.js +12 -11
  7. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/empty_dir.js +4 -4
  8. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_dir.js +3 -3
  9. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_file.js +4 -4
  10. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_link.js +4 -4
  11. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_symlink.js +51 -14
  12. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/eol.js +7 -5
  13. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/exists.js +37 -17
  14. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/expand_glob.js +15 -14
  15. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/mod.js +2 -2
  16. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/move.js +5 -5
  17. package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/walk.js +22 -22
  18. package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/copy.js +1 -1
  19. package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/read_all.js +3 -3
  20. package/esm/deps/jsr.io/@std/io/0.225.0/types.js +15 -0
  21. package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/write_all.js +2 -2
  22. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_config.js +1 -1
  23. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_file_handler_symbols.js +1 -1
  24. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_state.js +1 -1
  25. package/esm/deps/jsr.io/@std/log/0.224.13/base_handler.js +331 -0
  26. package/esm/deps/jsr.io/@std/log/0.224.13/console_handler.js +112 -0
  27. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/critical.js +2 -1
  28. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/debug.js +2 -1
  29. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/error.js +2 -1
  30. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/file_handler.js +147 -15
  31. package/esm/deps/jsr.io/@std/log/0.224.13/formatters.js +45 -0
  32. package/esm/deps/jsr.io/@std/log/0.224.13/get_logger.js +75 -0
  33. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/info.js +2 -1
  34. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/levels.js +3 -1
  35. package/esm/deps/jsr.io/@std/log/0.224.13/logger.js +525 -0
  36. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/mod.js +6 -6
  37. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/rotating_file_handler.js +2 -2
  38. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/setup.js +1 -1
  39. package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/warn.js +2 -1
  40. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/basename.js +17 -0
  41. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/dirname.js +12 -0
  42. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/extname.js +16 -0
  43. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join.js +13 -0
  44. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join_globs.js +3 -2
  45. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize.js +18 -0
  46. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize_glob.js +2 -1
  47. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join_globs.js +3 -2
  48. package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize_glob.js +2 -1
  49. package/esm/deps.js +8 -8
  50. package/esm/gen/core/OpenAPI.js +1 -1
  51. package/esm/main.js +1 -1
  52. package/package.json +1 -1
  53. package/types/deps/jsr.io/@std/bytes/{1.0.2 → 1.0.4}/concat.d.ts.map +1 -1
  54. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_base32_common.d.ts.map +1 -1
  55. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_validate_binary_like.d.ts.map +1 -1
  56. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/ascii85.d.ts.map +1 -1
  57. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base32.d.ts.map +1 -1
  58. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base58.d.ts.map +1 -1
  59. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64.d.ts.map +1 -1
  60. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64url.d.ts.map +1 -1
  61. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/hex.d.ts.map +1 -1
  62. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/mod.d.ts.map +1 -1
  63. package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/varint.d.ts.map +1 -1
  64. package/types/deps/jsr.io/@std/fmt/{1.0.2 → 1.0.4}/colors.d.ts.map +1 -1
  65. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_create_walk_entry.d.ts.map +1 -1
  66. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_get_file_info_type.d.ts.map +1 -1
  67. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_same_path.d.ts.map +1 -1
  68. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_subdir.d.ts.map +1 -1
  69. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_to_path_string.d.ts.map +1 -1
  70. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/copy.d.ts +6 -6
  71. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/copy.d.ts.map +1 -1
  72. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/empty_dir.d.ts +2 -2
  73. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/empty_dir.d.ts.map +1 -1
  74. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_dir.d.ts +2 -2
  75. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_dir.d.ts.map +1 -1
  76. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_file.d.ts +2 -2
  77. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_file.d.ts.map +1 -1
  78. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_link.d.ts +2 -2
  79. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_link.d.ts.map +1 -1
  80. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_symlink.d.ts +26 -8
  81. package/types/deps/jsr.io/@std/fs/1.0.9/ensure_symlink.d.ts.map +1 -0
  82. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/eol.d.ts +3 -3
  83. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/eol.d.ts.map +1 -1
  84. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/exists.d.ts +36 -16
  85. package/types/deps/jsr.io/@std/fs/1.0.9/exists.d.ts.map +1 -0
  86. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/expand_glob.d.ts +7 -7
  87. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/expand_glob.d.ts.map +1 -1
  88. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/mod.d.ts +1 -1
  89. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/mod.d.ts.map +1 -1
  90. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/move.d.ts +4 -4
  91. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/move.d.ts.map +1 -1
  92. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/walk.d.ts +20 -20
  93. package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/walk.d.ts.map +1 -1
  94. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.224.9}/types.d.ts.map +1 -1
  95. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/_constants.d.ts.map +1 -1
  96. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/copy.d.ts +1 -1
  97. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/copy.d.ts.map +1 -1
  98. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/read_all.d.ts +2 -2
  99. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/read_all.d.ts.map +1 -1
  100. package/types/deps/jsr.io/@std/io/0.225.0/types.d.ts +146 -0
  101. package/types/deps/jsr.io/@std/io/0.225.0/types.d.ts.map +1 -0
  102. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/write_all.d.ts +2 -2
  103. package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/write_all.d.ts.map +1 -1
  104. package/types/deps/jsr.io/@std/log/0.224.13/_config.d.ts.map +1 -0
  105. package/types/deps/jsr.io/@std/log/0.224.13/_file_handler_symbols.d.ts.map +1 -0
  106. package/types/deps/jsr.io/@std/log/0.224.13/_state.d.ts.map +1 -0
  107. package/types/deps/jsr.io/@std/log/0.224.13/base_handler.d.ts +326 -0
  108. package/types/deps/jsr.io/@std/log/0.224.13/base_handler.d.ts.map +1 -0
  109. package/types/deps/jsr.io/@std/log/0.224.13/console_handler.d.ts +76 -0
  110. package/types/deps/jsr.io/@std/log/0.224.13/console_handler.d.ts.map +1 -0
  111. package/types/deps/jsr.io/@std/log/0.224.13/critical.d.ts +53 -0
  112. package/types/deps/jsr.io/@std/log/0.224.13/critical.d.ts.map +1 -0
  113. package/types/deps/jsr.io/@std/log/0.224.13/debug.d.ts +105 -0
  114. package/types/deps/jsr.io/@std/log/0.224.13/debug.d.ts.map +1 -0
  115. package/types/deps/jsr.io/@std/log/0.224.13/error.d.ts +53 -0
  116. package/types/deps/jsr.io/@std/log/0.224.13/error.d.ts.map +1 -0
  117. package/types/deps/jsr.io/@std/log/0.224.13/file_handler.d.ts +200 -0
  118. package/types/deps/jsr.io/@std/log/0.224.13/file_handler.d.ts.map +1 -0
  119. package/types/deps/jsr.io/@std/log/0.224.13/formatters.d.ts +34 -0
  120. package/types/deps/jsr.io/@std/log/0.224.13/formatters.d.ts.map +1 -0
  121. package/types/deps/jsr.io/@std/log/0.224.13/get_logger.d.ts +59 -0
  122. package/types/deps/jsr.io/@std/log/0.224.13/get_logger.d.ts.map +1 -0
  123. package/types/deps/jsr.io/@std/log/0.224.13/info.d.ts +53 -0
  124. package/types/deps/jsr.io/@std/log/0.224.13/info.d.ts.map +1 -0
  125. package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/levels.d.ts +2 -0
  126. package/types/deps/jsr.io/@std/log/0.224.13/levels.d.ts.map +1 -0
  127. package/types/deps/jsr.io/@std/log/0.224.13/logger.d.ts +622 -0
  128. package/types/deps/jsr.io/@std/log/0.224.13/logger.d.ts.map +1 -0
  129. package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/mod.d.ts +5 -5
  130. package/types/deps/jsr.io/@std/log/0.224.13/mod.d.ts.map +1 -0
  131. package/types/deps/jsr.io/@std/log/0.224.13/rotating_file_handler.d.ts.map +1 -0
  132. package/types/deps/jsr.io/@std/log/0.224.13/setup.d.ts.map +1 -0
  133. package/types/deps/jsr.io/@std/log/0.224.13/warn.d.ts +53 -0
  134. package/types/deps/jsr.io/@std/log/0.224.13/warn.d.ts.map +1 -0
  135. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/assert_path.d.ts.map +1 -1
  136. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/basename.d.ts.map +1 -1
  137. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/common.d.ts.map +1 -1
  138. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/constants.d.ts.map +1 -1
  139. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/dirname.d.ts.map +1 -1
  140. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/format.d.ts.map +1 -1
  141. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/from_file_url.d.ts.map +1 -1
  142. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/glob_to_reg_exp.d.ts.map +1 -1
  143. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize.d.ts.map +1 -1
  144. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize_string.d.ts.map +1 -1
  145. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/relative.d.ts.map +1 -1
  146. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/strip_trailing_separators.d.ts.map +1 -1
  147. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/to_file_url.d.ts.map +1 -1
  148. package/types/deps/jsr.io/@std/path/1.0.8/_os.d.ts.map +1 -0
  149. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/basename.d.ts.map +1 -1
  150. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/common.d.ts.map +1 -1
  151. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/constants.d.ts.map +1 -1
  152. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/dirname.d.ts.map +1 -1
  153. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/extname.d.ts.map +1 -1
  154. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/format.d.ts.map +1 -1
  155. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/from_file_url.d.ts.map +1 -1
  156. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/glob_to_regexp.d.ts.map +1 -1
  157. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_absolute.d.ts.map +1 -1
  158. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_glob.d.ts.map +1 -1
  159. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join.d.ts.map +1 -1
  160. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join_globs.d.ts.map +1 -1
  161. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/mod.d.ts.map +1 -1
  162. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize.d.ts.map +1 -1
  163. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize_glob.d.ts.map +1 -1
  164. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/parse.d.ts.map +1 -1
  165. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/_util.d.ts.map +1 -1
  166. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/basename.d.ts +17 -0
  167. package/types/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts.map +1 -0
  168. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/constants.d.ts.map +1 -1
  169. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/dirname.d.ts +12 -0
  170. package/types/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts.map +1 -0
  171. package/types/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts +37 -0
  172. package/types/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts.map +1 -0
  173. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/format.d.ts.map +1 -1
  174. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/from_file_url.d.ts.map +1 -1
  175. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/glob_to_regexp.d.ts.map +1 -1
  176. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/is_absolute.d.ts.map +1 -1
  177. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join.d.ts +13 -0
  178. package/types/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts.map +1 -0
  179. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join_globs.d.ts +1 -1
  180. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join_globs.d.ts.map +1 -1
  181. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize.d.ts +18 -0
  182. package/types/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts.map +1 -0
  183. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize_glob.d.ts +1 -1
  184. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize_glob.d.ts.map +1 -1
  185. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/parse.d.ts.map +1 -1
  186. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/relative.d.ts.map +1 -1
  187. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/resolve.d.ts.map +1 -1
  188. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_file_url.d.ts.map +1 -1
  189. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_namespaced_path.d.ts.map +1 -1
  190. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/relative.d.ts.map +1 -1
  191. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/resolve.d.ts.map +1 -1
  192. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_file_url.d.ts.map +1 -1
  193. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_namespaced_path.d.ts.map +1 -1
  194. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/types.d.ts.map +1 -1
  195. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/_util.d.ts.map +1 -1
  196. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/basename.d.ts.map +1 -1
  197. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/constants.d.ts.map +1 -1
  198. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/dirname.d.ts.map +1 -1
  199. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/extname.d.ts.map +1 -1
  200. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/format.d.ts.map +1 -1
  201. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/from_file_url.d.ts.map +1 -1
  202. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/glob_to_regexp.d.ts.map +1 -1
  203. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/is_absolute.d.ts.map +1 -1
  204. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join.d.ts.map +1 -1
  205. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join_globs.d.ts +1 -1
  206. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join_globs.d.ts.map +1 -1
  207. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize.d.ts.map +1 -1
  208. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize_glob.d.ts +1 -1
  209. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize_glob.d.ts.map +1 -1
  210. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/parse.d.ts.map +1 -1
  211. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/relative.d.ts.map +1 -1
  212. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/resolve.d.ts.map +1 -1
  213. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_file_url.d.ts.map +1 -1
  214. package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_namespaced_path.d.ts.map +1 -1
  215. package/types/deps/jsr.io/@windmill-labs/cliffy-ansi/1.0.0-rc.5/cursor_position.d.ts +1 -1
  216. package/types/deps/jsr.io/@windmill-labs/cliffy-ansi/1.0.0-rc.5/tty.d.ts +1 -1
  217. package/types/deps/jsr.io/@windmill-labs/cliffy-prompt/1.0.0-rc.6/_generic_prompt.d.ts +1 -1
  218. package/types/deps.d.ts +8 -8
  219. package/types/deps.d.ts.map +1 -1
  220. package/types/main.d.ts +1 -1
  221. package/esm/deps/jsr.io/@std/log/0.224.7/base_handler.js +0 -60
  222. package/esm/deps/jsr.io/@std/log/0.224.7/console_handler.js +0 -58
  223. package/esm/deps/jsr.io/@std/log/0.224.7/formatters.js +0 -19
  224. package/esm/deps/jsr.io/@std/log/0.224.7/get_logger.js +0 -21
  225. package/esm/deps/jsr.io/@std/log/0.224.7/logger.js +0 -179
  226. package/types/deps/jsr.io/@std/fs/1.0.3/ensure_symlink.d.ts.map +0 -1
  227. package/types/deps/jsr.io/@std/fs/1.0.3/exists.d.ts.map +0 -1
  228. package/types/deps/jsr.io/@std/log/0.224.7/_config.d.ts.map +0 -1
  229. package/types/deps/jsr.io/@std/log/0.224.7/_file_handler_symbols.d.ts.map +0 -1
  230. package/types/deps/jsr.io/@std/log/0.224.7/_state.d.ts.map +0 -1
  231. package/types/deps/jsr.io/@std/log/0.224.7/base_handler.d.ts +0 -22
  232. package/types/deps/jsr.io/@std/log/0.224.7/base_handler.d.ts.map +0 -1
  233. package/types/deps/jsr.io/@std/log/0.224.7/console_handler.d.ts +0 -18
  234. package/types/deps/jsr.io/@std/log/0.224.7/console_handler.d.ts.map +0 -1
  235. package/types/deps/jsr.io/@std/log/0.224.7/critical.d.ts +0 -5
  236. package/types/deps/jsr.io/@std/log/0.224.7/critical.d.ts.map +0 -1
  237. package/types/deps/jsr.io/@std/log/0.224.7/debug.d.ts +0 -5
  238. package/types/deps/jsr.io/@std/log/0.224.7/debug.d.ts.map +0 -1
  239. package/types/deps/jsr.io/@std/log/0.224.7/error.d.ts +0 -5
  240. package/types/deps/jsr.io/@std/log/0.224.7/error.d.ts.map +0 -1
  241. package/types/deps/jsr.io/@std/log/0.224.7/file_handler.d.ts +0 -54
  242. package/types/deps/jsr.io/@std/log/0.224.7/file_handler.d.ts.map +0 -1
  243. package/types/deps/jsr.io/@std/log/0.224.7/formatters.d.ts +0 -6
  244. package/types/deps/jsr.io/@std/log/0.224.7/formatters.d.ts.map +0 -1
  245. package/types/deps/jsr.io/@std/log/0.224.7/get_logger.d.ts +0 -4
  246. package/types/deps/jsr.io/@std/log/0.224.7/get_logger.d.ts.map +0 -1
  247. package/types/deps/jsr.io/@std/log/0.224.7/info.d.ts +0 -5
  248. package/types/deps/jsr.io/@std/log/0.224.7/info.d.ts.map +0 -1
  249. package/types/deps/jsr.io/@std/log/0.224.7/levels.d.ts.map +0 -1
  250. package/types/deps/jsr.io/@std/log/0.224.7/logger.d.ts +0 -62
  251. package/types/deps/jsr.io/@std/log/0.224.7/logger.d.ts.map +0 -1
  252. package/types/deps/jsr.io/@std/log/0.224.7/mod.d.ts.map +0 -1
  253. package/types/deps/jsr.io/@std/log/0.224.7/rotating_file_handler.d.ts.map +0 -1
  254. package/types/deps/jsr.io/@std/log/0.224.7/setup.d.ts.map +0 -1
  255. package/types/deps/jsr.io/@std/log/0.224.7/warn.d.ts +0 -5
  256. package/types/deps/jsr.io/@std/log/0.224.7/warn.d.ts.map +0 -1
  257. package/types/deps/jsr.io/@std/path/1.0.6/_os.d.ts.map +0 -1
  258. package/types/deps/jsr.io/@std/path/1.0.6/posix/basename.d.ts.map +0 -1
  259. package/types/deps/jsr.io/@std/path/1.0.6/posix/dirname.d.ts.map +0 -1
  260. package/types/deps/jsr.io/@std/path/1.0.6/posix/extname.d.ts +0 -21
  261. package/types/deps/jsr.io/@std/path/1.0.6/posix/extname.d.ts.map +0 -1
  262. package/types/deps/jsr.io/@std/path/1.0.6/posix/join.d.ts.map +0 -1
  263. package/types/deps/jsr.io/@std/path/1.0.6/posix/normalize.d.ts.map +0 -1
  264. /package/esm/deps/jsr.io/@std/bytes/{1.0.2 → 1.0.4}/concat.js +0 -0
  265. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_base32_common.js +0 -0
  266. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_validate_binary_like.js +0 -0
  267. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/ascii85.js +0 -0
  268. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base32.js +0 -0
  269. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base58.js +0 -0
  270. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64.js +0 -0
  271. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64url.js +0 -0
  272. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/hex.js +0 -0
  273. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/mod.js +0 -0
  274. /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/varint.js +0 -0
  275. /package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_get_file_info_type.js +0 -0
  276. /package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.224.9}/types.js +0 -0
  277. /package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/_constants.js +0 -0
  278. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/assert_path.js +0 -0
  279. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/basename.js +0 -0
  280. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/common.js +0 -0
  281. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/constants.js +0 -0
  282. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/dirname.js +0 -0
  283. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/format.js +0 -0
  284. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/from_file_url.js +0 -0
  285. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/glob_to_reg_exp.js +0 -0
  286. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize.js +0 -0
  287. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize_string.js +0 -0
  288. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/relative.js +0 -0
  289. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/strip_trailing_separators.js +0 -0
  290. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/to_file_url.js +0 -0
  291. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_os.js +0 -0
  292. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/basename.js +0 -0
  293. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/common.js +0 -0
  294. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/constants.js +0 -0
  295. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/dirname.js +0 -0
  296. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/extname.js +0 -0
  297. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/format.js +0 -0
  298. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/from_file_url.js +0 -0
  299. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/glob_to_regexp.js +0 -0
  300. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_absolute.js +0 -0
  301. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_glob.js +0 -0
  302. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join.js +0 -0
  303. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join_globs.js +0 -0
  304. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/mod.js +0 -0
  305. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize.js +0 -0
  306. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize_glob.js +0 -0
  307. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/parse.js +0 -0
  308. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/_util.js +0 -0
  309. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/constants.js +0 -0
  310. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/format.js +0 -0
  311. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/from_file_url.js +0 -0
  312. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/glob_to_regexp.js +0 -0
  313. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/is_absolute.js +0 -0
  314. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/parse.js +0 -0
  315. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/relative.js +0 -0
  316. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/resolve.js +0 -0
  317. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_file_url.js +0 -0
  318. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_namespaced_path.js +0 -0
  319. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/relative.js +0 -0
  320. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/resolve.js +0 -0
  321. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_file_url.js +0 -0
  322. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_namespaced_path.js +0 -0
  323. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/types.js +0 -0
  324. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/_util.js +0 -0
  325. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/basename.js +0 -0
  326. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/constants.js +0 -0
  327. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/dirname.js +0 -0
  328. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/extname.js +0 -0
  329. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/format.js +0 -0
  330. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/from_file_url.js +0 -0
  331. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/glob_to_regexp.js +0 -0
  332. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/is_absolute.js +0 -0
  333. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join.js +0 -0
  334. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize.js +0 -0
  335. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/parse.js +0 -0
  336. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/relative.js +0 -0
  337. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/resolve.js +0 -0
  338. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_file_url.js +0 -0
  339. /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_namespaced_path.js +0 -0
  340. /package/types/deps/jsr.io/@std/bytes/{1.0.2 → 1.0.4}/concat.d.ts +0 -0
  341. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_base32_common.d.ts +0 -0
  342. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_validate_binary_like.d.ts +0 -0
  343. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/ascii85.d.ts +0 -0
  344. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base32.d.ts +0 -0
  345. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base58.d.ts +0 -0
  346. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64.d.ts +0 -0
  347. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64url.d.ts +0 -0
  348. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/hex.d.ts +0 -0
  349. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/mod.d.ts +0 -0
  350. /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/varint.d.ts +0 -0
  351. /package/types/deps/jsr.io/@std/fmt/{1.0.2 → 1.0.4}/colors.d.ts +0 -0
  352. /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_create_walk_entry.d.ts +0 -0
  353. /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_get_file_info_type.d.ts +0 -0
  354. /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_same_path.d.ts +0 -0
  355. /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_subdir.d.ts +0 -0
  356. /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_to_path_string.d.ts +0 -0
  357. /package/types/deps/jsr.io/@std/io/{0.224.8 → 0.224.9}/types.d.ts +0 -0
  358. /package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/_constants.d.ts +0 -0
  359. /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_config.d.ts +0 -0
  360. /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_file_handler_symbols.d.ts +0 -0
  361. /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_state.d.ts +0 -0
  362. /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/rotating_file_handler.d.ts +0 -0
  363. /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/setup.d.ts +0 -0
  364. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/assert_path.d.ts +0 -0
  365. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/basename.d.ts +0 -0
  366. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/common.d.ts +0 -0
  367. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/constants.d.ts +0 -0
  368. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/dirname.d.ts +0 -0
  369. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/format.d.ts +0 -0
  370. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/from_file_url.d.ts +0 -0
  371. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/glob_to_reg_exp.d.ts +0 -0
  372. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize.d.ts +0 -0
  373. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize_string.d.ts +0 -0
  374. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/relative.d.ts +0 -0
  375. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/strip_trailing_separators.d.ts +0 -0
  376. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/to_file_url.d.ts +0 -0
  377. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_os.d.ts +0 -0
  378. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/basename.d.ts +0 -0
  379. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/common.d.ts +0 -0
  380. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/constants.d.ts +0 -0
  381. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/dirname.d.ts +0 -0
  382. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/extname.d.ts +0 -0
  383. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/format.d.ts +0 -0
  384. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/from_file_url.d.ts +0 -0
  385. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/glob_to_regexp.d.ts +0 -0
  386. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_absolute.d.ts +0 -0
  387. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_glob.d.ts +0 -0
  388. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join.d.ts +0 -0
  389. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join_globs.d.ts +0 -0
  390. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/mod.d.ts +0 -0
  391. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize.d.ts +0 -0
  392. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize_glob.d.ts +0 -0
  393. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/parse.d.ts +0 -0
  394. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/_util.d.ts +0 -0
  395. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/constants.d.ts +0 -0
  396. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/format.d.ts +0 -0
  397. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/from_file_url.d.ts +0 -0
  398. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/glob_to_regexp.d.ts +0 -0
  399. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/is_absolute.d.ts +0 -0
  400. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/parse.d.ts +0 -0
  401. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/relative.d.ts +0 -0
  402. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/resolve.d.ts +0 -0
  403. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_file_url.d.ts +0 -0
  404. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_namespaced_path.d.ts +0 -0
  405. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/relative.d.ts +0 -0
  406. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/resolve.d.ts +0 -0
  407. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_file_url.d.ts +0 -0
  408. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_namespaced_path.d.ts +0 -0
  409. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/types.d.ts +0 -0
  410. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/_util.d.ts +0 -0
  411. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/basename.d.ts +0 -0
  412. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/constants.d.ts +0 -0
  413. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/dirname.d.ts +0 -0
  414. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/extname.d.ts +0 -0
  415. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/format.d.ts +0 -0
  416. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/from_file_url.d.ts +0 -0
  417. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/glob_to_regexp.d.ts +0 -0
  418. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/is_absolute.d.ts +0 -0
  419. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join.d.ts +0 -0
  420. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize.d.ts +0 -0
  421. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/parse.d.ts +0 -0
  422. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/relative.d.ts +0 -0
  423. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/resolve.d.ts +0 -0
  424. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_file_url.d.ts +0 -0
  425. /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_namespaced_path.d.ts +0 -0
@@ -0,0 +1,112 @@
1
+ var __classPrivateFieldSet = (this && this.__classPrivateFieldSet) || function (receiver, state, value, kind, f) {
2
+ if (kind === "m") throw new TypeError("Private method is not writable");
3
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a setter");
4
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot write private member to an object whose class did not declare it");
5
+ return (kind === "a" ? f.call(receiver, value) : f ? f.value = value : state.set(receiver, value)), value;
6
+ };
7
+ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (receiver, state, kind, f) {
8
+ if (kind === "a" && !f) throw new TypeError("Private accessor was defined without a getter");
9
+ if (typeof state === "function" ? receiver !== state || !f : !state.has(receiver)) throw new TypeError("Cannot read private member from an object whose class did not declare it");
10
+ return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
11
+ };
12
+ var _ConsoleHandler_useColors;
13
+ // Copyright 2018-2025 the Deno authors. MIT license.
14
+ // This module is browser compatible.
15
+ import { LogLevels } from "./levels.js";
16
+ import { blue, bold, red, yellow } from "../../fmt/1.0.4/colors.js";
17
+ import { BaseHandler } from "./base_handler.js";
18
+ function applyColors(msg, level) {
19
+ switch (level) {
20
+ case LogLevels.INFO:
21
+ msg = blue(msg);
22
+ break;
23
+ case LogLevels.WARN:
24
+ msg = yellow(msg);
25
+ break;
26
+ case LogLevels.ERROR:
27
+ msg = red(msg);
28
+ break;
29
+ case LogLevels.CRITICAL:
30
+ msg = bold(red(msg));
31
+ break;
32
+ default:
33
+ break;
34
+ }
35
+ return msg;
36
+ }
37
+ /**
38
+ * Default logger that outputs log messages to the console via
39
+ * {@linkcode console.log}.
40
+ *
41
+ * @example Usage
42
+ * ```ts no-assert
43
+ * import { ConsoleHandler } from "@std/log/console-handler";
44
+ *
45
+ * const handler = new ConsoleHandler("INFO");
46
+ * handler.log("Hello, world!"); // Prints "Hello, world!"
47
+ * ```
48
+ */
49
+ export class ConsoleHandler extends BaseHandler {
50
+ /**
51
+ * Constructs a new instance.
52
+ *
53
+ * @param levelName The level name to log messages at.
54
+ * @param options Options for the handler.
55
+ */
56
+ constructor(levelName, options = {}) {
57
+ super(levelName, options);
58
+ _ConsoleHandler_useColors.set(this, void 0);
59
+ __classPrivateFieldSet(this, _ConsoleHandler_useColors, options.useColors ?? true, "f");
60
+ }
61
+ /**
62
+ * Formats a log record into a string.
63
+ *
64
+ * @example Usage
65
+ * ```ts
66
+ * import { ConsoleHandler } from "@std/log/console-handler";
67
+ * import { LogRecord } from "@std/log/logger";
68
+ * import { LogLevels } from "@std/log/levels";
69
+ * import { assertEquals } from "@std/assert/equals";
70
+ * import { blue } from "@std/fmt/colors";
71
+ *
72
+ * const handler = new ConsoleHandler("INFO");
73
+ * const logRecord = new LogRecord({
74
+ * msg: "Hello, world!",
75
+ * args: ["foo", "bar"],
76
+ * level: LogLevels.INFO,
77
+ * loggerName: "my-logger",
78
+ * });
79
+ * const result = handler.format(logRecord);
80
+ *
81
+ * assertEquals(result, blue("INFO Hello, world!"));
82
+ * ```
83
+ *
84
+ * @param logRecord The log record to format.
85
+ * @returns The formatted log record.
86
+ */
87
+ format(logRecord) {
88
+ let msg = super.format(logRecord);
89
+ if (__classPrivateFieldGet(this, _ConsoleHandler_useColors, "f")) {
90
+ msg = applyColors(msg, logRecord.level);
91
+ }
92
+ return msg;
93
+ }
94
+ /**
95
+ * Logs a message to the console.
96
+ *
97
+ * @example Usage
98
+ * ```ts no-assert
99
+ * import { ConsoleHandler } from "@std/log/console-handler";
100
+ *
101
+ * const handler = new ConsoleHandler("INFO");
102
+ * handler.log("Hello, world!"); // Prints "Hello, world!"
103
+ * ```
104
+ *
105
+ * @param msg The message to log.
106
+ */
107
+ log(msg) {
108
+ // deno-lint-ignore no-console
109
+ console.log(msg);
110
+ }
111
+ }
112
+ _ConsoleHandler_useColors = new WeakMap();
@@ -1,6 +1,7 @@
1
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1
+ // Copyright 2018-2025 the Deno authors. MIT license.
2
2
  // This module is browser compatible.
3
3
  import { getLogger } from "./get_logger.js";
4
+ import "./setup.js";
4
5
  export function critical(msg, ...args) {
5
6
  // Assist TS compiler with pass-through generic type
6
7
  if (msg instanceof Function) {
@@ -1,6 +1,7 @@
1
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1
+ // Copyright 2018-2025 the Deno authors. MIT license.
2
2
  // This module is browser compatible.
3
3
  import { getLogger } from "./get_logger.js";
4
+ import "./setup.js";
4
5
  export function debug(msg, ...args) {
5
6
  // Assist TS compiler with pass-through generic type
6
7
  if (msg instanceof Function) {
@@ -1,6 +1,7 @@
1
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1
+ // Copyright 2018-2025 the Deno authors. MIT license.
2
2
  // This module is browser compatible.
3
3
  import { getLogger } from "./get_logger.js";
4
+ import "./setup.js";
4
5
  export function error(msg, ...args) {
5
6
  // Assist TS compiler with pass-through generic type
6
7
  if (msg instanceof Function) {
@@ -4,70 +4,110 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
4
4
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
5
5
  };
6
6
  var _FileHandler_instances, _FileHandler_unloadCallback, _FileHandler_resetBuffer, _a, _b, _c, _d, _e, _f, _g;
7
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
7
+ // Copyright 2018-2025 the Deno authors. MIT license.
8
8
  import * as dntShim from "../../../../../_dnt.shims.js";
9
9
  import { LogLevels } from "./levels.js";
10
10
  import { BaseHandler } from "./base_handler.js";
11
- import { writeAllSync } from "../../io/0.224.8/write_all.js";
11
+ import { writeAllSync } from "../../io/0.225.0/write_all.js";
12
12
  import { bufSymbol, encoderSymbol, filenameSymbol, fileSymbol, modeSymbol, openOptionsSymbol, pointerSymbol, } from "./_file_handler_symbols.js";
13
13
  /**
14
- * This handler will output to a file using an optional mode (default is `a`,
15
- * e.g. append). The file will grow indefinitely. It uses a buffer for writing
16
- * to file. Logs can be manually flushed with `fileHandler.flush()`. Log
17
- * messages with a log level greater than error are immediately flushed. Logs
18
- * are also flushed on process completion.
14
+ * A file-based log handler that writes log messages to a specified file with buffering and optional modes.
15
+ * The logs are buffered for optimized performance, writing to the file only
16
+ * when the buffer is full, on manual .flush() call, during logging of a critical message or when process ends.
17
+ * It is important to note that the file can grow indefinitely.
19
18
  *
20
- * Behavior of the log modes is as follows:
19
+ * This handler requires `--allow-write` permission on the log file.
21
20
  *
22
- * - `'a'` - Default mode. Appends new log messages to the end of an existing log
23
- * file, or create a new log file if none exists.
24
- * - `'w'` - Upon creation of the handler, any existing log file will be removed
25
- * and a new one created.
26
- * - `'x'` - This will create a new log file and throw an error if one already
27
- * exists.
21
+ * @example Usage
22
+ * ```ts no-assert
23
+ * import { FileHandler } from "@std/log/file-handler";
28
24
  *
29
- * This handler requires `--allow-write` permission on the log file.
25
+ * const handler = new FileHandler("INFO", { filename: "./_tmp/logs.txt" });
26
+ * handler.setup();
27
+ * handler.log('Hello, world!'); // Buffers the message, or writes it to the file depending on buffer state
28
+ * handler.flush(); // Manually flushes the buffer
29
+ * handler.destroy(); // Closes the file and removes listeners
30
+ * ```
30
31
  */
31
32
  export class FileHandler extends BaseHandler {
33
+ /**
34
+ * Constructs a new FileHandler instance.
35
+ *
36
+ * @param levelName The level name to log messages at.
37
+ * @param options Options for the handler.
38
+ */
32
39
  constructor(levelName, options) {
33
40
  super(levelName, options);
34
41
  _FileHandler_instances.add(this);
42
+ /** Opened file to append logs to.
43
+ *
44
+ * @private
45
+ */
35
46
  Object.defineProperty(this, _a, {
36
47
  enumerable: true,
37
48
  configurable: true,
38
49
  writable: true,
39
50
  value: void 0
40
51
  });
52
+ /** Buffer used to write to file.
53
+ *
54
+ * @private
55
+ */
41
56
  Object.defineProperty(this, _b, {
42
57
  enumerable: true,
43
58
  configurable: true,
44
59
  writable: true,
45
60
  value: void 0
46
61
  });
62
+ /**
63
+ * Current position for pointer.
64
+ *
65
+ * @private
66
+ */
47
67
  Object.defineProperty(this, _c, {
48
68
  enumerable: true,
49
69
  configurable: true,
50
70
  writable: true,
51
71
  value: 0
52
72
  });
73
+ /**
74
+ * Filename associated with the file being logged.
75
+ *
76
+ * @private
77
+ */
53
78
  Object.defineProperty(this, _d, {
54
79
  enumerable: true,
55
80
  configurable: true,
56
81
  writable: true,
57
82
  value: void 0
58
83
  });
84
+ /**
85
+ * Current log mode.
86
+ *
87
+ * @private
88
+ */
59
89
  Object.defineProperty(this, _e, {
60
90
  enumerable: true,
61
91
  configurable: true,
62
92
  writable: true,
63
93
  value: void 0
64
94
  });
95
+ /**
96
+ * File open options.
97
+ *
98
+ * @private
99
+ */
65
100
  Object.defineProperty(this, _f, {
66
101
  enumerable: true,
67
102
  configurable: true,
68
103
  writable: true,
69
104
  value: void 0
70
105
  });
106
+ /**
107
+ * Text encoder.
108
+ *
109
+ * @private
110
+ */
71
111
  Object.defineProperty(this, _g, {
72
112
  enumerable: true,
73
113
  configurable: true,
@@ -89,11 +129,52 @@ export class FileHandler extends BaseHandler {
89
129
  };
90
130
  this[bufSymbol] = new Uint8Array(options.bufferSize ?? 4096);
91
131
  }
132
+ /**
133
+ * Sets up the file handler by opening the specified file and initializing resources.
134
+ *
135
+ * @example Usage
136
+ * ```ts no-assert
137
+ * import { FileHandler } from "@std/log/file-handler";
138
+ *
139
+ * const handler = new FileHandler("INFO", { filename: "./_tmp/logs.txt" });
140
+ * handler.setup(); // Opens the file and prepares the handler for logging.
141
+ * handler.destroy();
142
+ * ```
143
+ */
92
144
  setup() {
93
145
  this[fileSymbol] = dntShim.Deno.openSync(this[filenameSymbol], this[openOptionsSymbol]);
94
146
  __classPrivateFieldGet(this, _FileHandler_instances, "m", _FileHandler_resetBuffer).call(this);
95
147
  addEventListener("unload", __classPrivateFieldGet(this, _FileHandler_unloadCallback, "f"));
96
148
  }
149
+ /**
150
+ * Handles a log record and flushes the buffer if the log level is higher than error.
151
+ *
152
+ * @param logRecord Log record to handle.
153
+ *
154
+ * @example Usage
155
+ * ```ts
156
+ * import { FileHandler } from "@std/log/file-handler";
157
+ * import { assertInstanceOf } from "@std/assert/instance-of";
158
+ * import { LogLevels } from "./levels.ts";
159
+ * import { LogRecord } from "./logger.ts";
160
+ *
161
+ * const handler = new FileHandler("INFO", { filename: "./_tmp/logs.txt" });
162
+ * handler.setup();
163
+ *
164
+ * // Flushes the buffer immediately and logs "CRITICAL This log is very critical indeed." into the file.
165
+ * handler.handle(
166
+ * new LogRecord({
167
+ * msg: "This log is very critical indeed.",
168
+ * args: [],
169
+ * level: LogLevels.CRITICAL,
170
+ * loggerName: "INFO",
171
+ * }),
172
+ * );
173
+ * handler.destroy();
174
+ *
175
+ * assertInstanceOf(handler, FileHandler);
176
+ * ```
177
+ */
97
178
  handle(logRecord) {
98
179
  super.handle(logRecord);
99
180
  // Immediately flush if log level is higher than ERROR
@@ -101,6 +182,25 @@ export class FileHandler extends BaseHandler {
101
182
  this.flush();
102
183
  }
103
184
  }
185
+ /**
186
+ * Logs a message by adding it to the buffer, with flushing as needed.
187
+ *
188
+ * @param msg The message to log.
189
+ *
190
+ * @example Usage
191
+ * ```ts
192
+ * import { FileHandler } from "@std/log/file-handler";
193
+ * import { assertInstanceOf } from "@std/assert/instance-of";
194
+ *
195
+ * const handler = new FileHandler("INFO", { filename: "./_tmp/logs.txt" });
196
+ * handler.setup();
197
+ * handler.log('Hello, world!');
198
+ * handler.flush();
199
+ * handler.destroy();
200
+ *
201
+ * assertInstanceOf(handler, FileHandler);
202
+ * ```
203
+ */
104
204
  log(msg) {
105
205
  const bytes = this[encoderSymbol].encode(msg + "\n");
106
206
  if (bytes.byteLength > this[bufSymbol].byteLength - this[pointerSymbol]) {
@@ -114,6 +214,23 @@ export class FileHandler extends BaseHandler {
114
214
  this[pointerSymbol] += bytes.byteLength;
115
215
  }
116
216
  }
217
+ /**
218
+ * Immediately writes the contents of the buffer to the previously opened file.
219
+ *
220
+ * @example Usage
221
+ * ```ts
222
+ * import { FileHandler } from "@std/log/file-handler";
223
+ * import { assertInstanceOf } from "@std/assert/instance-of";
224
+ *
225
+ * const handler = new FileHandler("INFO", { filename: "./_tmp/logs.txt" });
226
+ * handler.setup();
227
+ * handler.log('Hello, world!');
228
+ * handler.flush(); // Writes buffered log messages to the file immediately.
229
+ * handler.destroy();
230
+ *
231
+ * assertInstanceOf(handler, FileHandler);
232
+ * ```
233
+ */
117
234
  flush() {
118
235
  if (this[pointerSymbol] > 0 && this[fileSymbol]) {
119
236
  let written = 0;
@@ -123,6 +240,21 @@ export class FileHandler extends BaseHandler {
123
240
  __classPrivateFieldGet(this, _FileHandler_instances, "m", _FileHandler_resetBuffer).call(this);
124
241
  }
125
242
  }
243
+ /**
244
+ * Destroys the handler, performing any cleanup that is required and closes the file handler.
245
+ *
246
+ * @example Usage
247
+ * ```ts
248
+ * import { FileHandler } from "@std/log/file-handler";
249
+ * import { assertInstanceOf } from "@std/assert/instance-of";
250
+ *
251
+ * const handler = new FileHandler("INFO", { filename: "./_tmp/logs.txt" });
252
+ * handler.setup();
253
+ * handler.destroy();
254
+ *
255
+ * assertInstanceOf(handler, FileHandler);
256
+ * ```
257
+ */
126
258
  destroy() {
127
259
  this.flush();
128
260
  this[fileSymbol]?.close();
@@ -0,0 +1,45 @@
1
+ /**
2
+ * JSON log formatter.
3
+ *
4
+ * @example Usage
5
+ * ```ts
6
+ * import { LogRecord } from "@std/log/logger";
7
+ * import { jsonFormatter } from "@std/log/formatters";
8
+ * import { LogLevels } from "@std/log/levels";
9
+ * import { assertEquals } from "@std/assert/equals";
10
+ *
11
+ * const record = new LogRecord({
12
+ * msg: "Hello, world!",
13
+ * args: ["foo", "bar"],
14
+ * level: LogLevels.INFO,
15
+ * loggerName: "example",
16
+ * });
17
+ * const formatted = jsonFormatter(record);
18
+ *
19
+ * assertEquals(
20
+ * formatted,
21
+ * `{"level":"INFO","datetime":${record.datetime.getTime()},"message":"Hello, world!","args":["foo","bar"]}`,
22
+ * );
23
+ * ```
24
+ *
25
+ * @param logRecord Log record to format.
26
+ * @returns JSON string representation of the log record.
27
+ */
28
+ export function jsonFormatter(logRecord) {
29
+ return JSON.stringify({
30
+ level: logRecord.levelName,
31
+ datetime: logRecord.datetime.getTime(),
32
+ message: logRecord.msg,
33
+ args: flattenArgs(logRecord.args),
34
+ });
35
+ }
36
+ function flattenArgs(args) {
37
+ if (args.length === 1) {
38
+ return args[0];
39
+ }
40
+ else if (args.length > 1) {
41
+ return args;
42
+ }
43
+ }
44
+ /** Formatters for log records. */
45
+ export const formatters = { jsonFormatter };
@@ -0,0 +1,75 @@
1
+ // Copyright 2018-2025 the Deno authors. MIT license.
2
+ // This module is browser compatible.
3
+ import { Logger } from "./logger.js";
4
+ import { state } from "./_state.js";
5
+ /**
6
+ * Get a logger instance. If not specified `name`, get the default logger.
7
+ *
8
+ * @param name The name of the logger.
9
+ * @returns The logger instance.
10
+ *
11
+ * @example Usage (without defined name and minimal setup)
12
+ * ```ts
13
+ * import { getLogger } from "@std/log/get-logger";
14
+ * import "@std/log/setup";
15
+ * import { assertEquals } from "@std/assert/equals";
16
+ *
17
+ * const logger = getLogger();
18
+ * const result = logger.info("Hello world!"); // Prints "INFO Hello world!" in blue
19
+ *
20
+ * assertEquals(result, "Hello world!");
21
+ * ```
22
+ *
23
+ * @example Usage (without defined name and custom setup)
24
+ * ```ts
25
+ * import { getLogger } from "@std/log/get-logger";
26
+ * import { ConsoleHandler } from "@std/log/console-handler";
27
+ * import { setup } from "@std/log/setup";
28
+ * import { assertEquals } from "@std/assert/equals";
29
+ *
30
+ * setup({
31
+ * handlers: {
32
+ * console: new ConsoleHandler("DEBUG"),
33
+ * },
34
+ * loggers: {
35
+ * default: {
36
+ * level: "DEBUG",
37
+ * handlers: ["console"],
38
+ * },
39
+ * },
40
+ * });
41
+ *
42
+ * const logger = getLogger();
43
+ *
44
+ * const result = logger.info("Hello world!"); // Prints "INFO Hello world!" in blue
45
+ *
46
+ * assertEquals(result, "Hello world!");
47
+ * ```
48
+ *
49
+ * @example Usage (with defined name)
50
+ * ```ts
51
+ * import { getLogger } from "@std/log/get-logger";
52
+ * import { assertEquals } from "@std/assert/equals";
53
+ *
54
+ * const logger = getLogger("my-logger");
55
+ * const result = logger.info("Hello world!");
56
+ *
57
+ * assertEquals(result, "Hello world!");
58
+ * ```
59
+ */
60
+ export function getLogger(name) {
61
+ if (!name) {
62
+ const d = state.loggers.get("default");
63
+ if (d === undefined) {
64
+ throw new Error(`"default" logger must be set for getting logger without name`);
65
+ }
66
+ return d;
67
+ }
68
+ const result = state.loggers.get(name);
69
+ if (!result) {
70
+ const logger = new Logger(name, "NOTSET", { handlers: [] });
71
+ state.loggers.set(name, logger);
72
+ return logger;
73
+ }
74
+ return result;
75
+ }
@@ -1,6 +1,7 @@
1
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1
+ // Copyright 2018-2025 the Deno authors. MIT license.
2
2
  // This module is browser compatible.
3
3
  import { getLogger } from "./get_logger.js";
4
+ import "./setup.js";
4
5
  export function info(msg, ...args) {
5
6
  // Assist TS compiler with pass-through generic type
6
7
  if (msg instanceof Function) {
@@ -1,8 +1,10 @@
1
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1
+ // Copyright 2018-2025 the Deno authors. MIT license.
2
2
  // This module is browser compatible.
3
3
  /**
4
4
  * Use this to retrieve the numeric log level by it's associated name.
5
5
  * Defaults to INFO.
6
+ *
7
+ * @internal
6
8
  */
7
9
  export const LogLevels = {
8
10
  NOTSET: 0,