1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-03 04:48:52 -05:00

fix(compile): some npm dependencies were missing in compiled output (#19503)

Test is in deno_npm.

Closes #19500
This commit is contained in:
David Sherret 2023-06-14 11:53:14 -04:00 committed by GitHub
parent 348287825c
commit cd27757184
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

4
Cargo.lock generated
View file

@ -1298,9 +1298,9 @@ dependencies = [
[[package]]
name = "deno_npm"
version = "0.8.0"
version = "0.8.1"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "a6ea17879274b55063c6b14488a4f9352b651f8d42ed129e6e2c1e351761175d"
checksum = "f396676bc09754d7afdbf8887e501bf5cd4ecbec6607a5540ee5c7338cae713d"
dependencies = [
"anyhow",
"async-trait",

View file

@ -53,8 +53,8 @@ deno_bench_util = { version = "0.102.0", path = "./bench_util" }
test_util = { path = "./test_util" }
deno_lockfile = "0.14.1"
deno_media_type = { version = "0.1.0", features = ["module_specifier"] }
deno_npm = "0.8.0"
deno_semver = "0.2.1"
deno_npm = "0.8.1"
deno_semver = "0.2.2"
# exts
deno_broadcast_channel = { version = "0.102.0", path = "./ext/broadcast_channel" }