@socketsecurity/lib 6.0.3 → 6.0.5
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/CHANGELOG.md +22 -0
- package/dist/_virtual/_rolldown/runtime.js +45 -0
- package/dist/abort/signal.js +53 -59
- package/dist/ai/discover.js +110 -110
- package/dist/ai/profiles.js +94 -65
- package/dist/ai/spawn.js +172 -194
- package/dist/ai/types.js +1 -17
- package/dist/ai/worktree.js +160 -183
- package/dist/ansi/constants.js +16 -38
- package/dist/ansi/strip.js +44 -41
- package/dist/archives/_internal.js +64 -73
- package/dist/archives/detect.js +30 -43
- package/dist/archives/extract.js +43 -50
- package/dist/archives/tar.js +197 -228
- package/dist/archives/types.js +1 -17
- package/dist/archives/zip.js +85 -121
- package/dist/argv/flag-predicates.js +203 -101
- package/dist/argv/flag-types.js +96 -113
- package/dist/argv/parse-args-string.d.ts +16 -14
- package/dist/argv/parse-args-string.js +42 -39
- package/dist/argv/parse.js +145 -163
- package/dist/arrays/_internal.js +65 -48
- package/dist/arrays/chunk.js +51 -40
- package/dist/arrays/join.js +87 -35
- package/dist/arrays/predicates.js +46 -28
- package/dist/arrays/unique.js +45 -31
- package/dist/bin/_internal.js +34 -42
- package/dist/bin/check-primordials.js +175 -233
- package/dist/bin/check.js +51 -72
- package/dist/bin/exec.js +70 -74
- package/dist/bin/find.js +151 -134
- package/dist/bin/resolve.js +180 -246
- package/dist/bin/shadow.js +24 -33
- package/dist/bin/socket-lib.js +51 -73
- package/dist/bin/types.js +1 -17
- package/dist/bin/which.js +211 -146
- package/dist/cacache/_internal.js +25 -40
- package/dist/cacache/clear.js +79 -72
- package/dist/cacache/read.js +48 -46
- package/dist/cacache/tmp.js +29 -36
- package/dist/cacache/types.js +1 -17
- package/dist/cacache/write.js +43 -48
- package/dist/cache/ttl/store.js +232 -288
- package/dist/cache/ttl/types.js +1 -17
- package/dist/checks/primordials-defaults.js +83 -89
- package/dist/checks/primordials.js +225 -277
- package/dist/colors/convert.js +45 -37
- package/dist/colors/palette.js +88 -45
- package/dist/colors/socket-palette.js +74 -84
- package/dist/colors/types.js +1 -17
- package/dist/compression/_internal.js +57 -72
- package/dist/compression/brotli.js +94 -127
- package/dist/compression/gzip.js +95 -121
- package/dist/compression/types.js +1 -17
- package/dist/constants/agents.js +61 -113
- package/dist/constants/encoding.js +19 -42
- package/dist/constants/github.js +12 -30
- package/dist/constants/licenses.js +48 -63
- package/dist/constants/lifecycle-script-names.js +31 -45
- package/dist/constants/maintained-node-versions.js +22 -37
- package/dist/constants/node.js +226 -167
- package/dist/constants/package-default-node-range.js +16 -41
- package/dist/constants/package-default-socket-categories.js +12 -30
- package/dist/constants/packages.js +77 -126
- package/dist/constants/platform.js +27 -49
- package/dist/constants/sentinels.js +23 -48
- package/dist/constants/socket.js +42 -87
- package/dist/constants/testing.js +15 -34
- package/dist/constants/time.js +16 -36
- package/dist/constants/typescript.js +32 -52
- package/dist/cover/code.js +111 -142
- package/dist/cover/formatters.js +118 -101
- package/dist/cover/type.js +50 -76
- package/dist/cover/types.js +1 -17
- package/dist/crypto/hash.js +54 -46
- package/dist/debug/_internal.js +62 -71
- package/dist/debug/caller-info.js +53 -64
- package/dist/debug/namespace.js +80 -90
- package/dist/debug/output.js +172 -188
- package/dist/debug/types.js +1 -17
- package/dist/dlx/_internal.js +24 -43
- package/dist/dlx/arborist.js +162 -160
- package/dist/dlx/binary-cache.js +228 -200
- package/dist/dlx/binary-download.js +172 -211
- package/dist/dlx/binary-resolution.js +165 -157
- package/dist/dlx/binary-types.js +1 -17
- package/dist/dlx/binary.js +149 -189
- package/dist/dlx/cache.js +45 -30
- package/dist/dlx/detect.js +245 -159
- package/dist/dlx/dir.js +67 -51
- package/dist/dlx/firewall.js +62 -100
- package/dist/dlx/lockfile.js +122 -127
- package/dist/dlx/manifest.js +264 -274
- package/dist/dlx/package.js +241 -244
- package/dist/dlx/packages.js +99 -96
- package/dist/dlx/paths.js +73 -59
- package/dist/dlx/spec.js +52 -60
- package/dist/dlx/types.js +1 -17
- package/dist/eco/cargo/lockfile-format.js +19 -36
- package/dist/eco/cargo/manifest-format.js +17 -35
- package/dist/eco/cargo/parse-lockfile.js +210 -237
- package/dist/eco/manifest/analyze-lockfile.js +46 -63
- package/dist/eco/manifest/detect-format.js +66 -90
- package/dist/eco/manifest/find-packages.js +39 -64
- package/dist/eco/manifest/get-package-versions.js +27 -48
- package/dist/eco/manifest/get-package.js +21 -40
- package/dist/eco/manifest/manifest-error.js +14 -35
- package/dist/eco/manifest/parse-lockfile.js +40 -86
- package/dist/eco/manifest/parse-manifest.js +26 -43
- package/dist/eco/manifest/parse.js +26 -47
- package/dist/eco/manifest/types.js +1 -17
- package/dist/eco/npm/bun/exec.js +23 -32
- package/dist/eco/npm/manifest-format.js +21 -35
- package/dist/eco/npm/npm/exec.js +51 -61
- package/dist/eco/npm/npm/extract-package-name-from-path.js +28 -50
- package/dist/eco/npm/npm/flags.js +80 -52
- package/dist/eco/npm/npm/lockfile-format.js +21 -40
- package/dist/eco/npm/npm/parse-git-url.js +26 -40
- package/dist/eco/npm/npm/parse-lockfile.js +184 -210
- package/dist/eco/npm/parse-package-json.js +71 -102
- package/dist/eco/npm/pnpm/detect-pnpm-version.js +22 -43
- package/dist/eco/npm/pnpm/exec.js +51 -62
- package/dist/eco/npm/pnpm/flags.js +75 -68
- package/dist/eco/npm/pnpm/lockfile-format.js +19 -36
- package/dist/eco/npm/pnpm/parse-lockfile.js +235 -259
- package/dist/eco/npm/pnpm/parse-pnpm-package-id-v5.js +37 -47
- package/dist/eco/npm/pnpm/parse-pnpm-package-id-v6-v9.js +36 -49
- package/dist/eco/npm/script.js +82 -90
- package/dist/eco/npm/vlt/exec.js +24 -32
- package/dist/eco/npm/yarnpkg/yarn/exec.js +60 -59
- package/dist/eco/npm/yarnpkg/yarn/lockfile-format.js +20 -36
- package/dist/eco/npm/yarnpkg/yarn/parse-lockfile.js +194 -242
- package/dist/eco/npm/yarnpkg/yarn/parse-yarn-descriptor.js +37 -61
- package/dist/eco/purl.js +50 -60
- package/dist/eco/types.js +1 -17
- package/dist/effects/pulse-frames.js +64 -65
- package/dist/effects/shimmer-keyframes.js +71 -52
- package/dist/effects/shimmer-terminal.js +81 -50
- package/dist/effects/shimmer.js +290 -153
- package/dist/env/boolean.js +42 -43
- package/dist/env/case-insensitive.js +54 -39
- package/dist/env/ci.js +29 -31
- package/dist/env/debug.js +28 -31
- package/dist/env/github.js +144 -59
- package/dist/env/home.js +38 -31
- package/dist/env/locale.js +59 -39
- package/dist/env/node-auth-token.js +28 -31
- package/dist/env/node-env.js +28 -31
- package/dist/env/npm.js +94 -47
- package/dist/env/number.js +50 -51
- package/dist/env/package-manager.js +95 -83
- package/dist/env/path.js +28 -31
- package/dist/env/pre-commit.js +30 -32
- package/dist/env/proxy.js +121 -122
- package/dist/env/rewire.js +204 -96
- package/dist/env/shell.js +28 -31
- package/dist/env/socket-cli.js +233 -81
- package/dist/env/socket.js +521 -156
- package/dist/env/string.js +43 -44
- package/dist/env/temp-dir.js +59 -39
- package/dist/env/term.js +28 -31
- package/dist/env/test.js +65 -43
- package/dist/env/types.js +1 -17
- package/dist/env/windows.js +78 -43
- package/dist/env/xdg.js +62 -39
- package/dist/errors/message.js +40 -46
- package/dist/errors/predicates.js +61 -49
- package/dist/errors/stack.js +24 -36
- package/dist/events/exit/_internal.js +86 -103
- package/dist/events/exit/handler.js +48 -55
- package/dist/events/exit/intercept.js +49 -70
- package/dist/events/exit/lifecycle.js +92 -101
- package/dist/events/exit/signals.js +25 -31
- package/dist/events/exit/types.js +1 -17
- package/dist/events/warning/handler.js +43 -40
- package/dist/events/warning/suppress.js +111 -90
- package/dist/external/@npmcli/package-json/lib/read-package.js +132 -153
- package/dist/external/@npmcli/package-json/lib/sort.js +73 -105
- package/dist/external/@npmcli/package-json.js +12705 -15140
- package/dist/external/@npmcli/promise-spawn.js +451 -472
- package/dist/external/@sinclair/typebox/value.js +7443 -9002
- package/dist/external/@sinclair/typebox.js +7516 -7885
- package/dist/external/@socketregistry/is-unicode-supported.js +31 -39
- package/dist/external/@socketregistry/packageurl-js.js +6127 -7369
- package/dist/external/@socketregistry/yocto-spinner.js +394 -455
- package/dist/external/@yarnpkg/extensions.js +435 -1022
- package/dist/external/adm-zip.js +2313 -2673
- package/dist/external/debug.js +700 -687
- package/dist/external/external-pack.js +2658 -3171
- package/dist/external/fast-sort.js +124 -138
- package/dist/external/get-east-asian-width.js +70 -64
- package/dist/external/libnpmexec.js +28 -31
- package/dist/external/npm-pack.js +43617 -50137
- package/dist/external/p-map.js +198 -222
- package/dist/external/pico-pack.js +6735 -7304
- package/dist/external/pony-cause.js +143 -139
- package/dist/external/shell-quote.js +226 -0
- package/dist/external/spdx-pack.js +1283 -1403
- package/dist/external/streaming-iterables.js +835 -1052
- package/dist/external/tar-fs.js +2769 -3048
- package/dist/external/which.js +267 -251
- package/dist/external/yargs-parser.js +851 -1074
- package/dist/external-tools/bazel/asset-names.js +98 -90
- package/dist/external-tools/bazel/from-download.js +52 -46
- package/dist/external-tools/bazel/from-path.js +27 -38
- package/dist/external-tools/bazel/read-bazel-version-file.js +35 -57
- package/dist/external-tools/bazel/resolve-asset-url.js +24 -39
- package/dist/external-tools/bazel/resolve-bazel-version.js +34 -56
- package/dist/external-tools/bazel/resolve.js +44 -58
- package/dist/external-tools/bazel/types.js +1 -17
- package/dist/external-tools/cdxgen/asset-names.js +59 -66
- package/dist/external-tools/cdxgen/from-download.js +52 -80
- package/dist/external-tools/cdxgen/from-path.js +19 -37
- package/dist/external-tools/cdxgen/from-vfs.js +22 -43
- package/dist/external-tools/cdxgen/resolve.js +48 -63
- package/dist/external-tools/cdxgen/types.js +1 -17
- package/dist/external-tools/from-download.js +107 -67
- package/dist/external-tools/janus/asset-names.js +44 -51
- package/dist/external-tools/janus/from-download.js +45 -70
- package/dist/external-tools/janus/from-path.js +19 -37
- package/dist/external-tools/janus/from-vfs.js +22 -43
- package/dist/external-tools/janus/resolve.js +45 -63
- package/dist/external-tools/janus/types.js +1 -17
- package/dist/external-tools/jre/asset-names.js +109 -82
- package/dist/external-tools/jre/detect-platform-arch.js +25 -49
- package/dist/external-tools/jre/from-download.js +71 -67
- package/dist/external-tools/jre/from-java-home.js +27 -54
- package/dist/external-tools/jre/from-path.js +27 -49
- package/dist/external-tools/jre/from-vfs.js +39 -60
- package/dist/external-tools/jre/resolve.js +55 -68
- package/dist/external-tools/jre/types.js +1 -17
- package/dist/external-tools/manifest.js +130 -150
- package/dist/external-tools/opengrep/asset-names.js +60 -72
- package/dist/external-tools/opengrep/from-download.js +58 -80
- package/dist/external-tools/opengrep/from-path.js +19 -37
- package/dist/external-tools/opengrep/from-vfs.js +23 -43
- package/dist/external-tools/opengrep/resolve.js +43 -63
- package/dist/external-tools/opengrep/types.js +1 -17
- package/dist/external-tools/sbt/asset-names.js +21 -30
- package/dist/external-tools/sbt/from-download.js +50 -61
- package/dist/external-tools/sbt/from-path.js +23 -38
- package/dist/external-tools/sbt/from-vfs.js +30 -44
- package/dist/external-tools/sbt/resolve.js +45 -63
- package/dist/external-tools/sbt/types.js +1 -17
- package/dist/external-tools/synp/asset-names.js +11 -29
- package/dist/external-tools/synp/from-download.js +24 -41
- package/dist/external-tools/synp/from-path.js +19 -37
- package/dist/external-tools/synp/from-vfs.js +22 -43
- package/dist/external-tools/synp/resolve.js +43 -62
- package/dist/external-tools/synp/types.js +1 -17
- package/dist/external-tools/trivy/asset-names.js +51 -62
- package/dist/external-tools/trivy/from-download.js +42 -64
- package/dist/external-tools/trivy/from-path.js +19 -37
- package/dist/external-tools/trivy/from-vfs.js +22 -43
- package/dist/external-tools/trivy/resolve.js +43 -63
- package/dist/external-tools/trivy/types.js +1 -17
- package/dist/external-tools/trufflehog/asset-names.js +54 -66
- package/dist/external-tools/trufflehog/from-download.js +44 -62
- package/dist/external-tools/trufflehog/from-path.js +21 -37
- package/dist/external-tools/trufflehog/from-vfs.js +26 -43
- package/dist/external-tools/trufflehog/resolve.js +43 -63
- package/dist/external-tools/trufflehog/types.js +1 -17
- package/dist/external-tools/uv/asset-names.js +64 -74
- package/dist/external-tools/uv/from-download.js +44 -65
- package/dist/external-tools/uv/from-path.js +19 -37
- package/dist/external-tools/uv/from-vfs.js +22 -43
- package/dist/external-tools/uv/resolve.js +42 -63
- package/dist/external-tools/uv/types.js +1 -17
- package/dist/fs/_internal.js +40 -42
- package/dist/fs/access.js +57 -54
- package/dist/fs/encoding.js +80 -97
- package/dist/fs/find-up.js +126 -125
- package/dist/fs/inspect.js +168 -99
- package/dist/fs/path-cache.js +31 -32
- package/dist/fs/read-dir.js +102 -79
- package/dist/fs/read-file.js +177 -118
- package/dist/fs/read-json-cache.js +150 -134
- package/dist/fs/read-json.js +172 -187
- package/dist/fs/resolve-module.js +35 -58
- package/dist/fs/safe.js +278 -169
- package/dist/fs/types.js +1 -17
- package/dist/fs/unique.js +52 -48
- package/dist/fs/validate.js +56 -40
- package/dist/fs/write-json.js +109 -75
- package/dist/git/_internal.js +251 -216
- package/dist/git/changed.js +191 -74
- package/dist/git/repo.js +118 -104
- package/dist/git/staged.js +172 -62
- package/dist/git/types.js +1 -17
- package/dist/git/unstaged.js +175 -62
- package/dist/github/constants.js +25 -33
- package/dist/github/errors.js +46 -38
- package/dist/github/fetch.js +137 -82
- package/dist/github/ghsa.js +217 -151
- package/dist/github/refs-cache.js +54 -43
- package/dist/github/refs-graphql.js +97 -89
- package/dist/github/refs-rest.js +70 -101
- package/dist/github/refs.js +105 -64
- package/dist/github/token.js +96 -48
- package/dist/github/types.js +1 -17
- package/dist/globs/_internal.js +73 -82
- package/dist/globs/defaults.js +40 -59
- package/dist/globs/match.js +93 -77
- package/dist/globs/matcher.js +104 -92
- package/dist/globs/stream.js +43 -55
- package/dist/globs/types.js +1 -17
- package/dist/http-request/_internal.js +11 -38
- package/dist/http-request/browser-fetch.js +19 -29
- package/dist/http-request/browser.js +188 -206
- package/dist/http-request/checksums.js +101 -65
- package/dist/http-request/download-types.js +1 -17
- package/dist/http-request/download.js +195 -196
- package/dist/http-request/errors.js +39 -47
- package/dist/http-request/headers.js +95 -80
- package/dist/http-request/http-request.js +10 -35
- package/dist/http-request/node.js +71 -97
- package/dist/http-request/request-attempt.js +232 -285
- package/dist/http-request/request-types.js +1 -17
- package/dist/http-request/request.js +106 -108
- package/dist/http-request/response-reader.js +47 -51
- package/dist/http-request/response-types.js +22 -38
- package/dist/http-request/user-agent.js +73 -55
- package/dist/integrity.js +105 -106
- package/dist/ipc/_internal.js +34 -48
- package/dist/ipc/directory.js +55 -63
- package/dist/ipc/paths.js +52 -45
- package/dist/ipc/types.js +1 -17
- package/dist/ipc/write.js +81 -74
- package/dist/ipc-cli/get.js +29 -56
- package/dist/ipc-cli/types.js +1 -17
- package/dist/json/edit.js +182 -242
- package/dist/json/format.js +202 -103
- package/dist/json/parse.js +206 -109
- package/dist/json/types.js +1 -17
- package/dist/links/create.js +93 -60
- package/dist/links/types.js +1 -17
- package/dist/logger/_internal.js +109 -73
- package/dist/logger/browser.js +45 -56
- package/dist/logger/colors.js +31 -49
- package/dist/logger/console.js +89 -112
- package/dist/logger/default.js +19 -33
- package/dist/logger/logger.js +5 -29
- package/dist/logger/node.js +793 -854
- package/dist/logger/symbols-builder.js +54 -56
- package/dist/logger/symbols.js +135 -118
- package/dist/logger/types.js +1 -17
- package/dist/memo/_internal.js +39 -49
- package/dist/memo/async.js +133 -117
- package/dist/memo/clear.js +25 -34
- package/dist/memo/decorator.js +43 -37
- package/dist/memo/memoize.js +97 -88
- package/dist/memo/once.js +42 -41
- package/dist/memo/types.js +1 -17
- package/dist/memo/weak.js +45 -41
- package/dist/node/async-hooks.js +9 -30
- package/dist/node/child-process.js +9 -30
- package/dist/node/crypto.js +9 -30
- package/dist/node/events.js +9 -30
- package/dist/node/fs-promises.js +9 -30
- package/dist/node/fs.js +9 -30
- package/dist/node/http.js +9 -30
- package/dist/node/https.js +9 -30
- package/dist/node/module.js +20 -34
- package/dist/node/os.js +9 -30
- package/dist/node/path.js +9 -30
- package/dist/node/timers-promises.js +9 -30
- package/dist/node/url.js +9 -30
- package/dist/node/util.js +9 -30
- package/dist/objects/getters.js +185 -126
- package/dist/objects/inspect.js +85 -52
- package/dist/objects/mutate.js +96 -76
- package/dist/objects/predicates.js +112 -59
- package/dist/objects/sort.js +120 -76
- package/dist/objects/types.js +1 -17
- package/dist/packages/edit-class.js +198 -265
- package/dist/packages/edit.js +79 -86
- package/dist/packages/exports.js +146 -157
- package/dist/packages/isolation.js +159 -209
- package/dist/packages/licenses.js +207 -189
- package/dist/packages/manifest.js +134 -172
- package/dist/packages/normalize.js +91 -102
- package/dist/packages/operations.d.ts +2 -0
- package/dist/packages/operations.js +283 -254
- package/dist/packages/provenance.js +195 -245
- package/dist/packages/specs.js +94 -84
- package/dist/packages/types.js +1 -17
- package/dist/packages/validation.js +49 -50
- package/dist/paths/_internal.js +82 -86
- package/dist/paths/conversion.js +112 -65
- package/dist/paths/dirnames.js +17 -42
- package/dist/paths/exts.js +23 -54
- package/dist/paths/filenames.js +21 -50
- package/dist/paths/globs.js +15 -38
- package/dist/paths/normalize.js +215 -236
- package/dist/paths/packages.js +34 -49
- package/dist/paths/predicates.js +184 -106
- package/dist/paths/resolve.js +146 -128
- package/dist/paths/rewire.js +108 -72
- package/dist/paths/socket.js +252 -132
- package/dist/paths/walk.js +55 -60
- package/dist/perf/_internal.js +10 -28
- package/dist/perf/enabled.js +21 -30
- package/dist/perf/metrics.js +81 -67
- package/dist/perf/report.js +79 -80
- package/dist/perf/timer.js +180 -126
- package/dist/perf/types.js +1 -17
- package/dist/pkg-ext/data.js +29 -82
- package/dist/pkg-ext/types.js +1 -17
- package/dist/primordials/array.js +120 -198
- package/dist/primordials/buffer.js +28 -51
- package/dist/primordials/date.js +26 -51
- package/dist/primordials/error.js +33 -59
- package/dist/primordials/function.js +21 -41
- package/dist/primordials/globals.js +25 -48
- package/dist/primordials/json.js +14 -30
- package/dist/primordials/map-set.js +88 -152
- package/dist/primordials/math.js +59 -116
- package/dist/primordials/number.js +41 -76
- package/dist/primordials/object.js +56 -116
- package/dist/primordials/promise.js +28 -52
- package/dist/primordials/reflect.js +24 -52
- package/dist/primordials/regexp.js +25 -47
- package/dist/primordials/string.js +114 -167
- package/dist/primordials/symbol.js +40 -72
- package/dist/primordials/uncurry.js +38 -55
- package/dist/primordials/url.js +27 -66
- package/dist/process/_internal.js +7 -32
- package/dist/process/abort.js +29 -35
- package/dist/process/lock-instance.js +26 -30
- package/dist/process/lock-manager.js +279 -307
- package/dist/process/lock-types.js +1 -17
- package/dist/process/spawn/_internal.js +43 -55
- package/dist/process/spawn/child.js +172 -211
- package/dist/process/spawn/errors.js +116 -113
- package/dist/process/spawn/stdio.js +51 -35
- package/dist/process/spawn/types.js +1 -17
- package/dist/process/transient.js +49 -66
- package/dist/promises/_internal.js +31 -34
- package/dist/promises/iterate.js +238 -102
- package/dist/promises/options.js +123 -101
- package/dist/promises/queue.js +115 -136
- package/dist/promises/resolvers.js +77 -46
- package/dist/promises/retry.js +156 -101
- package/dist/promises/types.js +1 -17
- package/dist/regexps/escape.js +32 -30
- package/dist/regexps/hex.js +16 -33
- package/dist/regexps/spec.js +53 -81
- package/dist/releases/github-archives.js +127 -118
- package/dist/releases/github-asset-url.js +162 -146
- package/dist/releases/github-assets.js +37 -49
- package/dist/releases/github-auth.js +32 -48
- package/dist/releases/github-downloads.js +118 -138
- package/dist/releases/github-listing.js +175 -145
- package/dist/releases/github-retry-config.js +41 -47
- package/dist/releases/github-types.js +1 -17
- package/dist/releases/socket-btm.js +273 -192
- package/dist/schema/parse.js +35 -36
- package/dist/schema/types.js +1 -17
- package/dist/schema/validate.js +118 -99
- package/dist/sea/detect.js +57 -52
- package/dist/secrets/_internal.js +86 -67
- package/dist/secrets/find.js +96 -77
- package/dist/secrets/keychain.js +315 -309
- package/dist/secrets/linux.js +133 -135
- package/dist/secrets/macos.js +151 -147
- package/dist/secrets/rc.js +182 -181
- package/dist/secrets/socket-api-token.js +28 -43
- package/dist/secrets/types.js +1 -17
- package/dist/secrets/windows.js +184 -242
- package/dist/shadow/skip.js +51 -70
- package/dist/shadow/types.js +1 -17
- package/dist/shell/parse.d.ts +26 -0
- package/dist/shell/parse.js +35 -0
- package/dist/shell/quote.d.ts +19 -0
- package/dist/shell/quote.js +30 -0
- package/dist/smol/detect.js +67 -43
- package/dist/smol/http.js +33 -37
- package/dist/smol/https.js +31 -37
- package/dist/smol/manifest.js +33 -37
- package/dist/smol/path.js +33 -37
- package/dist/smol/primordial.js +35 -37
- package/dist/smol/purl.js +34 -37
- package/dist/smol/versions.js +31 -37
- package/dist/smol/vfs.js +46 -38
- package/dist/sorts/_internal.js +14 -40
- package/dist/sorts/natural.js +57 -64
- package/dist/sorts/semver.js +33 -43
- package/dist/sorts/strings.js +24 -30
- package/dist/sorts/types.js +1 -17
- package/dist/spinner/default.js +72 -63
- package/dist/spinner/format.js +86 -71
- package/dist/spinner/spinner.js +749 -797
- package/dist/spinner/types.js +1 -17
- package/dist/spinner/with.js +193 -137
- package/dist/ssri/convert.js +64 -47
- package/dist/ssri/parse.js +38 -37
- package/dist/ssri/validate.js +51 -34
- package/dist/stdio/_internal.js +50 -46
- package/dist/stdio/clear.js +208 -86
- package/dist/stdio/divider.js +170 -97
- package/dist/stdio/footer.js +116 -110
- package/dist/stdio/header.js +117 -90
- package/dist/stdio/progress.js +189 -218
- package/dist/stdio/prompts.js +244 -168
- package/dist/stdio/stderr.js +173 -78
- package/dist/stdio/stdout.js +177 -94
- package/dist/streams/parallel.js +58 -50
- package/dist/streams/transform.js +36 -45
- package/dist/strings/format.js +145 -63
- package/dist/strings/predicates.js +56 -34
- package/dist/strings/search.js +52 -42
- package/dist/strings/transform.js +113 -72
- package/dist/strings/types.js +1 -17
- package/dist/strings/width.js +89 -82
- package/dist/tables/bordered.js +81 -81
- package/dist/tables/padding.js +36 -46
- package/dist/tables/simple.js +62 -70
- package/dist/tables/types.js +1 -17
- package/dist/temporal/instant.js +72 -81
- package/dist/temporal/now.js +40 -31
- package/dist/temporal/slots.js +42 -36
- package/dist/temporal/system.js +36 -36
- package/dist/temporal/temporal.js +11 -41
- package/dist/themes/context.js +131 -69
- package/dist/themes/resolve.js +207 -132
- package/dist/themes/themes.js +225 -194
- package/dist/themes/types.js +1 -17
- package/dist/url/parse.js +48 -51
- package/dist/url/predicates.js +24 -31
- package/dist/url/search-params.js +133 -101
- package/dist/url/types.js +1 -17
- package/dist/versions/_internal.js +31 -33
- package/dist/versions/compare.js +80 -58
- package/dist/versions/modify.js +41 -39
- package/dist/versions/parse.js +88 -64
- package/dist/versions/range.js +58 -41
- package/dist/versions/types.js +1 -17
- package/dist/words/article.js +22 -30
- package/dist/words/capitalize.js +25 -34
- package/dist/words/pluralize.js +23 -31
- package/dist/words/types.js +1 -17
- package/package.json +17 -5
package/dist/external/debug.js
CHANGED
|
@@ -1,4 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
/**
|
|
3
|
+
* Bundled from debug
|
|
4
|
+
* This is a zero-dependency bundle created by rolldown.
|
|
5
|
+
*/
|
|
6
|
+
'use strict';
|
|
7
|
+
|
|
8
|
+
//#region \0rolldown/runtime.js
|
|
9
|
+
var __create = Object.create;
|
|
10
|
+
var __defProp = Object.defineProperty;
|
|
11
|
+
var __name = (target, value) => __defProp(target, "name", {
|
|
12
|
+
value,
|
|
13
|
+
configurable: true
|
|
14
|
+
});
|
|
15
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
16
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
17
|
+
var __getProtoOf = Object.getPrototypeOf;
|
|
18
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
19
|
+
var __esmMin = (fn, res) => () => (fn && (res = fn(fn = 0)), res);
|
|
20
|
+
var __commonJSMin = (cb, mod) => () => (mod || (cb((mod = { exports: {} }).exports, mod), cb = null), mod.exports);
|
|
21
|
+
var __exportAll = (all, no_symbols) => {
|
|
22
|
+
let target = {};
|
|
23
|
+
for (var name in all) {
|
|
24
|
+
__defProp(target, name, {
|
|
25
|
+
get: all[name],
|
|
26
|
+
enumerable: true
|
|
27
|
+
});
|
|
28
|
+
}
|
|
29
|
+
if (!no_symbols) {
|
|
30
|
+
__defProp(target, Symbol.toStringTag, { value: "Module" });
|
|
31
|
+
}
|
|
32
|
+
return target;
|
|
33
|
+
};
|
|
34
|
+
var __copyProps = (to, from, except, desc) => {
|
|
35
|
+
if (from && typeof from === "object" || typeof from === "function") {
|
|
36
|
+
for (var keys = __getOwnPropNames(from), i = 0, n = keys.length, key; i < n; i++) {
|
|
37
|
+
key = keys[i];
|
|
38
|
+
if (!__hasOwnProp.call(to, key) && key !== except) {
|
|
39
|
+
__defProp(to, key, {
|
|
40
|
+
get: ((k) => from[k]).bind(null, key),
|
|
41
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
42
|
+
});
|
|
43
|
+
}
|
|
44
|
+
}
|
|
45
|
+
}
|
|
46
|
+
return to;
|
|
47
|
+
};
|
|
48
|
+
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", {
|
|
49
|
+
value: mod,
|
|
50
|
+
enumerable: true
|
|
51
|
+
}) : target, mod));
|
|
52
|
+
var __toCommonJS = (mod) => __hasOwnProp.call(mod, "module.exports") ? mod["module.exports"] : __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
53
|
+
|
|
54
|
+
//#endregion
|
|
55
|
+
let node_process = require("node:process");
|
|
56
|
+
node_process = __toESM(node_process, 1);
|
|
57
|
+
let node_os = require("node:os");
|
|
58
|
+
node_os = __toESM(node_os, 1);
|
|
59
|
+
let node_tty = require("node:tty");
|
|
1
60
|
const { ArrayPrototypeUnshift: _p_ArrayPrototypeUnshift } = require('../primordials/array.js')
|
|
61
|
+
|
|
2
62
|
const { DateCtor: _p_DateCtor } = require('../primordials/date.js')
|
|
3
63
|
|
|
4
64
|
const { ErrorCtor: _p_ErrorCtor } = require('../primordials/error.js')
|
|
@@ -13,708 +73,661 @@ const { ObjectDefineProperty: _p_ObjectDefineProperty, ObjectKeys: _p_ObjectKeys
|
|
|
13
73
|
|
|
14
74
|
const { StringPrototypeCharCodeAt: _p_StringPrototypeCharCodeAt, StringPrototypeStartsWith: _p_StringPrototypeStartsWith, StringPrototypeSubstring: _p_StringPrototypeSubstring } = require('../primordials/string.js')
|
|
15
75
|
|
|
16
|
-
|
|
17
|
-
/**
|
|
18
|
-
* Bundled from debug
|
|
19
|
-
* This is a zero-dependency bundle created by esbuild.
|
|
20
|
-
*/
|
|
21
|
-
"use strict";
|
|
22
|
-
var __create = Object.create;
|
|
23
|
-
var __defProp = Object.defineProperty;
|
|
24
|
-
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
25
|
-
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
26
|
-
var __getProtoOf = Object.getPrototypeOf;
|
|
27
|
-
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
28
|
-
var __name = (target, value) => __defProp(target, "name", { value, configurable: true });
|
|
29
|
-
var __esm = (fn, res) => function __init() {
|
|
30
|
-
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
31
|
-
};
|
|
32
|
-
var __commonJS = (cb, mod) => function __require() {
|
|
33
|
-
return mod || (0, cb[__getOwnPropNames(cb)[0]])((mod = { exports: {} }).exports, mod), mod.exports;
|
|
34
|
-
};
|
|
35
|
-
var __export = (target, all) => {
|
|
36
|
-
for (var name in all)
|
|
37
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
38
|
-
};
|
|
39
|
-
var __copyProps = (to, from, except, desc) => {
|
|
40
|
-
if (from && typeof from === "object" || typeof from === "function") {
|
|
41
|
-
for (let key of __getOwnPropNames(from))
|
|
42
|
-
if (!__hasOwnProp.call(to, key) && key !== except)
|
|
43
|
-
__defProp(to, key, { get: () => from[key], enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable });
|
|
44
|
-
}
|
|
45
|
-
return to;
|
|
46
|
-
};
|
|
47
|
-
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
48
|
-
// If the importer is in node compatibility mode or this is not an ESM
|
|
49
|
-
// file that has been converted to a CommonJS file using a Babel-
|
|
50
|
-
// compatible transform (i.e. "__esModule" has not been set), then set
|
|
51
|
-
// "default" to the CommonJS "module.exports" for node compatibility.
|
|
52
|
-
isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
|
|
53
|
-
mod
|
|
54
|
-
));
|
|
55
|
-
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
76
|
+
node_tty = __toESM(node_tty, 1);
|
|
56
77
|
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
}
|
|
78
|
+
//#region \0stub:empty.cjs
|
|
79
|
+
/**
|
|
80
|
+
* Empty stub - provides no functionality. Used for dependencies that are never
|
|
81
|
+
* actually called in our code paths.
|
|
82
|
+
*/
|
|
83
|
+
var require__stub_empty = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
84
|
+
module.exports = {};
|
|
85
|
+
}));
|
|
64
86
|
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
87
|
+
//#endregion
|
|
88
|
+
//#region node_modules/.pnpm/supports-color@10.2.2/node_modules/supports-color/index.js
|
|
89
|
+
var supports_color_exports = /* @__PURE__ */ __exportAll({
|
|
90
|
+
createSupportsColor: () => createSupportsColor,
|
|
91
|
+
default: () => supportsColor
|
|
70
92
|
});
|
|
71
|
-
function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args :
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
93
|
+
function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args : node_process.default.argv) {
|
|
94
|
+
const prefix = _p_StringPrototypeStartsWith(flag, "-") ? "" : flag.length === 1 ? "-" : "--";
|
|
95
|
+
const position = argv.indexOf(prefix + flag);
|
|
96
|
+
const terminatorPosition = argv.indexOf("--");
|
|
97
|
+
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
76
98
|
}
|
|
77
99
|
function envForceColor() {
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
const level = _p_MathMin(_p_NumberParseInt(env.FORCE_COLOR, 10), 3);
|
|
91
|
-
if (![0, 1, 2, 3].includes(level)) {
|
|
92
|
-
return;
|
|
93
|
-
}
|
|
94
|
-
return level;
|
|
100
|
+
if (!("FORCE_COLOR" in env)) return;
|
|
101
|
+
if (env.FORCE_COLOR === "true") return 1;
|
|
102
|
+
if (env.FORCE_COLOR === "false") return 0;
|
|
103
|
+
if (env.FORCE_COLOR.length === 0) return 1;
|
|
104
|
+
const level = _p_MathMin(_p_NumberParseInt(env.FORCE_COLOR, 10), 3);
|
|
105
|
+
if (![
|
|
106
|
+
0,
|
|
107
|
+
1,
|
|
108
|
+
2,
|
|
109
|
+
3
|
|
110
|
+
].includes(level)) return;
|
|
111
|
+
return level;
|
|
95
112
|
}
|
|
96
113
|
function translateLevel(level) {
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
has16m: level >= 3
|
|
105
|
-
};
|
|
114
|
+
if (level === 0) return false;
|
|
115
|
+
return {
|
|
116
|
+
level,
|
|
117
|
+
hasBasic: true,
|
|
118
|
+
has256: level >= 2,
|
|
119
|
+
has16m: level >= 3
|
|
120
|
+
};
|
|
106
121
|
}
|
|
107
122
|
function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
if (env.TERM === "xterm-kitty") {
|
|
157
|
-
return 3;
|
|
158
|
-
}
|
|
159
|
-
if (env.TERM === "xterm-ghostty") {
|
|
160
|
-
return 3;
|
|
161
|
-
}
|
|
162
|
-
if (env.TERM === "wezterm") {
|
|
163
|
-
return 3;
|
|
164
|
-
}
|
|
165
|
-
if ("TERM_PROGRAM" in env) {
|
|
166
|
-
const version = _p_NumberParseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
167
|
-
switch (env.TERM_PROGRAM) {
|
|
168
|
-
case "iTerm.app": {
|
|
169
|
-
return version >= 3 ? 3 : 2;
|
|
170
|
-
}
|
|
171
|
-
case "Apple_Terminal": {
|
|
172
|
-
return 2;
|
|
173
|
-
}
|
|
174
|
-
}
|
|
175
|
-
}
|
|
176
|
-
if (/-256(color)?$/i.test(env.TERM)) {
|
|
177
|
-
return 2;
|
|
178
|
-
}
|
|
179
|
-
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) {
|
|
180
|
-
return 1;
|
|
181
|
-
}
|
|
182
|
-
if ("COLORTERM" in env) {
|
|
183
|
-
return 1;
|
|
184
|
-
}
|
|
185
|
-
return min;
|
|
123
|
+
const noFlagForceColor = envForceColor();
|
|
124
|
+
if (noFlagForceColor !== void 0) flagForceColor = noFlagForceColor;
|
|
125
|
+
const forceColor = sniffFlags ? flagForceColor : noFlagForceColor;
|
|
126
|
+
if (forceColor === 0) return 0;
|
|
127
|
+
if (sniffFlags) {
|
|
128
|
+
if (hasFlag("color=16m") || hasFlag("color=full") || hasFlag("color=truecolor")) return 3;
|
|
129
|
+
if (hasFlag("color=256")) return 2;
|
|
130
|
+
}
|
|
131
|
+
if ("TF_BUILD" in env && "AGENT_NAME" in env) return 1;
|
|
132
|
+
if (haveStream && !streamIsTTY && forceColor === void 0) return 0;
|
|
133
|
+
const min = forceColor || 0;
|
|
134
|
+
if (env.TERM === "dumb") return min;
|
|
135
|
+
if (node_process.default.platform === "win32") {
|
|
136
|
+
const osRelease = node_os.default.release().split(".");
|
|
137
|
+
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
138
|
+
return 1;
|
|
139
|
+
}
|
|
140
|
+
if ("CI" in env) {
|
|
141
|
+
if ([
|
|
142
|
+
"GITHUB_ACTIONS",
|
|
143
|
+
"GITEA_ACTIONS",
|
|
144
|
+
"CIRCLECI"
|
|
145
|
+
].some((key) => key in env)) return 3;
|
|
146
|
+
if ([
|
|
147
|
+
"TRAVIS",
|
|
148
|
+
"APPVEYOR",
|
|
149
|
+
"GITLAB_CI",
|
|
150
|
+
"BUILDKITE",
|
|
151
|
+
"DRONE"
|
|
152
|
+
].some((sign) => sign in env) || env.CI_NAME === "codeship") return 1;
|
|
153
|
+
return min;
|
|
154
|
+
}
|
|
155
|
+
if ("TEAMCITY_VERSION" in env) return /^(9\.(0*[1-9]\d*)\.|\d{2,}\.)/.test(env.TEAMCITY_VERSION) ? 1 : 0;
|
|
156
|
+
if (env.COLORTERM === "truecolor") return 3;
|
|
157
|
+
if (env.TERM === "xterm-kitty") return 3;
|
|
158
|
+
if (env.TERM === "xterm-ghostty") return 3;
|
|
159
|
+
if (env.TERM === "wezterm") return 3;
|
|
160
|
+
if ("TERM_PROGRAM" in env) {
|
|
161
|
+
const version = _p_NumberParseInt((env.TERM_PROGRAM_VERSION || "").split(".")[0], 10);
|
|
162
|
+
switch (env.TERM_PROGRAM) {
|
|
163
|
+
case "iTerm.app": return version >= 3 ? 3 : 2;
|
|
164
|
+
case "Apple_Terminal": return 2;
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
if (/-256(color)?$/i.test(env.TERM)) return 2;
|
|
168
|
+
if (/^screen|^xterm|^vt100|^vt220|^rxvt|color|ansi|cygwin|linux/i.test(env.TERM)) return 1;
|
|
169
|
+
if ("COLORTERM" in env) return 1;
|
|
170
|
+
return min;
|
|
186
171
|
}
|
|
187
172
|
function createSupportsColor(stream, options = {}) {
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
return translateLevel(level);
|
|
173
|
+
return translateLevel(_supportsColor(stream, {
|
|
174
|
+
streamIsTTY: stream && stream.isTTY,
|
|
175
|
+
...options
|
|
176
|
+
}));
|
|
193
177
|
}
|
|
194
|
-
var
|
|
195
|
-
var init_supports_color =
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
flagForceColor = 1;
|
|
206
|
-
}
|
|
207
|
-
__name(envForceColor, "envForceColor");
|
|
208
|
-
__name(translateLevel, "translateLevel");
|
|
209
|
-
__name(_supportsColor, "_supportsColor");
|
|
210
|
-
__name(createSupportsColor, "createSupportsColor");
|
|
211
|
-
supportsColor = {
|
|
212
|
-
stdout: createSupportsColor({ isTTY: import_node_tty.default.isatty(1) }),
|
|
213
|
-
stderr: createSupportsColor({ isTTY: import_node_tty.default.isatty(2) })
|
|
214
|
-
};
|
|
215
|
-
supports_color_default = supportsColor;
|
|
216
|
-
}
|
|
217
|
-
});
|
|
178
|
+
var env, flagForceColor, supportsColor;
|
|
179
|
+
var init_supports_color = __esmMin((() => {
|
|
180
|
+
({env} = node_process.default);
|
|
181
|
+
;
|
|
182
|
+
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) flagForceColor = 0;
|
|
183
|
+
else if (hasFlag("color") || hasFlag("colors") || hasFlag("color=true") || hasFlag("color=always")) flagForceColor = 1;
|
|
184
|
+
supportsColor = {
|
|
185
|
+
stdout: createSupportsColor({ isTTY: node_tty.default.isatty(1) }),
|
|
186
|
+
stderr: createSupportsColor({ isTTY: node_tty.default.isatty(2) })
|
|
187
|
+
};
|
|
188
|
+
}));
|
|
218
189
|
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
});
|
|
190
|
+
//#endregion
|
|
191
|
+
//#region node_modules/.pnpm/ms@2.1.3/node_modules/ms/index.js
|
|
192
|
+
var require_ms = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
193
|
+
/**
|
|
194
|
+
* Helpers.
|
|
195
|
+
*/
|
|
196
|
+
var s = 1e3;
|
|
197
|
+
var m = s * 60;
|
|
198
|
+
var h = m * 60;
|
|
199
|
+
var d = h * 24;
|
|
200
|
+
var w = d * 7;
|
|
201
|
+
var y = d * 365.25;
|
|
202
|
+
/**
|
|
203
|
+
* Parse or format the given `val`.
|
|
204
|
+
*
|
|
205
|
+
* Options:
|
|
206
|
+
*
|
|
207
|
+
* - `long` verbose formatting [false]
|
|
208
|
+
*
|
|
209
|
+
* @param {String|Number} val
|
|
210
|
+
* @param {Object} [options]
|
|
211
|
+
* @throws {Error} throw an error if val is not a non-empty string or a number
|
|
212
|
+
* @return {String|Number}
|
|
213
|
+
* @api public
|
|
214
|
+
*/
|
|
215
|
+
module.exports = function(val, options) {
|
|
216
|
+
options = options || {};
|
|
217
|
+
var type = typeof val;
|
|
218
|
+
if (type === "string" && val.length > 0) return parse(val);
|
|
219
|
+
else if (type === "number" && isFinite(val)) return options.long ? fmtLong(val) : fmtShort(val);
|
|
220
|
+
throw new _p_ErrorCtor("val is not a non-empty string or a valid number. val=" + _p_JSONStringify(val));
|
|
221
|
+
};
|
|
222
|
+
/**
|
|
223
|
+
* Parse the given `str` and return milliseconds.
|
|
224
|
+
*
|
|
225
|
+
* @param {String} str
|
|
226
|
+
* @return {Number}
|
|
227
|
+
* @api private
|
|
228
|
+
*/
|
|
229
|
+
function parse(str) {
|
|
230
|
+
str = String(str);
|
|
231
|
+
if (str.length > 100) return;
|
|
232
|
+
var match = /^(-?(?:\d+)?\.?\d+) *(milliseconds?|msecs?|ms|seconds?|secs?|s|minutes?|mins?|m|hours?|hrs?|h|days?|d|weeks?|w|years?|yrs?|y)?$/i.exec(str);
|
|
233
|
+
if (!match) return;
|
|
234
|
+
var n = parseFloat(match[1]);
|
|
235
|
+
switch ((match[2] || "ms").toLowerCase()) {
|
|
236
|
+
case "years":
|
|
237
|
+
case "year":
|
|
238
|
+
case "yrs":
|
|
239
|
+
case "yr":
|
|
240
|
+
case "y": return n * y;
|
|
241
|
+
case "weeks":
|
|
242
|
+
case "week":
|
|
243
|
+
case "w": return n * w;
|
|
244
|
+
case "days":
|
|
245
|
+
case "day":
|
|
246
|
+
case "d": return n * d;
|
|
247
|
+
case "hours":
|
|
248
|
+
case "hour":
|
|
249
|
+
case "hrs":
|
|
250
|
+
case "hr":
|
|
251
|
+
case "h": return n * h;
|
|
252
|
+
case "minutes":
|
|
253
|
+
case "minute":
|
|
254
|
+
case "mins":
|
|
255
|
+
case "min":
|
|
256
|
+
case "m": return n * m;
|
|
257
|
+
case "seconds":
|
|
258
|
+
case "second":
|
|
259
|
+
case "secs":
|
|
260
|
+
case "sec":
|
|
261
|
+
case "s": return n * s;
|
|
262
|
+
case "milliseconds":
|
|
263
|
+
case "millisecond":
|
|
264
|
+
case "msecs":
|
|
265
|
+
case "msec":
|
|
266
|
+
case "ms": return n;
|
|
267
|
+
default: return;
|
|
268
|
+
}
|
|
269
|
+
}
|
|
270
|
+
/**
|
|
271
|
+
* Short format for `ms`.
|
|
272
|
+
*
|
|
273
|
+
* @param {Number} ms
|
|
274
|
+
* @return {String}
|
|
275
|
+
* @api private
|
|
276
|
+
*/
|
|
277
|
+
function fmtShort(ms) {
|
|
278
|
+
var msAbs = _p_MathAbs(ms);
|
|
279
|
+
if (msAbs >= d) return _p_MathRound(ms / d) + "d";
|
|
280
|
+
if (msAbs >= h) return _p_MathRound(ms / h) + "h";
|
|
281
|
+
if (msAbs >= m) return _p_MathRound(ms / m) + "m";
|
|
282
|
+
if (msAbs >= s) return _p_MathRound(ms / s) + "s";
|
|
283
|
+
return ms + "ms";
|
|
284
|
+
}
|
|
285
|
+
/**
|
|
286
|
+
* Long format for `ms`.
|
|
287
|
+
*
|
|
288
|
+
* @param {Number} ms
|
|
289
|
+
* @return {String}
|
|
290
|
+
* @api private
|
|
291
|
+
*/
|
|
292
|
+
function fmtLong(ms) {
|
|
293
|
+
var msAbs = _p_MathAbs(ms);
|
|
294
|
+
if (msAbs >= d) return plural(ms, msAbs, d, "day");
|
|
295
|
+
if (msAbs >= h) return plural(ms, msAbs, h, "hour");
|
|
296
|
+
if (msAbs >= m) return plural(ms, msAbs, m, "minute");
|
|
297
|
+
if (msAbs >= s) return plural(ms, msAbs, s, "second");
|
|
298
|
+
return ms + " ms";
|
|
299
|
+
}
|
|
300
|
+
/**
|
|
301
|
+
* Pluralization helper.
|
|
302
|
+
*/
|
|
303
|
+
function plural(ms, msAbs, n, name) {
|
|
304
|
+
var isPlural = msAbs >= n * 1.5;
|
|
305
|
+
return _p_MathRound(ms / n) + " " + name + (isPlural ? "s" : "");
|
|
306
|
+
}
|
|
307
|
+
}));
|
|
338
308
|
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
|
|
422
|
-
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
|
|
464
|
-
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
309
|
+
//#endregion
|
|
310
|
+
//#region node_modules/.pnpm/debug@4.4.3_supports-color@10.2.2/node_modules/debug/src/common.js
|
|
311
|
+
var require_common = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
312
|
+
/**
|
|
313
|
+
* This is the common logic for both the Node.js and web browser
|
|
314
|
+
* implementations of `debug()`.
|
|
315
|
+
*/
|
|
316
|
+
function setup(env) {
|
|
317
|
+
createDebug.debug = createDebug;
|
|
318
|
+
createDebug.default = createDebug;
|
|
319
|
+
createDebug.coerce = coerce;
|
|
320
|
+
createDebug.disable = disable;
|
|
321
|
+
createDebug.enable = enable;
|
|
322
|
+
createDebug.enabled = enabled;
|
|
323
|
+
createDebug.humanize = require_ms();
|
|
324
|
+
createDebug.destroy = destroy;
|
|
325
|
+
_p_ObjectKeys(env).forEach((key) => {
|
|
326
|
+
createDebug[key] = env[key];
|
|
327
|
+
});
|
|
328
|
+
/**
|
|
329
|
+
* The currently active debug mode names, and names to skip.
|
|
330
|
+
*/
|
|
331
|
+
createDebug.names = [];
|
|
332
|
+
createDebug.skips = [];
|
|
333
|
+
/**
|
|
334
|
+
* Map of special "%n" handling functions, for the debug "format" argument.
|
|
335
|
+
*
|
|
336
|
+
* Valid key names are a single, lower or upper-case letter, i.e. "n" and "N".
|
|
337
|
+
*/
|
|
338
|
+
createDebug.formatters = {};
|
|
339
|
+
/**
|
|
340
|
+
* Selects a color for a debug namespace
|
|
341
|
+
* @param {String} namespace The namespace string for the debug instance to be colored
|
|
342
|
+
* @return {Number|String} An ANSI color code for the given namespace
|
|
343
|
+
* @api private
|
|
344
|
+
*/
|
|
345
|
+
function selectColor(namespace) {
|
|
346
|
+
let hash = 0;
|
|
347
|
+
for (let i = 0; i < namespace.length; i++) {
|
|
348
|
+
hash = (hash << 5) - hash + _p_StringPrototypeCharCodeAt(namespace, i);
|
|
349
|
+
hash |= 0;
|
|
350
|
+
}
|
|
351
|
+
return createDebug.colors[_p_MathAbs(hash) % createDebug.colors.length];
|
|
352
|
+
}
|
|
353
|
+
createDebug.selectColor = selectColor;
|
|
354
|
+
/**
|
|
355
|
+
* Create a debugger with the given `namespace`.
|
|
356
|
+
*
|
|
357
|
+
* @param {String} namespace
|
|
358
|
+
* @return {Function}
|
|
359
|
+
* @api public
|
|
360
|
+
*/
|
|
361
|
+
function createDebug(namespace) {
|
|
362
|
+
let prevTime;
|
|
363
|
+
let enableOverride = null;
|
|
364
|
+
let namespacesCache;
|
|
365
|
+
let enabledCache;
|
|
366
|
+
function debug(...args) {
|
|
367
|
+
if (!debug.enabled) return;
|
|
368
|
+
const self = debug;
|
|
369
|
+
const curr = Number(/* @__PURE__ */ new _p_DateCtor());
|
|
370
|
+
self.diff = curr - (prevTime || curr);
|
|
371
|
+
self.prev = prevTime;
|
|
372
|
+
self.curr = curr;
|
|
373
|
+
prevTime = curr;
|
|
374
|
+
args[0] = createDebug.coerce(args[0]);
|
|
375
|
+
if (typeof args[0] !== "string") _p_ArrayPrototypeUnshift(args, "%O");
|
|
376
|
+
let index = 0;
|
|
377
|
+
args[0] = args[0].replace(/%([a-zA-Z%])/g, (match, format) => {
|
|
378
|
+
if (match === "%%") return "%";
|
|
379
|
+
index++;
|
|
380
|
+
const formatter = createDebug.formatters[format];
|
|
381
|
+
if (typeof formatter === "function") {
|
|
382
|
+
const val = args[index];
|
|
383
|
+
match = formatter.call(self, val);
|
|
384
|
+
args.splice(index, 1);
|
|
385
|
+
index--;
|
|
386
|
+
}
|
|
387
|
+
return match;
|
|
388
|
+
});
|
|
389
|
+
createDebug.formatArgs.call(self, args);
|
|
390
|
+
(self.log || createDebug.log).apply(self, args);
|
|
391
|
+
}
|
|
392
|
+
debug.namespace = namespace;
|
|
393
|
+
debug.useColors = createDebug.useColors();
|
|
394
|
+
debug.color = createDebug.selectColor(namespace);
|
|
395
|
+
debug.extend = extend;
|
|
396
|
+
debug.destroy = createDebug.destroy;
|
|
397
|
+
_p_ObjectDefineProperty(debug, "enabled", {
|
|
398
|
+
enumerable: true,
|
|
399
|
+
configurable: false,
|
|
400
|
+
get: () => {
|
|
401
|
+
if (enableOverride !== null) return enableOverride;
|
|
402
|
+
if (namespacesCache !== createDebug.namespaces) {
|
|
403
|
+
namespacesCache = createDebug.namespaces;
|
|
404
|
+
enabledCache = createDebug.enabled(namespace);
|
|
405
|
+
}
|
|
406
|
+
return enabledCache;
|
|
407
|
+
},
|
|
408
|
+
set: (v) => {
|
|
409
|
+
enableOverride = v;
|
|
410
|
+
}
|
|
411
|
+
});
|
|
412
|
+
if (typeof createDebug.init === "function") createDebug.init(debug);
|
|
413
|
+
return debug;
|
|
414
|
+
}
|
|
415
|
+
function extend(namespace, delimiter) {
|
|
416
|
+
const newDebug = createDebug(this.namespace + (typeof delimiter === "undefined" ? ":" : delimiter) + namespace);
|
|
417
|
+
newDebug.log = this.log;
|
|
418
|
+
return newDebug;
|
|
419
|
+
}
|
|
420
|
+
/**
|
|
421
|
+
* Enables a debug mode by namespaces. This can include modes
|
|
422
|
+
* separated by a colon and wildcards.
|
|
423
|
+
*
|
|
424
|
+
* @param {String} namespaces
|
|
425
|
+
* @api public
|
|
426
|
+
*/
|
|
427
|
+
function enable(namespaces) {
|
|
428
|
+
createDebug.save(namespaces);
|
|
429
|
+
createDebug.namespaces = namespaces;
|
|
430
|
+
createDebug.names = [];
|
|
431
|
+
createDebug.skips = [];
|
|
432
|
+
const split = (typeof namespaces === "string" ? namespaces : "").trim().replace(/\s+/g, ",").split(",").filter(Boolean);
|
|
433
|
+
for (const ns of split) if (ns[0] === "-") createDebug.skips.push(ns.slice(1));
|
|
434
|
+
else createDebug.names.push(ns);
|
|
435
|
+
}
|
|
436
|
+
/**
|
|
437
|
+
* Checks if the given string matches a namespace template, honoring
|
|
438
|
+
* asterisks as wildcards.
|
|
439
|
+
*
|
|
440
|
+
* @param {String} search
|
|
441
|
+
* @param {String} template
|
|
442
|
+
* @return {Boolean}
|
|
443
|
+
*/
|
|
444
|
+
function matchesTemplate(search, template) {
|
|
445
|
+
let searchIndex = 0;
|
|
446
|
+
let templateIndex = 0;
|
|
447
|
+
let starIndex = -1;
|
|
448
|
+
let matchIndex = 0;
|
|
449
|
+
while (searchIndex < search.length) if (templateIndex < template.length && (template[templateIndex] === search[searchIndex] || template[templateIndex] === "*")) if (template[templateIndex] === "*") {
|
|
450
|
+
starIndex = templateIndex;
|
|
451
|
+
matchIndex = searchIndex;
|
|
452
|
+
templateIndex++;
|
|
453
|
+
} else {
|
|
454
|
+
searchIndex++;
|
|
455
|
+
templateIndex++;
|
|
456
|
+
}
|
|
457
|
+
else if (starIndex !== -1) {
|
|
458
|
+
templateIndex = starIndex + 1;
|
|
459
|
+
matchIndex++;
|
|
460
|
+
searchIndex = matchIndex;
|
|
461
|
+
} else return false;
|
|
462
|
+
while (templateIndex < template.length && template[templateIndex] === "*") templateIndex++;
|
|
463
|
+
return templateIndex === template.length;
|
|
464
|
+
}
|
|
465
|
+
/**
|
|
466
|
+
* Disable debug output.
|
|
467
|
+
*
|
|
468
|
+
* @return {String} namespaces
|
|
469
|
+
* @api public
|
|
470
|
+
*/
|
|
471
|
+
function disable() {
|
|
472
|
+
const namespaces = [...createDebug.names, ...createDebug.skips.map((namespace) => "-" + namespace)].join(",");
|
|
473
|
+
createDebug.enable("");
|
|
474
|
+
return namespaces;
|
|
475
|
+
}
|
|
476
|
+
/**
|
|
477
|
+
* Returns true if the given mode name is enabled, false otherwise.
|
|
478
|
+
*
|
|
479
|
+
* @param {String} name
|
|
480
|
+
* @return {Boolean}
|
|
481
|
+
* @api public
|
|
482
|
+
*/
|
|
483
|
+
function enabled(name) {
|
|
484
|
+
for (const skip of createDebug.skips) if (matchesTemplate(name, skip)) return false;
|
|
485
|
+
for (const ns of createDebug.names) if (matchesTemplate(name, ns)) return true;
|
|
486
|
+
return false;
|
|
487
|
+
}
|
|
488
|
+
/**
|
|
489
|
+
* Coerce `val`.
|
|
490
|
+
*
|
|
491
|
+
* @param {Mixed} val
|
|
492
|
+
* @return {Mixed}
|
|
493
|
+
* @api private
|
|
494
|
+
*/
|
|
495
|
+
function coerce(val) {
|
|
496
|
+
if (val instanceof Error) return val.stack || val.message;
|
|
497
|
+
return val;
|
|
498
|
+
}
|
|
499
|
+
/**
|
|
500
|
+
* XXX DO NOT USE. This is a temporary stub function.
|
|
501
|
+
* XXX It WILL be removed in the next major release.
|
|
502
|
+
*/
|
|
503
|
+
function destroy() {
|
|
504
|
+
console.warn("Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
505
|
+
}
|
|
506
|
+
createDebug.enable(createDebug.load());
|
|
507
|
+
return createDebug;
|
|
508
|
+
}
|
|
509
|
+
module.exports = setup;
|
|
510
|
+
}));
|
|
526
511
|
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
|
|
530
|
-
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
|
|
597
|
-
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
|
|
512
|
+
//#endregion
|
|
513
|
+
//#region node_modules/.pnpm/debug@4.4.3_supports-color@10.2.2/node_modules/debug/src/node.js
|
|
514
|
+
var require_node = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
515
|
+
/**
|
|
516
|
+
* Module dependencies.
|
|
517
|
+
*/
|
|
518
|
+
const tty = require("tty");
|
|
519
|
+
const util = require("util");
|
|
520
|
+
/**
|
|
521
|
+
* This is the Node.js implementation of `debug()`.
|
|
522
|
+
*/
|
|
523
|
+
exports.init = init;
|
|
524
|
+
exports.log = log;
|
|
525
|
+
exports.formatArgs = formatArgs;
|
|
526
|
+
exports.save = save;
|
|
527
|
+
exports.load = load;
|
|
528
|
+
exports.useColors = useColors;
|
|
529
|
+
exports.destroy = util.deprecate(() => {}, "Instance method `debug.destroy()` is deprecated and no longer does anything. It will be removed in the next major version of `debug`.");
|
|
530
|
+
/**
|
|
531
|
+
* Colors.
|
|
532
|
+
*/
|
|
533
|
+
exports.colors = [
|
|
534
|
+
6,
|
|
535
|
+
2,
|
|
536
|
+
3,
|
|
537
|
+
4,
|
|
538
|
+
5,
|
|
539
|
+
1
|
|
540
|
+
];
|
|
541
|
+
try {
|
|
542
|
+
const supportsColor = (init_supports_color(), __toCommonJS(supports_color_exports));
|
|
543
|
+
if (supportsColor && (supportsColor.stderr || supportsColor).level >= 2) exports.colors = [
|
|
544
|
+
20,
|
|
545
|
+
21,
|
|
546
|
+
26,
|
|
547
|
+
27,
|
|
548
|
+
32,
|
|
549
|
+
33,
|
|
550
|
+
38,
|
|
551
|
+
39,
|
|
552
|
+
40,
|
|
553
|
+
41,
|
|
554
|
+
42,
|
|
555
|
+
43,
|
|
556
|
+
44,
|
|
557
|
+
45,
|
|
558
|
+
56,
|
|
559
|
+
57,
|
|
560
|
+
62,
|
|
561
|
+
63,
|
|
562
|
+
68,
|
|
563
|
+
69,
|
|
564
|
+
74,
|
|
565
|
+
75,
|
|
566
|
+
76,
|
|
567
|
+
77,
|
|
568
|
+
78,
|
|
569
|
+
79,
|
|
570
|
+
80,
|
|
571
|
+
81,
|
|
572
|
+
92,
|
|
573
|
+
93,
|
|
574
|
+
98,
|
|
575
|
+
99,
|
|
576
|
+
112,
|
|
577
|
+
113,
|
|
578
|
+
128,
|
|
579
|
+
129,
|
|
580
|
+
134,
|
|
581
|
+
135,
|
|
582
|
+
148,
|
|
583
|
+
149,
|
|
584
|
+
160,
|
|
585
|
+
161,
|
|
586
|
+
162,
|
|
587
|
+
163,
|
|
588
|
+
164,
|
|
589
|
+
165,
|
|
590
|
+
166,
|
|
591
|
+
167,
|
|
592
|
+
168,
|
|
593
|
+
169,
|
|
594
|
+
170,
|
|
595
|
+
171,
|
|
596
|
+
172,
|
|
597
|
+
173,
|
|
598
|
+
178,
|
|
599
|
+
179,
|
|
600
|
+
184,
|
|
601
|
+
185,
|
|
602
|
+
196,
|
|
603
|
+
197,
|
|
604
|
+
198,
|
|
605
|
+
199,
|
|
606
|
+
200,
|
|
607
|
+
201,
|
|
608
|
+
202,
|
|
609
|
+
203,
|
|
610
|
+
204,
|
|
611
|
+
205,
|
|
612
|
+
206,
|
|
613
|
+
207,
|
|
614
|
+
208,
|
|
615
|
+
209,
|
|
616
|
+
214,
|
|
617
|
+
215,
|
|
618
|
+
220,
|
|
619
|
+
221
|
|
620
|
+
];
|
|
621
|
+
} catch (error) {}
|
|
622
|
+
/**
|
|
623
|
+
* Build up the default `inspectOpts` object from the environment variables.
|
|
624
|
+
*
|
|
625
|
+
* $ DEBUG_COLORS=no DEBUG_DEPTH=10 DEBUG_SHOW_HIDDEN=enabled node script.js
|
|
626
|
+
*/
|
|
627
|
+
exports.inspectOpts = _p_ObjectKeys(process.env).filter((key) => {
|
|
628
|
+
return /^debug_/i.test(key);
|
|
629
|
+
}).reduce((obj, key) => {
|
|
630
|
+
const prop = _p_StringPrototypeSubstring(key, 6).toLowerCase().replace(/_([a-z])/g, (_, k) => {
|
|
631
|
+
return k.toUpperCase();
|
|
632
|
+
});
|
|
633
|
+
let val = process.env[key];
|
|
634
|
+
if (/^(yes|on|true|enabled)$/i.test(val)) val = true;
|
|
635
|
+
else if (/^(no|off|false|disabled)$/i.test(val)) val = false;
|
|
636
|
+
else if (val === "null") val = null;
|
|
637
|
+
else val = Number(val);
|
|
638
|
+
obj[prop] = val;
|
|
639
|
+
return obj;
|
|
640
|
+
}, {});
|
|
641
|
+
/**
|
|
642
|
+
* Is stdout a TTY? Colored output is enabled when `true`.
|
|
643
|
+
*/
|
|
644
|
+
function useColors() {
|
|
645
|
+
return "colors" in exports.inspectOpts ? Boolean(exports.inspectOpts.colors) : tty.isatty(process.stderr.fd);
|
|
646
|
+
}
|
|
647
|
+
/**
|
|
648
|
+
* Adds ANSI color escape codes if enabled.
|
|
649
|
+
*
|
|
650
|
+
* @api public
|
|
651
|
+
*/
|
|
652
|
+
function formatArgs(args) {
|
|
653
|
+
const { namespace: name, useColors } = this;
|
|
654
|
+
if (useColors) {
|
|
655
|
+
const c = this.color;
|
|
656
|
+
const colorCode = "\x1B[3" + (c < 8 ? c : "8;5;" + c);
|
|
657
|
+
const prefix = ` ${colorCode};1m${name} \u001B[0m`;
|
|
658
|
+
args[0] = prefix + args[0].split("\n").join("\n" + prefix);
|
|
659
|
+
args.push(colorCode + "m+" + module.exports.humanize(this.diff) + "\x1B[0m");
|
|
660
|
+
} else args[0] = getDate() + name + " " + args[0];
|
|
661
|
+
}
|
|
662
|
+
function getDate() {
|
|
663
|
+
if (exports.inspectOpts.hideDate) return "";
|
|
664
|
+
return (/* @__PURE__ */ new _p_DateCtor()).toISOString() + " ";
|
|
665
|
+
}
|
|
666
|
+
/**
|
|
667
|
+
* Invokes `util.formatWithOptions()` with the specified arguments and writes to stderr.
|
|
668
|
+
*/
|
|
669
|
+
function log(...args) {
|
|
670
|
+
return process.stderr.write(util.formatWithOptions(exports.inspectOpts, ...args) + "\n");
|
|
671
|
+
}
|
|
672
|
+
/**
|
|
673
|
+
* Save `namespaces`.
|
|
674
|
+
*
|
|
675
|
+
* @param {String} namespaces
|
|
676
|
+
* @api private
|
|
677
|
+
*/
|
|
678
|
+
function save(namespaces) {
|
|
679
|
+
if (namespaces) process.env.DEBUG = namespaces;
|
|
680
|
+
else delete process.env.DEBUG;
|
|
681
|
+
}
|
|
682
|
+
/**
|
|
683
|
+
* Load `namespaces`.
|
|
684
|
+
*
|
|
685
|
+
* @return {String} returns the previously persisted debug modes
|
|
686
|
+
* @api private
|
|
687
|
+
*/
|
|
688
|
+
function load() {}
|
|
689
|
+
/**
|
|
690
|
+
* Init logic for `debug` instances.
|
|
691
|
+
*
|
|
692
|
+
* Create a new `inspectOpts` object in case `useColors` is set
|
|
693
|
+
* differently for a particular `debug` instance.
|
|
694
|
+
*/
|
|
695
|
+
function init(debug) {
|
|
696
|
+
debug.inspectOpts = {};
|
|
697
|
+
const keys = _p_ObjectKeys(exports.inspectOpts);
|
|
698
|
+
for (let i = 0; i < keys.length; i++) debug.inspectOpts[keys[i]] = exports.inspectOpts[keys[i]];
|
|
699
|
+
}
|
|
700
|
+
module.exports = require_common()(exports);
|
|
701
|
+
const { formatters } = module.exports;
|
|
702
|
+
/**
|
|
703
|
+
* Map %o to `util.inspect()`, all on a single line.
|
|
704
|
+
*/
|
|
705
|
+
formatters.o = function(v) {
|
|
706
|
+
this.inspectOpts.colors = this.useColors;
|
|
707
|
+
return util.inspect(v, this.inspectOpts).split("\n").map((str) => str.trim()).join(" ");
|
|
708
|
+
};
|
|
709
|
+
/**
|
|
710
|
+
* Map %O to `util.inspect()`, allowing multiple lines if needed.
|
|
711
|
+
*/
|
|
712
|
+
formatters.O = function(v) {
|
|
713
|
+
this.inspectOpts.colors = this.useColors;
|
|
714
|
+
return util.inspect(v, this.inspectOpts);
|
|
715
|
+
};
|
|
716
|
+
}));
|
|
707
717
|
|
|
708
|
-
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
});
|
|
718
|
+
//#endregion
|
|
719
|
+
//#region node_modules/.pnpm/debug@4.4.3_supports-color@10.2.2/node_modules/debug/src/index.js
|
|
720
|
+
var require_src = /* @__PURE__ */ __commonJSMin(((exports, module) => {
|
|
721
|
+
/**
|
|
722
|
+
* Detect Electron renderer / nwjs process, which is node, but we should
|
|
723
|
+
* treat as a browser.
|
|
724
|
+
*/
|
|
725
|
+
if (typeof process === "undefined" || process.type === "renderer" || process.__nwjs) module.exports = require__stub_empty();
|
|
726
|
+
else module.exports = require_node();
|
|
727
|
+
}));
|
|
718
728
|
|
|
719
|
-
|
|
729
|
+
//#endregion
|
|
730
|
+
//#region src/external/debug.js
|
|
720
731
|
module.exports = require_src();
|
|
732
|
+
|
|
733
|
+
//#endregion
|