mirror of
https://github.com/denoland/deno.git
synced 2025-08-03 10:33:54 +00:00
chore: update crates (#16588)
This commit is contained in:
parent
110a0ebe69
commit
fd32f75da9
3 changed files with 58 additions and 29 deletions
|
@ -50,12 +50,12 @@ winapi = "=0.3.9"
|
|||
winres = "=0.1.12"
|
||||
|
||||
[dependencies]
|
||||
deno_ast = { version = "0.20.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
|
||||
deno_ast = { version = "0.21.0", features = ["bundler", "cjs", "codegen", "dep_graph", "module_specifier", "proposal", "react", "sourcemap", "transforms", "transpiling", "typescript", "view", "visit"] }
|
||||
deno_core = { version = "0.158.0", path = "../core" }
|
||||
deno_doc = "0.48.0"
|
||||
deno_emit = "0.10.0"
|
||||
deno_graph = "0.37.1"
|
||||
deno_lint = { version = "0.34.0", features = ["docs"] }
|
||||
deno_doc = "0.49.0"
|
||||
deno_emit = "0.11.0"
|
||||
deno_graph = "0.38.0"
|
||||
deno_lint = { version = "0.35.0", features = ["docs"] }
|
||||
deno_runtime = { version = "0.84.0", path = "../runtime" }
|
||||
deno_task_shell = "0.7.2"
|
||||
napi_sym = { path = "./napi_sym", version = "0.6.0" }
|
||||
|
@ -71,10 +71,10 @@ data-url = "=0.2.0"
|
|||
dissimilar = "=1.0.4"
|
||||
dprint-plugin-json = "=0.15.6"
|
||||
dprint-plugin-markdown = "=0.14.1"
|
||||
dprint-plugin-typescript = "=0.76.0"
|
||||
dprint-plugin-typescript = "=0.78.0"
|
||||
encoding_rs = "=0.8.31"
|
||||
env_logger = "=0.9.0"
|
||||
eszip = "=0.29.0"
|
||||
eszip = "=0.30.0"
|
||||
fancy-regex = "=0.10.0"
|
||||
flate2 = "=1.0.24"
|
||||
http = "=0.2.8"
|
||||
|
|
|
@ -53,7 +53,7 @@ pub struct GraphData {
|
|||
npm_packages: HashSet<NpmPackageReq>,
|
||||
/// Map of first known referrer locations for each module. Used to enhance
|
||||
/// error messages.
|
||||
referrer_map: HashMap<ModuleSpecifier, Range>,
|
||||
referrer_map: HashMap<ModuleSpecifier, Box<Range>>,
|
||||
graph_imports: Vec<GraphImport>,
|
||||
cjs_esm_translations: HashMap<ModuleSpecifier, String>,
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue