diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-11-10 17:20:46 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-10 17:20:46 +0100 |
commit | fd32f75da997b805a4ba95c68b4aaeed9f020cb1 (patch) | |
tree | 00da201632a15f83ef9e07a97012e72821ef6eff /cli | |
parent | 110a0ebe690f83a21c87f1ef1a6a51af67e2a5fc (diff) |
chore: update crates (#16588)
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 14 | ||||
-rw-r--r-- | cli/graph_util.rs | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index d688047b5..541a1dc6c 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -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" diff --git a/cli/graph_util.rs b/cli/graph_util.rs index dca7a16b7..e619f8a12 100644 --- a/cli/graph_util.rs +++ b/cli/graph_util.rs @@ -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>, } |