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.
- package/esm/deps/jsr.io/@std/fmt/{1.0.2 → 1.0.4}/colors.js +1 -1
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_create_walk_entry.js +3 -3
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_same_path.js +2 -2
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_subdir.js +3 -3
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_to_path_string.js +2 -2
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/copy.js +12 -11
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/empty_dir.js +4 -4
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_dir.js +3 -3
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_file.js +4 -4
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_link.js +4 -4
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_symlink.js +51 -14
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/eol.js +7 -5
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/exists.js +37 -17
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/expand_glob.js +15 -14
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/mod.js +2 -2
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/move.js +5 -5
- package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/walk.js +22 -22
- package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/copy.js +1 -1
- package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/read_all.js +3 -3
- package/esm/deps/jsr.io/@std/io/0.225.0/types.js +15 -0
- package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/write_all.js +2 -2
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_config.js +1 -1
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_file_handler_symbols.js +1 -1
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_state.js +1 -1
- package/esm/deps/jsr.io/@std/log/0.224.13/base_handler.js +331 -0
- package/esm/deps/jsr.io/@std/log/0.224.13/console_handler.js +112 -0
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/critical.js +2 -1
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/debug.js +2 -1
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/error.js +2 -1
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/file_handler.js +147 -15
- package/esm/deps/jsr.io/@std/log/0.224.13/formatters.js +45 -0
- package/esm/deps/jsr.io/@std/log/0.224.13/get_logger.js +75 -0
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/info.js +2 -1
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/levels.js +3 -1
- package/esm/deps/jsr.io/@std/log/0.224.13/logger.js +525 -0
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/mod.js +6 -6
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/rotating_file_handler.js +2 -2
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/setup.js +1 -1
- package/esm/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/warn.js +2 -1
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/basename.js +17 -0
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/dirname.js +12 -0
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/extname.js +16 -0
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join.js +13 -0
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join_globs.js +3 -2
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize.js +18 -0
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize_glob.js +2 -1
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join_globs.js +3 -2
- package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize_glob.js +2 -1
- package/esm/deps.js +8 -8
- package/esm/gen/core/OpenAPI.js +1 -1
- package/esm/main.js +1 -1
- package/package.json +1 -1
- package/types/deps/jsr.io/@std/bytes/{1.0.2 → 1.0.4}/concat.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_base32_common.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_validate_binary_like.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/ascii85.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base32.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base58.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/hex.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/mod.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/varint.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fmt/{1.0.2 → 1.0.4}/colors.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_create_walk_entry.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_get_file_info_type.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_same_path.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_subdir.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_to_path_string.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/copy.d.ts +6 -6
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/copy.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/empty_dir.d.ts +2 -2
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/empty_dir.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_dir.d.ts +2 -2
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_dir.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_file.d.ts +2 -2
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_file.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_link.d.ts +2 -2
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_link.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/ensure_symlink.d.ts +26 -8
- package/types/deps/jsr.io/@std/fs/1.0.9/ensure_symlink.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/eol.d.ts +3 -3
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/eol.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/exists.d.ts +36 -16
- package/types/deps/jsr.io/@std/fs/1.0.9/exists.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/expand_glob.d.ts +7 -7
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/expand_glob.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/mod.d.ts +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/mod.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/move.d.ts +4 -4
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/move.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/walk.d.ts +20 -20
- package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/walk.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.224.9}/types.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/_constants.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/copy.d.ts +1 -1
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/copy.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/read_all.d.ts +2 -2
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/read_all.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/io/0.225.0/types.d.ts +146 -0
- package/types/deps/jsr.io/@std/io/0.225.0/types.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/write_all.d.ts +2 -2
- package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/write_all.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/log/0.224.13/_config.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/_file_handler_symbols.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/_state.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/base_handler.d.ts +326 -0
- package/types/deps/jsr.io/@std/log/0.224.13/base_handler.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/console_handler.d.ts +76 -0
- package/types/deps/jsr.io/@std/log/0.224.13/console_handler.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/critical.d.ts +53 -0
- package/types/deps/jsr.io/@std/log/0.224.13/critical.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/debug.d.ts +105 -0
- package/types/deps/jsr.io/@std/log/0.224.13/debug.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/error.d.ts +53 -0
- package/types/deps/jsr.io/@std/log/0.224.13/error.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/file_handler.d.ts +200 -0
- package/types/deps/jsr.io/@std/log/0.224.13/file_handler.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/formatters.d.ts +34 -0
- package/types/deps/jsr.io/@std/log/0.224.13/formatters.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/get_logger.d.ts +59 -0
- package/types/deps/jsr.io/@std/log/0.224.13/get_logger.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/info.d.ts +53 -0
- package/types/deps/jsr.io/@std/log/0.224.13/info.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/levels.d.ts +2 -0
- package/types/deps/jsr.io/@std/log/0.224.13/levels.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/logger.d.ts +622 -0
- package/types/deps/jsr.io/@std/log/0.224.13/logger.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/mod.d.ts +5 -5
- package/types/deps/jsr.io/@std/log/0.224.13/mod.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/rotating_file_handler.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/setup.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/log/0.224.13/warn.d.ts +53 -0
- package/types/deps/jsr.io/@std/log/0.224.13/warn.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/assert_path.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/basename.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/common.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/constants.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/dirname.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/format.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/from_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/glob_to_reg_exp.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize_string.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/relative.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/strip_trailing_separators.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/to_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/1.0.8/_os.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/basename.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/common.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/constants.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/dirname.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/extname.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/format.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/from_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/glob_to_regexp.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_absolute.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_glob.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join_globs.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/mod.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize_glob.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/parse.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/_util.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/basename.d.ts +17 -0
- package/types/deps/jsr.io/@std/path/1.0.8/posix/basename.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/constants.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/dirname.d.ts +12 -0
- package/types/deps/jsr.io/@std/path/1.0.8/posix/dirname.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts +37 -0
- package/types/deps/jsr.io/@std/path/1.0.8/posix/extname.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/format.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/from_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/glob_to_regexp.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/is_absolute.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join.d.ts +13 -0
- package/types/deps/jsr.io/@std/path/1.0.8/posix/join.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join_globs.d.ts +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/join_globs.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize.d.ts +18 -0
- package/types/deps/jsr.io/@std/path/1.0.8/posix/normalize.d.ts.map +1 -0
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize_glob.d.ts +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/normalize_glob.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/parse.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/relative.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/resolve.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_namespaced_path.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/relative.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/resolve.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_namespaced_path.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/types.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/_util.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/basename.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/constants.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/dirname.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/extname.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/format.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/from_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/glob_to_regexp.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/is_absolute.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join_globs.d.ts +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join_globs.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize_glob.d.ts +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize_glob.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/parse.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/relative.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/resolve.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_file_url.d.ts.map +1 -1
- package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_namespaced_path.d.ts.map +1 -1
- package/types/deps/jsr.io/@windmill-labs/cliffy-ansi/1.0.0-rc.5/cursor_position.d.ts +1 -1
- package/types/deps/jsr.io/@windmill-labs/cliffy-ansi/1.0.0-rc.5/tty.d.ts +1 -1
- package/types/deps/jsr.io/@windmill-labs/cliffy-prompt/1.0.0-rc.6/_generic_prompt.d.ts +1 -1
- package/types/deps.d.ts +8 -8
- package/types/deps.d.ts.map +1 -1
- package/types/main.d.ts +1 -1
- package/esm/deps/jsr.io/@std/log/0.224.7/base_handler.js +0 -60
- package/esm/deps/jsr.io/@std/log/0.224.7/console_handler.js +0 -58
- package/esm/deps/jsr.io/@std/log/0.224.7/formatters.js +0 -19
- package/esm/deps/jsr.io/@std/log/0.224.7/get_logger.js +0 -21
- package/esm/deps/jsr.io/@std/log/0.224.7/logger.js +0 -179
- package/types/deps/jsr.io/@std/fs/1.0.3/ensure_symlink.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/fs/1.0.3/exists.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/_config.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/_file_handler_symbols.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/_state.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/base_handler.d.ts +0 -22
- package/types/deps/jsr.io/@std/log/0.224.7/base_handler.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/console_handler.d.ts +0 -18
- package/types/deps/jsr.io/@std/log/0.224.7/console_handler.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/critical.d.ts +0 -5
- package/types/deps/jsr.io/@std/log/0.224.7/critical.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/debug.d.ts +0 -5
- package/types/deps/jsr.io/@std/log/0.224.7/debug.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/error.d.ts +0 -5
- package/types/deps/jsr.io/@std/log/0.224.7/error.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/file_handler.d.ts +0 -54
- package/types/deps/jsr.io/@std/log/0.224.7/file_handler.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/formatters.d.ts +0 -6
- package/types/deps/jsr.io/@std/log/0.224.7/formatters.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/get_logger.d.ts +0 -4
- package/types/deps/jsr.io/@std/log/0.224.7/get_logger.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/info.d.ts +0 -5
- package/types/deps/jsr.io/@std/log/0.224.7/info.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/levels.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/logger.d.ts +0 -62
- package/types/deps/jsr.io/@std/log/0.224.7/logger.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/mod.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/rotating_file_handler.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/setup.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/log/0.224.7/warn.d.ts +0 -5
- package/types/deps/jsr.io/@std/log/0.224.7/warn.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/path/1.0.6/_os.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/path/1.0.6/posix/basename.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/path/1.0.6/posix/dirname.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/path/1.0.6/posix/extname.d.ts +0 -21
- package/types/deps/jsr.io/@std/path/1.0.6/posix/extname.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/path/1.0.6/posix/join.d.ts.map +0 -1
- package/types/deps/jsr.io/@std/path/1.0.6/posix/normalize.d.ts.map +0 -1
- /package/esm/deps/jsr.io/@std/bytes/{1.0.2 → 1.0.4}/concat.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_base32_common.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_validate_binary_like.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/ascii85.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base32.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base58.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64url.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/hex.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/mod.js +0 -0
- /package/esm/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/varint.js +0 -0
- /package/esm/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_get_file_info_type.js +0 -0
- /package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.224.9}/types.js +0 -0
- /package/esm/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/_constants.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/assert_path.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/basename.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/common.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/constants.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/dirname.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/format.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/from_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/glob_to_reg_exp.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize_string.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/relative.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/strip_trailing_separators.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/to_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_os.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/basename.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/common.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/constants.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/dirname.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/extname.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/format.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/from_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/glob_to_regexp.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_absolute.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_glob.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join_globs.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/mod.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize_glob.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/parse.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/_util.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/constants.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/format.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/from_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/glob_to_regexp.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/is_absolute.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/parse.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/relative.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/resolve.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_namespaced_path.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/relative.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/resolve.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_namespaced_path.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/types.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/_util.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/basename.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/constants.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/dirname.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/extname.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/format.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/from_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/glob_to_regexp.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/is_absolute.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/parse.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/relative.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/resolve.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_file_url.js +0 -0
- /package/esm/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_namespaced_path.js +0 -0
- /package/types/deps/jsr.io/@std/bytes/{1.0.2 → 1.0.4}/concat.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_base32_common.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/_validate_binary_like.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/ascii85.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base32.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base58.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/base64url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/hex.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/mod.d.ts +0 -0
- /package/types/deps/jsr.io/@std/encoding/{1.0.5 → 1.0.6}/varint.d.ts +0 -0
- /package/types/deps/jsr.io/@std/fmt/{1.0.2 → 1.0.4}/colors.d.ts +0 -0
- /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_create_walk_entry.d.ts +0 -0
- /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_get_file_info_type.d.ts +0 -0
- /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_same_path.d.ts +0 -0
- /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_is_subdir.d.ts +0 -0
- /package/types/deps/jsr.io/@std/fs/{1.0.3 → 1.0.9}/_to_path_string.d.ts +0 -0
- /package/types/deps/jsr.io/@std/io/{0.224.8 → 0.224.9}/types.d.ts +0 -0
- /package/types/deps/jsr.io/@std/io/{0.224.8 → 0.225.0}/_constants.d.ts +0 -0
- /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_config.d.ts +0 -0
- /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_file_handler_symbols.d.ts +0 -0
- /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/_state.d.ts +0 -0
- /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/rotating_file_handler.d.ts +0 -0
- /package/types/deps/jsr.io/@std/log/{0.224.7 → 0.224.13}/setup.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/assert_path.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/basename.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/common.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/constants.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/dirname.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/format.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/from_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/glob_to_reg_exp.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/normalize_string.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/relative.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/strip_trailing_separators.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_common/to_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/_os.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/basename.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/common.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/constants.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/dirname.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/extname.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/format.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/from_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/glob_to_regexp.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_absolute.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/is_glob.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/join_globs.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/mod.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/normalize_glob.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/parse.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/_util.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/constants.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/format.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/from_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/glob_to_regexp.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/is_absolute.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/parse.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/relative.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/resolve.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/posix/to_namespaced_path.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/relative.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/resolve.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/to_namespaced_path.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/types.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/_util.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/basename.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/constants.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/dirname.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/extname.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/format.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/from_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/glob_to_regexp.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/is_absolute.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/join.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/normalize.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/parse.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/relative.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/resolve.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_file_url.d.ts +0 -0
- /package/types/deps/jsr.io/@std/path/{1.0.6 → 1.0.8}/windows/to_namespaced_path.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// Copyright 2018-
|
|
1
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
2
2
|
import * as dntShim from "../../../../../_dnt.shims.js";
|
|
3
3
|
import { isSubdir } from "./_is_subdir.js";
|
|
4
4
|
import { isSamePath } from "./_is_same_path.js";
|
|
@@ -21,7 +21,7 @@ const EXISTS_ERROR = new dntShim.Deno.errors.AlreadyExists("dest already exists.
|
|
|
21
21
|
* @returns A void promise that resolves once the operation completes.
|
|
22
22
|
*
|
|
23
23
|
* @example Basic usage
|
|
24
|
-
* ```ts
|
|
24
|
+
* ```ts ignore
|
|
25
25
|
* import { move } from "@std/fs/move";
|
|
26
26
|
*
|
|
27
27
|
* await move("./foo", "./bar");
|
|
@@ -31,7 +31,7 @@ const EXISTS_ERROR = new dntShim.Deno.errors.AlreadyExists("dest already exists.
|
|
|
31
31
|
* overwriting.
|
|
32
32
|
*
|
|
33
33
|
* @example Overwriting
|
|
34
|
-
* ```ts
|
|
34
|
+
* ```ts ignore
|
|
35
35
|
* import { move } from "@std/fs/move";
|
|
36
36
|
*
|
|
37
37
|
* await move("./foo", "./bar", { overwrite: true });
|
|
@@ -88,7 +88,7 @@ export async function move(src, dest, options) {
|
|
|
88
88
|
* @returns A void value that returns once the operation completes.
|
|
89
89
|
*
|
|
90
90
|
* @example Basic usage
|
|
91
|
-
* ```ts
|
|
91
|
+
* ```ts ignore
|
|
92
92
|
* import { moveSync } from "@std/fs/move";
|
|
93
93
|
*
|
|
94
94
|
* moveSync("./foo", "./bar");
|
|
@@ -98,7 +98,7 @@ export async function move(src, dest, options) {
|
|
|
98
98
|
* overwriting.
|
|
99
99
|
*
|
|
100
100
|
* @example Overwriting
|
|
101
|
-
* ```ts
|
|
101
|
+
* ```ts ignore
|
|
102
102
|
* import { moveSync } from "@std/fs/move";
|
|
103
103
|
*
|
|
104
104
|
* moveSync("./foo", "./bar", { overwrite: true });
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
// Copyright 2018-
|
|
1
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
2
2
|
// Documentation and interface for walk were adapted from Go
|
|
3
3
|
// https://golang.org/pkg/path/filepath/#Walk
|
|
4
4
|
// Copyright 2009 The Go Authors. All rights reserved. BSD license.
|
|
5
5
|
import * as dntShim from "../../../../../_dnt.shims.js";
|
|
6
|
-
import { join } from "../../path/1.0.
|
|
6
|
+
import { join } from "../../path/1.0.8/join.js";
|
|
7
7
|
import { toPathString } from "./_to_path_string.js";
|
|
8
8
|
import { createWalkEntry, createWalkEntrySync, } from "./_create_walk_entry.js";
|
|
9
9
|
function include(path, exts, match, skip) {
|
|
@@ -45,7 +45,7 @@ function include(path, exts, match, skip) {
|
|
|
45
45
|
* └── foo.ts
|
|
46
46
|
* ```
|
|
47
47
|
*
|
|
48
|
-
* ```ts
|
|
48
|
+
* ```ts ignore
|
|
49
49
|
* import { walk } from "@std/fs/walk";
|
|
50
50
|
*
|
|
51
51
|
* await Array.fromAsync(walk("."));
|
|
@@ -87,7 +87,7 @@ function include(path, exts, match, skip) {
|
|
|
87
87
|
* └── bar.ts
|
|
88
88
|
* ```
|
|
89
89
|
*
|
|
90
|
-
* ```ts
|
|
90
|
+
* ```ts ignore
|
|
91
91
|
* import { walk } from "@std/fs/walk";
|
|
92
92
|
*
|
|
93
93
|
* await Array.fromAsync(walk(".", { maxDepth: 1 }));
|
|
@@ -127,7 +127,7 @@ function include(path, exts, match, skip) {
|
|
|
127
127
|
* └── foo
|
|
128
128
|
* ```
|
|
129
129
|
*
|
|
130
|
-
* ```ts
|
|
130
|
+
* ```ts ignore
|
|
131
131
|
* import { walk } from "@std/fs/walk";
|
|
132
132
|
*
|
|
133
133
|
* await Array.fromAsync(walk(".", { includeFiles: false }));
|
|
@@ -160,7 +160,7 @@ function include(path, exts, match, skip) {
|
|
|
160
160
|
* └── foo
|
|
161
161
|
* ```
|
|
162
162
|
*
|
|
163
|
-
* ```ts
|
|
163
|
+
* ```ts ignore
|
|
164
164
|
* import { walk } from "@std/fs/walk";
|
|
165
165
|
*
|
|
166
166
|
* await Array.fromAsync(walk(".", { includeDirs: false }));
|
|
@@ -187,7 +187,7 @@ function include(path, exts, match, skip) {
|
|
|
187
187
|
* └── link -> script.ts (symbolic link)
|
|
188
188
|
* ```
|
|
189
189
|
*
|
|
190
|
-
* ```ts
|
|
190
|
+
* ```ts ignore
|
|
191
191
|
* import { walk } from "@std/fs/walk";
|
|
192
192
|
*
|
|
193
193
|
* await Array.fromAsync(walk(".", { includeSymlinks: false }));
|
|
@@ -221,7 +221,7 @@ function include(path, exts, match, skip) {
|
|
|
221
221
|
* └── link -> script.ts (symbolic link)
|
|
222
222
|
* ```
|
|
223
223
|
*
|
|
224
|
-
* ```ts
|
|
224
|
+
* ```ts ignore
|
|
225
225
|
* import { walk } from "@std/fs/walk";
|
|
226
226
|
*
|
|
227
227
|
* await Array.fromAsync(walk(".", { followSymlinks: true }));
|
|
@@ -263,7 +263,7 @@ function include(path, exts, match, skip) {
|
|
|
263
263
|
* └── link -> script.ts (symbolic link)
|
|
264
264
|
* ```
|
|
265
265
|
*
|
|
266
|
-
* ```ts
|
|
266
|
+
* ```ts ignore
|
|
267
267
|
* import { walk } from "@std/fs/walk";
|
|
268
268
|
*
|
|
269
269
|
* await Array.fromAsync(walk(".", { followSymlinks: true, canonicalize: true }));
|
|
@@ -304,7 +304,7 @@ function include(path, exts, match, skip) {
|
|
|
304
304
|
* └── foo.js
|
|
305
305
|
* ```
|
|
306
306
|
*
|
|
307
|
-
* ```ts
|
|
307
|
+
* ```ts ignore
|
|
308
308
|
* import { walk } from "@std/fs/walk";
|
|
309
309
|
*
|
|
310
310
|
* await Array.fromAsync(walk(".", { exts: [".ts"] }));
|
|
@@ -331,7 +331,7 @@ function include(path, exts, match, skip) {
|
|
|
331
331
|
* └── README.md
|
|
332
332
|
* ```
|
|
333
333
|
*
|
|
334
|
-
* ```ts
|
|
334
|
+
* ```ts ignore
|
|
335
335
|
* import { walk } from "@std/fs/walk";
|
|
336
336
|
*
|
|
337
337
|
* await Array.fromAsync(walk(".", { match: [/s/] }));
|
|
@@ -358,7 +358,7 @@ function include(path, exts, match, skip) {
|
|
|
358
358
|
* └── README.md
|
|
359
359
|
* ```
|
|
360
360
|
*
|
|
361
|
-
* ```ts
|
|
361
|
+
* ```ts ignore
|
|
362
362
|
* import { walk } from "@std/fs/walk";
|
|
363
363
|
*
|
|
364
364
|
* await Array.fromAsync(walk(".", { skip: [/s/] }));
|
|
@@ -457,7 +457,7 @@ export async function* walk(root, options) {
|
|
|
457
457
|
* └── foo.ts
|
|
458
458
|
* ```
|
|
459
459
|
*
|
|
460
|
-
* ```ts
|
|
460
|
+
* ```ts ignore
|
|
461
461
|
* import { walkSync } from "@std/fs/walk";
|
|
462
462
|
*
|
|
463
463
|
* Array.from(walkSync("."));
|
|
@@ -499,7 +499,7 @@ export async function* walk(root, options) {
|
|
|
499
499
|
* └── bar.ts
|
|
500
500
|
* ```
|
|
501
501
|
*
|
|
502
|
-
* ```ts
|
|
502
|
+
* ```ts ignore
|
|
503
503
|
* import { walkSync } from "@std/fs/walk";
|
|
504
504
|
*
|
|
505
505
|
* Array.from(walkSync(".", { maxDepth: 1 }));
|
|
@@ -539,7 +539,7 @@ export async function* walk(root, options) {
|
|
|
539
539
|
* └── foo
|
|
540
540
|
* ```
|
|
541
541
|
*
|
|
542
|
-
* ```ts
|
|
542
|
+
* ```ts ignore
|
|
543
543
|
* import { walkSync } from "@std/fs/walk";
|
|
544
544
|
*
|
|
545
545
|
* Array.from(walkSync(".", { includeFiles: false }));
|
|
@@ -572,7 +572,7 @@ export async function* walk(root, options) {
|
|
|
572
572
|
* └── foo
|
|
573
573
|
* ```
|
|
574
574
|
*
|
|
575
|
-
* ```ts
|
|
575
|
+
* ```ts ignore
|
|
576
576
|
* import { walkSync } from "@std/fs/walk";
|
|
577
577
|
*
|
|
578
578
|
* Array.from(walkSync(".", { includeDirs: false }));
|
|
@@ -599,7 +599,7 @@ export async function* walk(root, options) {
|
|
|
599
599
|
* └── link -> script.ts (symbolic link)
|
|
600
600
|
* ```
|
|
601
601
|
*
|
|
602
|
-
* ```ts
|
|
602
|
+
* ```ts ignore
|
|
603
603
|
* import { walkSync } from "@std/fs/walk";
|
|
604
604
|
*
|
|
605
605
|
* Array.from(walkSync(".", { includeSymlinks: false }));
|
|
@@ -633,7 +633,7 @@ export async function* walk(root, options) {
|
|
|
633
633
|
* └── link -> script.ts (symbolic link)
|
|
634
634
|
* ```
|
|
635
635
|
*
|
|
636
|
-
* ```ts
|
|
636
|
+
* ```ts ignore
|
|
637
637
|
* import { walkSync } from "@std/fs/walk";
|
|
638
638
|
*
|
|
639
639
|
* Array.from(walkSync(".", { followSymlinks: true }));
|
|
@@ -675,7 +675,7 @@ export async function* walk(root, options) {
|
|
|
675
675
|
* └── link -> script.ts (symbolic link)
|
|
676
676
|
* ```
|
|
677
677
|
*
|
|
678
|
-
* ```ts
|
|
678
|
+
* ```ts ignore
|
|
679
679
|
* import { walkSync } from "@std/fs/walk";
|
|
680
680
|
*
|
|
681
681
|
* Array.from(walkSync(".", { followSymlinks: true, canonicalize: true }));
|
|
@@ -716,7 +716,7 @@ export async function* walk(root, options) {
|
|
|
716
716
|
* └── foo.js
|
|
717
717
|
* ```
|
|
718
718
|
*
|
|
719
|
-
* ```ts
|
|
719
|
+
* ```ts ignore
|
|
720
720
|
* import { walkSync } from "@std/fs/walk";
|
|
721
721
|
*
|
|
722
722
|
* Array.from(walkSync(".", { exts: [".ts"] }));
|
|
@@ -743,7 +743,7 @@ export async function* walk(root, options) {
|
|
|
743
743
|
* └── README.md
|
|
744
744
|
* ```
|
|
745
745
|
*
|
|
746
|
-
* ```ts
|
|
746
|
+
* ```ts ignore
|
|
747
747
|
* import { walkSync } from "@std/fs/walk";
|
|
748
748
|
*
|
|
749
749
|
* Array.from(walkSync(".", { match: [/s/] }));
|
|
@@ -770,7 +770,7 @@ export async function* walk(root, options) {
|
|
|
770
770
|
* └── README.md
|
|
771
771
|
* ```
|
|
772
772
|
*
|
|
773
|
-
* ```ts
|
|
773
|
+
* ```ts ignore
|
|
774
774
|
* import { walkSync } from "@std/fs/walk";
|
|
775
775
|
*
|
|
776
776
|
* Array.from(walkSync(".", { skip: [/s/] }));
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
2
2
|
// This module is browser compatible.
|
|
3
|
-
import { concat } from "../../bytes/1.0.
|
|
3
|
+
import { concat } from "../../bytes/1.0.4/concat.js";
|
|
4
4
|
import { DEFAULT_CHUNK_SIZE } from "./_constants.js";
|
|
5
5
|
/**
|
|
6
6
|
* Read {@linkcode Reader} `r` until EOF (`null`) and resolve to the content as
|
|
7
7
|
* {@linkcode Uint8Array}.
|
|
8
8
|
*
|
|
9
9
|
* @example Usage
|
|
10
|
-
* ```ts
|
|
10
|
+
* ```ts ignore
|
|
11
11
|
* import { readAll } from "@std/io/read-all";
|
|
12
12
|
*
|
|
13
13
|
* // Example from stdin
|
|
@@ -41,7 +41,7 @@ export async function readAll(reader) {
|
|
|
41
41
|
* the content as {@linkcode Uint8Array}.
|
|
42
42
|
*
|
|
43
43
|
* @example Usage
|
|
44
|
-
* ```ts
|
|
44
|
+
* ```ts ignore
|
|
45
45
|
* import { readAllSync } from "@std/io/read-all";
|
|
46
46
|
*
|
|
47
47
|
* // Example from stdin
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
2
|
+
// This module is browser compatible.
|
|
3
|
+
/**
|
|
4
|
+
* A enum which defines the seek mode for IO related APIs that support
|
|
5
|
+
* seeking.
|
|
6
|
+
*/
|
|
7
|
+
export var SeekMode;
|
|
8
|
+
(function (SeekMode) {
|
|
9
|
+
/* Seek from the start of the file/resource. */
|
|
10
|
+
SeekMode[SeekMode["Start"] = 0] = "Start";
|
|
11
|
+
/* Seek from the current position within the file/resource. */
|
|
12
|
+
SeekMode[SeekMode["Current"] = 1] = "Current";
|
|
13
|
+
/* Seek from the end of the current file/resource. */
|
|
14
|
+
SeekMode[SeekMode["End"] = 2] = "End";
|
|
15
|
+
})(SeekMode || (SeekMode = {}));
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
* ```
|
|
13
13
|
*
|
|
14
14
|
* @example Writing to file
|
|
15
|
-
* ```ts
|
|
15
|
+
* ```ts ignore no-assert
|
|
16
16
|
* import { writeAll } from "@std/io/write-all";
|
|
17
17
|
*
|
|
18
18
|
* const contentBytes = new TextEncoder().encode("Hello World");
|
|
@@ -42,7 +42,7 @@ export async function writeAll(writer, data) {
|
|
|
42
42
|
* ```
|
|
43
43
|
*
|
|
44
44
|
* @example Writing to file
|
|
45
|
-
* ```ts
|
|
45
|
+
* ```ts ignore no-assert
|
|
46
46
|
* import { writeAllSync } from "@std/io/write-all";
|
|
47
47
|
*
|
|
48
48
|
* const contentBytes = new TextEncoder().encode("Hello World");
|
|
@@ -0,0 +1,331 @@
|
|
|
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 _BaseHandler_levelName, _BaseHandler_level;
|
|
13
|
+
// Copyright 2018-2025 the Deno authors. MIT license.
|
|
14
|
+
// This module is browser compatible.
|
|
15
|
+
import { getLevelByName, getLevelName, } from "./levels.js";
|
|
16
|
+
const DEFAULT_FORMATTER = ({ levelName, msg }) => `${levelName} ${msg}`;
|
|
17
|
+
/**
|
|
18
|
+
* A base class for all log handlers.
|
|
19
|
+
*
|
|
20
|
+
* This class is abstract and should not be instantiated directly. Instead, it
|
|
21
|
+
* should be extended by other classes that implement the `log` method.
|
|
22
|
+
*
|
|
23
|
+
* @example Usage
|
|
24
|
+
* ```ts
|
|
25
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
26
|
+
* import { assertInstanceOf } from "@std/assert/instance-of";
|
|
27
|
+
*
|
|
28
|
+
* class MyHandler extends BaseHandler {
|
|
29
|
+
* log(msg: string) {
|
|
30
|
+
* console.log(msg);
|
|
31
|
+
* }
|
|
32
|
+
* }
|
|
33
|
+
*
|
|
34
|
+
* const handler = new MyHandler("INFO");
|
|
35
|
+
* assertInstanceOf(handler, BaseHandler);
|
|
36
|
+
* ```
|
|
37
|
+
*/
|
|
38
|
+
export class BaseHandler {
|
|
39
|
+
/**
|
|
40
|
+
* Constructs a new instance.
|
|
41
|
+
*
|
|
42
|
+
* @param levelName The name of the log level to handle.
|
|
43
|
+
* @param options Options for the handler.
|
|
44
|
+
*/
|
|
45
|
+
constructor(levelName, options) {
|
|
46
|
+
_BaseHandler_levelName.set(this, void 0);
|
|
47
|
+
_BaseHandler_level.set(this, void 0);
|
|
48
|
+
/**
|
|
49
|
+
* The function that formats log records.
|
|
50
|
+
*
|
|
51
|
+
* @example Usage
|
|
52
|
+
* ```ts
|
|
53
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
54
|
+
* import { LogRecord } from "@std/log/logger";
|
|
55
|
+
* import { LogLevels } from "@std/log/levels";
|
|
56
|
+
* import { assertEquals } from "@std/assert/equals";
|
|
57
|
+
*
|
|
58
|
+
* class MyHandler extends BaseHandler {
|
|
59
|
+
* log(msg: string) {
|
|
60
|
+
* console.log(msg);
|
|
61
|
+
* }
|
|
62
|
+
* }
|
|
63
|
+
*
|
|
64
|
+
* const handler = new MyHandler("INFO");
|
|
65
|
+
* const record = new LogRecord({
|
|
66
|
+
* msg: "Hello, world!",
|
|
67
|
+
* args: ["foo", "bar"],
|
|
68
|
+
* level: LogLevels.INFO,
|
|
69
|
+
* loggerName: "example",
|
|
70
|
+
* });
|
|
71
|
+
* const formatted = handler.formatter(record);
|
|
72
|
+
* assertEquals(formatted, "INFO Hello, world!");
|
|
73
|
+
* ```
|
|
74
|
+
*/
|
|
75
|
+
Object.defineProperty(this, "formatter", {
|
|
76
|
+
enumerable: true,
|
|
77
|
+
configurable: true,
|
|
78
|
+
writable: true,
|
|
79
|
+
value: void 0
|
|
80
|
+
});
|
|
81
|
+
const { formatter = DEFAULT_FORMATTER } = options ?? {};
|
|
82
|
+
__classPrivateFieldSet(this, _BaseHandler_levelName, levelName, "f");
|
|
83
|
+
__classPrivateFieldSet(this, _BaseHandler_level, getLevelByName(levelName), "f");
|
|
84
|
+
this.formatter = formatter;
|
|
85
|
+
}
|
|
86
|
+
/**
|
|
87
|
+
* Getter for the log level that this handler will handle.
|
|
88
|
+
*
|
|
89
|
+
* @example Usage
|
|
90
|
+
* ```ts
|
|
91
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
92
|
+
* import { LogLevels } from "@std/log/levels";
|
|
93
|
+
* import { assertEquals } from "@std/assert/equals";
|
|
94
|
+
*
|
|
95
|
+
* class MyHandler extends BaseHandler {
|
|
96
|
+
* log(msg: string) {
|
|
97
|
+
* console.log(msg);
|
|
98
|
+
* }
|
|
99
|
+
* }
|
|
100
|
+
*
|
|
101
|
+
* const handler = new MyHandler("INFO");
|
|
102
|
+
* assertEquals(handler.level, LogLevels.INFO);
|
|
103
|
+
* ```
|
|
104
|
+
*
|
|
105
|
+
* @returns The log level to handle.
|
|
106
|
+
*/
|
|
107
|
+
get level() {
|
|
108
|
+
return __classPrivateFieldGet(this, _BaseHandler_level, "f");
|
|
109
|
+
}
|
|
110
|
+
/**
|
|
111
|
+
* Setter for the log level that this handler will handle.
|
|
112
|
+
*
|
|
113
|
+
* @example Usage
|
|
114
|
+
* ```ts
|
|
115
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
116
|
+
* import { LogLevels } from "@std/log/levels";
|
|
117
|
+
* import { assertEquals } from "@std/assert/equals";
|
|
118
|
+
*
|
|
119
|
+
* class MyHandler extends BaseHandler {
|
|
120
|
+
* log(msg: string) {
|
|
121
|
+
* console.log(msg);
|
|
122
|
+
* }
|
|
123
|
+
* }
|
|
124
|
+
*
|
|
125
|
+
* const handler = new MyHandler("INFO");
|
|
126
|
+
* handler.level = LogLevels.DEBUG;
|
|
127
|
+
* assertEquals(handler.level, LogLevels.DEBUG);
|
|
128
|
+
* ```
|
|
129
|
+
*
|
|
130
|
+
* @param level The log level to handle.
|
|
131
|
+
*/
|
|
132
|
+
set level(level) {
|
|
133
|
+
__classPrivateFieldSet(this, _BaseHandler_level, level, "f");
|
|
134
|
+
__classPrivateFieldSet(this, _BaseHandler_levelName, getLevelName(level), "f");
|
|
135
|
+
}
|
|
136
|
+
/**
|
|
137
|
+
* Getter for the name of the log level that this handler will handle.
|
|
138
|
+
*
|
|
139
|
+
* @example Usage
|
|
140
|
+
* ```ts
|
|
141
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
142
|
+
* import { assertEquals } from "@std/assert/equals";
|
|
143
|
+
*
|
|
144
|
+
* class MyHandler extends BaseHandler {
|
|
145
|
+
* log(msg: string) {
|
|
146
|
+
* console.log(msg);
|
|
147
|
+
* }
|
|
148
|
+
* }
|
|
149
|
+
*
|
|
150
|
+
* const handler = new MyHandler("INFO");
|
|
151
|
+
* assertEquals(handler.levelName, "INFO");
|
|
152
|
+
* ```
|
|
153
|
+
*
|
|
154
|
+
* @returns The name of the log level to handle.
|
|
155
|
+
*/
|
|
156
|
+
get levelName() {
|
|
157
|
+
return __classPrivateFieldGet(this, _BaseHandler_levelName, "f");
|
|
158
|
+
}
|
|
159
|
+
/**
|
|
160
|
+
* Setter for the name of the log level that this handler will handle.
|
|
161
|
+
*
|
|
162
|
+
* @param levelName The name of the log level to handle.
|
|
163
|
+
*
|
|
164
|
+
* @example Usage
|
|
165
|
+
* ```ts
|
|
166
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
167
|
+
* import { assertEquals } from "@std/assert/equals";
|
|
168
|
+
*
|
|
169
|
+
* class MyHandler extends BaseHandler {
|
|
170
|
+
* log(msg: string) {
|
|
171
|
+
* console.log(msg);
|
|
172
|
+
* }
|
|
173
|
+
* }
|
|
174
|
+
*
|
|
175
|
+
* const handler = new MyHandler("INFO");
|
|
176
|
+
* handler.levelName = "DEBUG";
|
|
177
|
+
* assertEquals(handler.levelName, "DEBUG");
|
|
178
|
+
* ```
|
|
179
|
+
*/
|
|
180
|
+
set levelName(levelName) {
|
|
181
|
+
__classPrivateFieldSet(this, _BaseHandler_levelName, levelName, "f");
|
|
182
|
+
__classPrivateFieldSet(this, _BaseHandler_level, getLevelByName(levelName), "f");
|
|
183
|
+
}
|
|
184
|
+
/**
|
|
185
|
+
* Handles a log record.
|
|
186
|
+
*
|
|
187
|
+
* @param logRecord The log record to handle.
|
|
188
|
+
*
|
|
189
|
+
* @example Usage
|
|
190
|
+
* ```ts
|
|
191
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
192
|
+
* import { LogRecord } from "@std/log/logger";
|
|
193
|
+
* import { LogLevels } from "@std/log/levels";
|
|
194
|
+
* import { assertInstanceOf } from "@std/assert/instance-of";
|
|
195
|
+
*
|
|
196
|
+
* class MyHandler extends BaseHandler {
|
|
197
|
+
* log(msg: string) {
|
|
198
|
+
* console.log(msg);
|
|
199
|
+
* }
|
|
200
|
+
* }
|
|
201
|
+
*
|
|
202
|
+
* const handler = new MyHandler("INFO");
|
|
203
|
+
* const record = new LogRecord({
|
|
204
|
+
* msg: "Hello, world!",
|
|
205
|
+
* args: ["foo", "bar"],
|
|
206
|
+
* level: LogLevels.INFO,
|
|
207
|
+
* loggerName: "example",
|
|
208
|
+
* });
|
|
209
|
+
* handler.handle(record);
|
|
210
|
+
*
|
|
211
|
+
* assertInstanceOf(handler, BaseHandler);
|
|
212
|
+
* ```
|
|
213
|
+
*/
|
|
214
|
+
handle(logRecord) {
|
|
215
|
+
if (this.level > logRecord.level)
|
|
216
|
+
return;
|
|
217
|
+
const msg = this.format(logRecord);
|
|
218
|
+
this.log(msg);
|
|
219
|
+
}
|
|
220
|
+
/**
|
|
221
|
+
* Formats a log record.
|
|
222
|
+
*
|
|
223
|
+
* @param logRecord The log record to format.
|
|
224
|
+
* @returns A string representation of the log record.
|
|
225
|
+
*
|
|
226
|
+
* @example Usage
|
|
227
|
+
* ```ts
|
|
228
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
229
|
+
* import { LogRecord } from "@std/log/logger";
|
|
230
|
+
* import { LogLevels } from "@std/log/levels";
|
|
231
|
+
* import { assertEquals } from "@std/assert/equals";
|
|
232
|
+
*
|
|
233
|
+
* class MyHandler extends BaseHandler {
|
|
234
|
+
* log(msg: string) {
|
|
235
|
+
* console.log(msg);
|
|
236
|
+
* }
|
|
237
|
+
* }
|
|
238
|
+
*
|
|
239
|
+
* const handler = new MyHandler("INFO");
|
|
240
|
+
* const record = new LogRecord({
|
|
241
|
+
* msg: "Hello, world!",
|
|
242
|
+
* args: ["foo", "bar"],
|
|
243
|
+
* level: LogLevels.INFO,
|
|
244
|
+
* loggerName: "example",
|
|
245
|
+
* });
|
|
246
|
+
* const formatted = handler.format(record);
|
|
247
|
+
* assertEquals(formatted, "INFO Hello, world!");
|
|
248
|
+
* ```
|
|
249
|
+
*/
|
|
250
|
+
format(logRecord) {
|
|
251
|
+
return this.formatter(logRecord);
|
|
252
|
+
}
|
|
253
|
+
/**
|
|
254
|
+
* Initializes the handler.
|
|
255
|
+
*
|
|
256
|
+
* This method is called when the handler is added to a logger. It can be
|
|
257
|
+
* used to perform any setup that is required by the handler.
|
|
258
|
+
*
|
|
259
|
+
* @example Usage
|
|
260
|
+
* ```ts
|
|
261
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
262
|
+
* import { assertInstanceOf } from "@std/assert/instance-of";
|
|
263
|
+
*
|
|
264
|
+
* class MyHandler extends BaseHandler {
|
|
265
|
+
* log(msg: string) {
|
|
266
|
+
* console.log(msg);
|
|
267
|
+
* }
|
|
268
|
+
*
|
|
269
|
+
* override setup() {
|
|
270
|
+
* console.log("Handler setup!");
|
|
271
|
+
* }
|
|
272
|
+
* }
|
|
273
|
+
*
|
|
274
|
+
* const handler = new MyHandler("INFO");
|
|
275
|
+
* handler.setup(); // Prints "Handler setup!"
|
|
276
|
+
*
|
|
277
|
+
* assertInstanceOf(handler, BaseHandler);
|
|
278
|
+
* ```
|
|
279
|
+
*/
|
|
280
|
+
setup() { }
|
|
281
|
+
/**
|
|
282
|
+
* Destroys the handler, performing any cleanup that is required.
|
|
283
|
+
*
|
|
284
|
+
* This method is called when the handler is removed from a logger. It can be
|
|
285
|
+
* used to perform any cleanup that is required by the handler.
|
|
286
|
+
*
|
|
287
|
+
* @example Usage
|
|
288
|
+
* ```ts
|
|
289
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
290
|
+
* import { assertInstanceOf } from "@std/assert/instance-of";
|
|
291
|
+
*
|
|
292
|
+
* class MyHandler extends BaseHandler {
|
|
293
|
+
* log(msg: string) {
|
|
294
|
+
* console.log(msg);
|
|
295
|
+
* }
|
|
296
|
+
*
|
|
297
|
+
* override destroy() {
|
|
298
|
+
* console.log("Handler destroyed!");
|
|
299
|
+
* }
|
|
300
|
+
* }
|
|
301
|
+
*
|
|
302
|
+
* const handler = new MyHandler("INFO");
|
|
303
|
+
* handler.destroy(); // Prints "Handler destroyed!"
|
|
304
|
+
* assertInstanceOf(handler, BaseHandler);
|
|
305
|
+
* ```
|
|
306
|
+
*/
|
|
307
|
+
destroy() { }
|
|
308
|
+
/**
|
|
309
|
+
* Automatically disposes of the handler when instantiated with the `using`
|
|
310
|
+
* keyword by calling the {@linkcode BaseHandler.destroy} method.
|
|
311
|
+
*
|
|
312
|
+
* @example Usage
|
|
313
|
+
* ```ts
|
|
314
|
+
* import { BaseHandler } from "@std/log/base-handler";
|
|
315
|
+
* import { LogRecord } from "@std/log/logger";
|
|
316
|
+
* import { assertInstanceOf } from "@std/assert/instance-of";
|
|
317
|
+
*
|
|
318
|
+
* class MyHandler extends BaseHandler {
|
|
319
|
+
* log(msg: string) {
|
|
320
|
+
* console.log(msg);
|
|
321
|
+
* }
|
|
322
|
+
* }
|
|
323
|
+
*
|
|
324
|
+
* using handler = new MyHandler("INFO");
|
|
325
|
+
* assertInstanceOf(handler, BaseHandler);
|
|
326
|
+
* ```
|
|
327
|
+
*/
|
|
328
|
+
[(_BaseHandler_levelName = new WeakMap(), _BaseHandler_level = new WeakMap(), Symbol.dispose)]() {
|
|
329
|
+
this.destroy();
|
|
330
|
+
}
|
|
331
|
+
}
|