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,525 @@
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 _LogRecord_args, _LogRecord_datetime, _Logger_instances, _Logger_level, _Logger_loggerName, _Logger_log;
13
+ // Copyright 2018-2025 the Deno authors. MIT license.
14
+ // This module is browser compatible.
15
+ import { getLevelByName, getLevelName, LogLevels } from "./levels.js";
16
+ /**
17
+ * Configuration options for a logger instance.
18
+ *
19
+ * @example Usage
20
+ *
21
+ * ```ts
22
+ * import { ConsoleHandler, getLogger, setup, type LogConfig} from "@std/log";
23
+ * import { assert } from "@std/assert";
24
+ *
25
+ * const handler = new ConsoleHandler("INFO");
26
+ * const logConfig: LogConfig = {
27
+ * handlers: {
28
+ * default: handler,
29
+ * },
30
+ * loggers: {
31
+ * default: {
32
+ * level: "INFO",
33
+ * handlers: ["default"],
34
+ * },
35
+ * },
36
+ * }
37
+ * setup(logConfig);
38
+ * const logger = getLogger();
39
+ *
40
+ * assert(logger.handlers.at(0) instanceof ConsoleHandler);
41
+ * ```
42
+ */
43
+ export class LoggerConfig {
44
+ constructor() {
45
+ /** The minimum log level for the logger.
46
+ *
47
+ * @example Usage
48
+ *
49
+ * ```ts
50
+ * import { ConsoleHandler, getLogger, setup, type LogConfig} from "@std/log";
51
+ * import { assert } from "@std/assert";
52
+ *
53
+ * const handler = new ConsoleHandler("INFO");
54
+ * const logConfig: LogConfig = {
55
+ * handlers: {
56
+ * default: handler,
57
+ * },
58
+ * loggers: {
59
+ * default: {
60
+ * level: "INFO",
61
+ * handlers: ["default"],
62
+ * },
63
+ * },
64
+ * }
65
+ * setup(logConfig);
66
+ * const logger = getLogger();
67
+ *
68
+ * assert(logger.handlers.at(0) instanceof ConsoleHandler);
69
+ * ```
70
+ */
71
+ Object.defineProperty(this, "level", {
72
+ enumerable: true,
73
+ configurable: true,
74
+ writable: true,
75
+ value: void 0
76
+ });
77
+ /** A list of handler names attached to this logger.
78
+ *
79
+ * @example Usage
80
+ *
81
+ * ```ts
82
+ * import { ConsoleHandler, getLogger, setup, type LogConfig} from "@std/log";
83
+ * import { assert } from "@std/assert";
84
+ *
85
+ * const handler = new ConsoleHandler("INFO");
86
+ * const logConfig: LogConfig = {
87
+ * handlers: {
88
+ * default: handler,
89
+ * },
90
+ * loggers: {
91
+ * default: {
92
+ * level: "INFO",
93
+ * handlers: ["default"],
94
+ * },
95
+ * },
96
+ * }
97
+ * setup(logConfig);
98
+ * const logger = getLogger();
99
+ *
100
+ * assert(logger.handlers.at(0) instanceof ConsoleHandler);
101
+ * ``` */
102
+ Object.defineProperty(this, "handlers", {
103
+ enumerable: true,
104
+ configurable: true,
105
+ writable: true,
106
+ value: void 0
107
+ });
108
+ }
109
+ }
110
+ /**
111
+ * An object that encapsulates provided message and arguments as well some
112
+ * metadata that can be later used when formatting a message.
113
+ *
114
+ * @example Usage
115
+ * ```ts
116
+ * import { LogRecord } from "@std/log/logger";
117
+ * import { LogLevels } from "@std/log/levels";
118
+ * import { assertEquals } from "@std/assert/equals";
119
+ *
120
+ * const record = new LogRecord({
121
+ * msg: "Hello, world!",
122
+ * args: ["foo", "bar"],
123
+ * level: LogLevels.INFO,
124
+ * loggerName: "example",
125
+ * });
126
+ *
127
+ * assertEquals(record.msg, "Hello, world!");
128
+ * assertEquals(record.args, ["foo", "bar"]);
129
+ * assertEquals(record.level, LogLevels.INFO);
130
+ * assertEquals(record.loggerName, "example");
131
+ * ```
132
+ */
133
+ export class LogRecord {
134
+ /**
135
+ * Constructs a new instance.
136
+ *
137
+ * @param options The options to create a new log record.
138
+ *
139
+ * @example Usage
140
+ * ```ts
141
+ * import { LogRecord } from "@std/log/logger";
142
+ * import { LogLevels } from "@std/log/levels";
143
+ *
144
+ * const record = new LogRecord({
145
+ * msg: "Hello, world!",
146
+ * args: ["foo", "bar"],
147
+ * level: LogLevels.INFO,
148
+ * loggerName: "example",
149
+ * });
150
+ * ```
151
+ */
152
+ constructor(options) {
153
+ /** The message to log.
154
+ *
155
+ * @example Usage
156
+ * ```ts
157
+ * import { LogRecord } from "@std/log/logger";
158
+ * import { LogLevels } from "@std/log/levels";
159
+ * import { assertEquals } from "@std/assert/equals";
160
+ *
161
+ * const record = new LogRecord({
162
+ * msg: "Hello, world!",
163
+ * args: ["foo", "bar"],
164
+ * level: LogLevels.INFO,
165
+ * loggerName: "example",
166
+ * });
167
+ *
168
+ * assertEquals(record.msg, "Hello, world!");
169
+ * ```
170
+ */
171
+ Object.defineProperty(this, "msg", {
172
+ enumerable: true,
173
+ configurable: true,
174
+ writable: true,
175
+ value: void 0
176
+ });
177
+ _LogRecord_args.set(this, void 0);
178
+ _LogRecord_datetime.set(this, void 0);
179
+ /**
180
+ * The numeric log level of the log record.
181
+ *
182
+ * @example Usage
183
+ * ```ts
184
+ * import { LogRecord } from "@std/log/logger";
185
+ * import { LogLevels } from "@std/log/levels";
186
+ * import { assertEquals } from "@std/assert/equals";
187
+ *
188
+ * const record = new LogRecord({
189
+ * msg: "Hello, world!",
190
+ * args: ["foo", "bar"],
191
+ * level: LogLevels.INFO,
192
+ * loggerName: "example",
193
+ * });
194
+ *
195
+ * assertEquals(record.level, LogLevels.INFO);
196
+ * ```
197
+ */
198
+ Object.defineProperty(this, "level", {
199
+ enumerable: true,
200
+ configurable: true,
201
+ writable: true,
202
+ value: void 0
203
+ });
204
+ /**
205
+ * The name of the log level of the log record.
206
+ *
207
+ * @example Usage
208
+ * ```ts
209
+ * import { LogRecord } from "@std/log/logger";
210
+ * import { LogLevels } from "@std/log/levels";
211
+ * import { assertEquals } from "@std/assert/equals";
212
+ *
213
+ * const record = new LogRecord({
214
+ * msg: "Hello, world!",
215
+ * args: ["foo", "bar"],
216
+ * level: LogLevels.INFO,
217
+ * loggerName: "example",
218
+ * });
219
+ *
220
+ * assertEquals(record.levelName, "INFO");
221
+ * ```
222
+ */
223
+ Object.defineProperty(this, "levelName", {
224
+ enumerable: true,
225
+ configurable: true,
226
+ writable: true,
227
+ value: void 0
228
+ });
229
+ /**
230
+ * The name of the logger that created the log record.
231
+ *
232
+ * @example Usage
233
+ * ```ts
234
+ * import { LogRecord } from "@std/log/logger";
235
+ * import { LogLevels } from "@std/log/levels";
236
+ * import { assertEquals } from "@std/assert/equals";
237
+ *
238
+ * const record = new LogRecord({
239
+ * msg: "Hello, world!",
240
+ * args: ["foo", "bar"],
241
+ * level: LogLevels.INFO,
242
+ * loggerName: "example",
243
+ * });
244
+ *
245
+ * assertEquals(record.loggerName, "example");
246
+ * ```
247
+ */
248
+ Object.defineProperty(this, "loggerName", {
249
+ enumerable: true,
250
+ configurable: true,
251
+ writable: true,
252
+ value: void 0
253
+ });
254
+ this.msg = options.msg;
255
+ __classPrivateFieldSet(this, _LogRecord_args, [...options.args], "f");
256
+ this.level = options.level;
257
+ this.loggerName = options.loggerName;
258
+ __classPrivateFieldSet(this, _LogRecord_datetime, new Date(), "f");
259
+ this.levelName = getLevelName(options.level);
260
+ }
261
+ /**
262
+ * Getter for the arguments to log.
263
+ *
264
+ * @example Usage
265
+ * ```ts
266
+ * import { LogRecord } from "@std/log/logger";
267
+ * import { LogLevels } from "@std/log/levels";
268
+ * import { assertEquals } from "@std/assert/equals";
269
+ *
270
+ * const record = new LogRecord({
271
+ * msg: "Hello, world!",
272
+ * args: ["foo", "bar"],
273
+ * level: LogLevels.INFO,
274
+ * loggerName: "example",
275
+ * });
276
+ *
277
+ * assertEquals(record.args, ["foo", "bar"]);
278
+ * ```
279
+ *
280
+ * @returns A copy of the arguments to log.
281
+ */
282
+ get args() {
283
+ return [...__classPrivateFieldGet(this, _LogRecord_args, "f")];
284
+ }
285
+ /**
286
+ * Getter for the date and time the log record was created.
287
+ *
288
+ * @example Usage
289
+ * ```ts
290
+ * import { LogRecord } from "@std/log/logger";
291
+ * import { LogLevels } from "@std/log/levels";
292
+ * import { assertAlmostEquals } from "@std/assert/almost-equals";
293
+ *
294
+ * const record = new LogRecord({
295
+ * msg: "Hello, world!",
296
+ * args: ["foo", "bar"],
297
+ * level: LogLevels.INFO,
298
+ * loggerName: "example",
299
+ * });
300
+ *
301
+ * assertAlmostEquals(record.datetime.getTime(), Date.now(), 1);
302
+ * ```
303
+ *
304
+ * @returns The date and time the log record was created.
305
+ */
306
+ get datetime() {
307
+ return new Date(__classPrivateFieldGet(this, _LogRecord_datetime, "f").getTime());
308
+ }
309
+ }
310
+ _LogRecord_args = new WeakMap(), _LogRecord_datetime = new WeakMap();
311
+ function asString(data, isProperty = false) {
312
+ if (typeof data === "string") {
313
+ if (isProperty)
314
+ return `"${data}"`;
315
+ return data;
316
+ }
317
+ else if (data === null ||
318
+ typeof data === "number" ||
319
+ typeof data === "bigint" ||
320
+ typeof data === "boolean" ||
321
+ typeof data === "undefined" ||
322
+ typeof data === "symbol") {
323
+ return String(data);
324
+ }
325
+ else if (data instanceof Error) {
326
+ return data.stack;
327
+ }
328
+ else if (typeof data === "object") {
329
+ return `{${Object.entries(data)
330
+ .map(([k, v]) => `"${k}":${asString(v, true)}`)
331
+ .join(",")}}`;
332
+ }
333
+ return "undefined";
334
+ }
335
+ /**
336
+ * A logger that can log messages at different levels.
337
+ *
338
+ * @example Usage
339
+ * ```ts
340
+ * import { Logger } from "@std/log/logger";
341
+ * import { assertEquals } from "@std/assert/equals";
342
+ *
343
+ * const logger = new Logger("example", "INFO");
344
+ * const result = logger.info("Hello, world!");
345
+ *
346
+ * assertEquals(result, "Hello, world!");
347
+ * ```
348
+ */
349
+ export class Logger {
350
+ /**
351
+ * Constructs a new instance.
352
+ *
353
+ * @param loggerName The name of the logger.
354
+ * @param levelName The name of the log level.
355
+ * @param options The options to create a new logger.
356
+ */
357
+ constructor(loggerName, levelName, options = {}) {
358
+ _Logger_instances.add(this);
359
+ _Logger_level.set(this, void 0);
360
+ /**
361
+ * The handlers to use for the logger.
362
+ *
363
+ * @example Usage
364
+ * ```ts
365
+ * import { Logger } from "@std/log/logger";
366
+ * import { ConsoleHandler } from "@std/log/console-handler";
367
+ * import { assertEquals } from "@std/assert/equals";
368
+ *
369
+ * const handler = new ConsoleHandler("INFO");
370
+ * const logger = new Logger("example", "INFO", {
371
+ * handlers: [handler],
372
+ * });
373
+ *
374
+ * assertEquals(logger.handlers, [handler]);
375
+ * ```
376
+ */
377
+ Object.defineProperty(this, "handlers", {
378
+ enumerable: true,
379
+ configurable: true,
380
+ writable: true,
381
+ value: void 0
382
+ });
383
+ _Logger_loggerName.set(this, void 0);
384
+ __classPrivateFieldSet(this, _Logger_loggerName, loggerName, "f");
385
+ __classPrivateFieldSet(this, _Logger_level, getLevelByName(levelName), "f");
386
+ this.handlers = options.handlers ?? [];
387
+ }
388
+ /**
389
+ * Getter for the log level.
390
+ *
391
+ * @returns The log level.
392
+ *
393
+ * @example Usage
394
+ * ```ts
395
+ * import { Logger } from "@std/log/logger";
396
+ * import { LogLevels } from "@std/log/levels";
397
+ * import { assertEquals } from "@std/assert/equals";
398
+ *
399
+ * const logger = new Logger("example", "INFO");
400
+ * assertEquals(logger.level, LogLevels.INFO);
401
+ * ```
402
+ */
403
+ get level() {
404
+ return __classPrivateFieldGet(this, _Logger_level, "f");
405
+ }
406
+ /**
407
+ * Setter for the log level.
408
+ *
409
+ * @param level The log level to set.
410
+ *
411
+ * @example Usage
412
+ * ```ts
413
+ * import { Logger } from "@std/log/logger";
414
+ * import { LogLevels } from "@std/log/levels";
415
+ * import { assertEquals } from "@std/assert/equals";
416
+ *
417
+ * const logger = new Logger("example", "INFO");
418
+ * logger.level = LogLevels.DEBUG;
419
+ *
420
+ * assertEquals(logger.level, LogLevels.DEBUG);
421
+ * ```
422
+ */
423
+ set level(level) {
424
+ try {
425
+ __classPrivateFieldSet(this, _Logger_level, getLevelByName(getLevelName(level)), "f");
426
+ }
427
+ catch (_) {
428
+ throw new TypeError(`Invalid log level: ${level}`);
429
+ }
430
+ }
431
+ /**
432
+ * Getter for the name of the log level.
433
+ *
434
+ * @returns The name of the log level.
435
+ *
436
+ * @example Usage
437
+ * ```ts
438
+ * import { Logger } from "@std/log/logger";
439
+ * import { assertEquals } from "@std/assert/equals";
440
+ *
441
+ * const logger = new Logger("example", "INFO");
442
+ * assertEquals(logger.levelName, "INFO");
443
+ * ```
444
+ */
445
+ get levelName() {
446
+ return getLevelName(__classPrivateFieldGet(this, _Logger_level, "f"));
447
+ }
448
+ /**
449
+ * Setter for the name of the log level.
450
+ *
451
+ * @param levelName The name of the log level to set.
452
+ *
453
+ * @example Usage
454
+ * ```ts
455
+ * import { Logger } from "@std/log/logger";
456
+ * import { LogLevels } from "@std/log/levels";
457
+ * import { assertEquals } from "@std/assert/equals";
458
+ *
459
+ * const logger = new Logger("example", "INFO");
460
+ * logger.levelName = "DEBUG";
461
+ *
462
+ * assertEquals(logger.level, LogLevels.DEBUG);
463
+ * ```
464
+ */
465
+ set levelName(levelName) {
466
+ __classPrivateFieldSet(this, _Logger_level, getLevelByName(levelName), "f");
467
+ }
468
+ /**
469
+ * Getter for the name of the logger.
470
+ *
471
+ * @returns The name of the logger.
472
+ *
473
+ * @example Usage
474
+ * ```ts
475
+ * import { Logger } from "@std/log/logger";
476
+ * import { assertEquals } from "@std/assert/equals";
477
+ *
478
+ * const logger = new Logger("example", "INFO");
479
+ *
480
+ * assertEquals(logger.loggerName, "example");
481
+ * ```
482
+ */
483
+ get loggerName() {
484
+ return __classPrivateFieldGet(this, _Logger_loggerName, "f");
485
+ }
486
+ debug(msg, ...args) {
487
+ return __classPrivateFieldGet(this, _Logger_instances, "m", _Logger_log).call(this, LogLevels.DEBUG, msg, ...args);
488
+ }
489
+ info(msg, ...args) {
490
+ return __classPrivateFieldGet(this, _Logger_instances, "m", _Logger_log).call(this, LogLevels.INFO, msg, ...args);
491
+ }
492
+ warn(msg, ...args) {
493
+ return __classPrivateFieldGet(this, _Logger_instances, "m", _Logger_log).call(this, LogLevels.WARN, msg, ...args);
494
+ }
495
+ error(msg, ...args) {
496
+ return __classPrivateFieldGet(this, _Logger_instances, "m", _Logger_log).call(this, LogLevels.ERROR, msg, ...args);
497
+ }
498
+ critical(msg, ...args) {
499
+ return __classPrivateFieldGet(this, _Logger_instances, "m", _Logger_log).call(this, LogLevels.CRITICAL, msg, ...args);
500
+ }
501
+ }
502
+ _Logger_level = new WeakMap(), _Logger_loggerName = new WeakMap(), _Logger_instances = new WeakSet(), _Logger_log = function _Logger_log(level, msg, ...args) {
503
+ if (this.level > level) {
504
+ return msg instanceof Function ? undefined : msg;
505
+ }
506
+ let fnResult;
507
+ let logMessage;
508
+ if (msg instanceof Function) {
509
+ fnResult = msg();
510
+ logMessage = asString(fnResult);
511
+ }
512
+ else {
513
+ logMessage = asString(msg);
514
+ }
515
+ const record = new LogRecord({
516
+ msg: logMessage,
517
+ args: args,
518
+ level: level,
519
+ loggerName: this.loggerName,
520
+ });
521
+ this.handlers.forEach((handler) => {
522
+ handler.handle(record);
523
+ });
524
+ return msg instanceof Function ? fnResult : msg;
525
+ };
@@ -1,4 +1,4 @@
1
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
1
+ // Copyright 2018-2025 the Deno authors. MIT license.
2
2
  /**
3
3
  * Logging library with the support for terminal and file outputs. Also provides
4
4
  * interfaces for building custom loggers.
@@ -24,7 +24,7 @@
24
24
  * `log.formatters.jsonFormatter` or write your own function that takes a
25
25
  * {@linkcode LogRecord} and returns a JSON.stringify'd object.
26
26
  * If you want the log to go to stdout then use {@linkcode ConsoleHandler} with
27
- * the configuration `useColors: false` to turn off the ANSI terminal colours.
27
+ * the configuration `useColors: false` to turn off the ANSI terminal colors.
28
28
  *
29
29
  * ```ts
30
30
  * import * as log from "@std/log";
@@ -81,12 +81,12 @@
81
81
  * return getLogger("my-awesome-module");
82
82
  * }
83
83
  *
84
- * export function sum(a: number, b: number) {
84
+ * function sum(a: number, b: number) {
85
85
  * logger().debug(`running ${a} + ${b}`);
86
86
  * return a + b;
87
87
  * }
88
88
  *
89
- * export function mult(a: number, b: number) {
89
+ * function mult(a: number, b: number) {
90
90
  * logger().debug(`running ${a} * ${b}`);
91
91
  * return a * b;
92
92
  * }
@@ -122,14 +122,14 @@
122
122
  *
123
123
  * const logger = getLogger("my-awesome-module");
124
124
  *
125
- * export function sum(a: number, b: number) {
125
+ * function sum(a: number, b: number) {
126
126
  * logger.debug(`running ${a} + ${b}`); // no message will be logged, because getLogger() was called before log.setup()
127
127
  * return a + b;
128
128
  * }
129
129
  * ```
130
130
  *
131
131
  * @example
132
- * ```ts
132
+ * ```ts ignore
133
133
  * import * as log from "@std/log";
134
134
  *
135
135
  * // Simple default logger out of the box. You can customize it
@@ -10,9 +10,9 @@ var __classPrivateFieldGet = (this && this.__classPrivateFieldGet) || function (
10
10
  return kind === "m" ? f : kind === "a" ? f.call(receiver) : f ? f.value : state.get(receiver);
11
11
  };
12
12
  var _RotatingFileHandler_maxBytes, _RotatingFileHandler_maxBackupCount, _RotatingFileHandler_currentFileSize;
13
- // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
13
+ // Copyright 2018-2025 the Deno authors. MIT license.
14
14
  import * as dntShim from "../../../../../_dnt.shims.js";
15
- import { existsSync } from "../../fs/1.0.3/exists.js";
15
+ import { existsSync } from "../../fs/1.0.9/exists.js";
16
16
  import { FileHandler } from "./file_handler.js";
17
17
  import { encoderSymbol, filenameSymbol, fileSymbol, modeSymbol, openOptionsSymbol, } from "./_file_handler_symbols.js";
18
18
  /**
@@ -1,4 +1,4 @@
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 { DEFAULT_CONFIG, DEFAULT_LEVEL } from "./_config.js";
4
4
  import { Logger } from "./logger.js";
@@ -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 warn(msg, ...args) {
5
6
  // Assist TS compiler with pass-through generic type
6
7
  if (msg instanceof Function) {
@@ -17,6 +17,23 @@ import { isPosixPathSeparator } from "./_util.js";
17
17
  * assertEquals(basename("/home/user/Documents/image.png", ".png"), "image");
18
18
  * ```
19
19
  *
20
+ * @example Working with URLs
21
+ *
22
+ * Note: This function doesn't automatically strip hash and query parts from
23
+ * URLs. If your URL contains a hash or query, remove them before passing the
24
+ * URL to the function. This can be done by passing the URL to `new URL(url)`,
25
+ * and setting the `hash` and `search` properties to empty strings.
26
+ *
27
+ * ```ts
28
+ * import { basename } from "@std/path/posix/basename";
29
+ * import { assertEquals } from "@std/assert";
30
+ *
31
+ * assertEquals(basename("https://deno.land/std/path/mod.ts"), "mod.ts");
32
+ * assertEquals(basename("https://deno.land/std/path/mod.ts", ".ts"), "mod");
33
+ * assertEquals(basename("https://deno.land/std/path/mod.ts?a=b"), "mod.ts?a=b");
34
+ * assertEquals(basename("https://deno.land/std/path/mod.ts#header"), "mod.ts#header");
35
+ * ```
36
+ *
20
37
  * Note: If you are working with file URLs,
21
38
  * use the new version of `basename` from `@std/path/posix/unstable-basename`.
22
39
  *
@@ -13,6 +13,18 @@ import { isPosixPathSeparator } from "./_util.js";
13
13
  *
14
14
  * assertEquals(dirname("/home/user/Documents/"), "/home/user");
15
15
  * assertEquals(dirname("/home/user/Documents/image.png"), "/home/user/Documents");
16
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts"), "https://deno.land/std/path");
17
+ * ```
18
+ *
19
+ * @example Working with URLs
20
+ *
21
+ * ```ts
22
+ * import { dirname } from "@std/path/posix/dirname";
23
+ * import { assertEquals } from "@std/assert";
24
+ *
25
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts"), "https://deno.land/std/path");
26
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts?a=b"), "https://deno.land/std/path");
27
+ * assertEquals(dirname("https://deno.land/std/path/mod.ts#header"), "https://deno.land/std/path");
16
28
  * ```
17
29
  *
18
30
  * Note: If you are working with file URLs,
@@ -16,6 +16,22 @@ import { isPosixPathSeparator } from "./_util.js";
16
16
  * assertEquals(extname("/home/user/Documents/image.png"), ".png");
17
17
  * ```
18
18
  *
19
+ * @example Working with URLs
20
+ *
21
+ * Note: This function doesn't automatically strip hash and query parts from
22
+ * URLs. If your URL contains a hash or query, remove them before passing the
23
+ * URL to the function. This can be done by passing the URL to `new URL(url)`,
24
+ * and setting the `hash` and `search` properties to empty strings.
25
+ *
26
+ * ```ts
27
+ * import { extname } from "@std/path/posix/extname";
28
+ * import { assertEquals } from "@std/assert";
29
+ *
30
+ * assertEquals(extname("https://deno.land/std/path/mod.ts"), ".ts");
31
+ * assertEquals(extname("https://deno.land/std/path/mod.ts?a=b"), ".ts?a=b");
32
+ * assertEquals(extname("https://deno.land/std/path/mod.ts#header"), ".ts#header");
33
+ * ```
34
+ *
19
35
  * Note: If you are working with file URLs,
20
36
  * use the new version of `extname` from `@std/path/posix/unstable-extname`.
21
37
  *
@@ -14,6 +14,19 @@ import { normalize } from "./normalize.js";
14
14
  * assertEquals(path, "/foo/bar/baz/asdf");
15
15
  * ```
16
16
  *
17
+ * @example Working with URLs
18
+ * ```ts
19
+ * import { join } from "@std/path/posix/join";
20
+ * import { assertEquals } from "@std/assert";
21
+ *
22
+ * const url = new URL("https://deno.land");
23
+ * url.pathname = join("std", "path", "mod.ts");
24
+ * assertEquals(url.href, "https://deno.land/std/path/mod.ts");
25
+ *
26
+ * url.pathname = join("//std", "path/", "/mod.ts");
27
+ * assertEquals(url.href, "https://deno.land/std/path/mod.ts");
28
+ * ```
29
+ *
17
30
  * Note: If you are working with file URLs,
18
31
  * use the new version of `join` from `@std/path/posix/unstable-join`.
19
32
  *