diff options
Diffstat (limited to 'cli/tools/task.rs')
-rw-r--r-- | cli/tools/task.rs | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/cli/tools/task.rs b/cli/tools/task.rs index f582a8fd8..dcb53e4ec 100644 --- a/cli/tools/task.rs +++ b/cli/tools/task.rs @@ -17,9 +17,7 @@ use deno_semver::package::PackageNv; use deno_task_shell::ExecuteResult; use deno_task_shell::ShellCommand; use deno_task_shell::ShellCommandContext; -// TODO(mmastrac): Once upstream indexmap is updated, this can go away use indexmap::IndexMap; -use indexmap1::IndexMap as IndexMap1; use std::collections::HashMap; use std::path::PathBuf; use std::rc::Rc; @@ -180,7 +178,7 @@ fn collect_env_vars() -> HashMap<String, String> { fn print_available_tasks( // order can be important, so these use an index map - tasks_config: &IndexMap1<String, String>, + tasks_config: &IndexMap<String, String>, package_json_scripts: &IndexMap<String, String>, ) { eprintln!("{}", colors::green("Available tasks:")); |