diff options
author | David Sherret <dsherret@users.noreply.github.com> | 2024-08-08 23:23:28 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-08-08 23:23:28 +0200 |
commit | fb1686859346c5f4b14d311fccd8bf6fe36d47bb (patch) | |
tree | 81c19f8fd282ec86b1be9ba53ba2dc8ff4b05108 | |
parent | ffe1bfd54c2065fe718872f67e19e8a863c0bf22 (diff) |
fix(add): better error message providing scoped pkg missing leading `@` symbol (#24961)
* https://github.com/denoland/deno_semver/pull/30
-rw-r--r-- | Cargo.lock | 4 | ||||
-rw-r--r-- | cli/Cargo.toml | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/Cargo.lock b/Cargo.lock index 238bfb89e..aed11d084 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1967,9 +1967,9 @@ dependencies = [ [[package]] name = "deno_semver" -version = "0.5.9" +version = "0.5.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9fb7520ac21cb236c6f8cc81964e8bf22c72fc58c7b5f762f99b9a95abfe3212" +checksum = "56feaf035e29320d11adf89eafa14f5447d3089deb1ce7de61ba7969195f5ff1" dependencies = [ "monch", "once_cell", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 29edde06f..0ea7d95ee 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -75,7 +75,7 @@ deno_lockfile.workspace = true deno_npm = "=0.21.4" deno_package_json.workspace = true deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] } -deno_semver = "=0.5.9" +deno_semver = "=0.5.10" deno_task_shell = "=0.17.0" deno_terminal.workspace = true eszip = "=0.73.0" |