diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-07-25 15:30:28 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 15:30:28 +1000 |
commit | 5f44148e83bb0056b7a361dd6a1bf28d11f3116d (patch) | |
tree | e73ff318a69cabedf33a962be6fa6c73e6775f3e /tools/util.js | |
parent | 84b7504d0fdccc07b9f7412408c954ae07765ccb (diff) |
chore: update to `std@2024.07.19` (#24715)
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 = { |