diff options
Diffstat (limited to 'tools/util.js')
-rw-r--r-- | tools/util.js | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/tools/util.js b/tools/util.js index 2f0904bc4..ed322d0d8 100644 --- a/tools/util.js +++ b/tools/util.js @@ -1,16 +1,10 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { - dirname, - fromFileUrl, - join, - resolve, - toFileUrl, -} from "@std/path/mod.ts"; +import { dirname, fromFileUrl, join, resolve, toFileUrl } from "@std/path"; import { wait } from "https://deno.land/x/wait@0.1.13/mod.ts"; export { dirname, fromFileUrl, join, resolve, toFileUrl }; -export { existsSync, walk } from "@std/fs/mod.ts"; -export { TextLineStream } from "@std/streams/text_line_stream.ts"; -export { delay } from "@std/async/delay.ts"; +export { existsSync, walk } from "@std/fs"; +export { TextLineStream } from "@std/streams/text-line-stream"; +export { delay } from "@std/async/delay"; // [toolName] --version output const versions = { |