1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-24 15:19:26 -05:00

fix(npm): handle packages with only pre-released 0.0.0 versions (#24563)

* https://github.com/denoland/deno_semver/pull/26

Closes https://github.com/denoland/deno/issues/24550
This commit is contained in:
David Sherret 2024-07-22 10:58:48 -04:00 committed by GitHub
parent 5a696551b7
commit a459b43d59
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

4
Cargo.lock generated
View file

@ -1910,9 +1910,9 @@ dependencies = [
[[package]]
name = "deno_semver"
version = "0.5.6"
version = "0.5.7"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "389b5a8c2dd48cc1aad25396c92d7461ddb0fcfae1faf8e00205837c53e34d3e"
checksum = "e23ce551a58eeefc05a48042a9c76d3409c96a1a6a522a82c4ced26930ece201"
dependencies = [
"monch",
"once_cell",

View file

@ -74,7 +74,7 @@ deno_lint = { version = "=0.60.1", features = ["docs"] }
deno_lockfile.workspace = true
deno_npm = "=0.21.4"
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
deno_semver = "=0.5.6"
deno_semver = "=0.5.7"
deno_task_shell = "=0.17.0"
deno_terminal.workspace = true
eszip = "=0.72.2"