summaryrefslogtreecommitdiff
path: root/cli/tsc_config.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2020-11-16 20:48:50 +0100
committerGitHub <noreply@github.com>2020-11-16 20:48:50 +0100
commit636af2850c90f6bf7005a270d95b68bc9718de75 (patch)
tree9ebffa025237f1ef42226e3168780beac2768b95 /cli/tsc_config.rs
parent8ab20a4582016542ac3d8140593f817ab920005f (diff)
refactor(cli): rename fs module to fs_util (#8380)
This commit renames "fs" module in "cli/" to "fs_util". This is purely cosmetic change; there were a few places which aliased "crate::fs" to "deno_fs" which was very confusing with "fs" module in ops.
Diffstat (limited to 'cli/tsc_config.rs')
-rw-r--r--cli/tsc_config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/tsc_config.rs b/cli/tsc_config.rs
index 92332cca6..5012e03a9 100644
--- a/cli/tsc_config.rs
+++ b/cli/tsc_config.rs
@@ -1,6 +1,6 @@
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
-use crate::fs::canonicalize_path;
+use crate::fs_util::canonicalize_path;
use deno_core::error::AnyError;
use deno_core::serde_json;
use deno_core::serde_json::json;