diff options
author | Asher Gomez <ashersaupingomez@gmail.com> | 2024-07-25 10:26:54 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-25 10:26:54 +1000 |
commit | f248050cb467eaed8d65428b8808254e26797cc5 (patch) | |
tree | 7e43f16a8754a6313f65f0f65c037fdae2ce986f /tools/util.js | |
parent | 795ed23b356dc044cfb497a6189d588604a6c335 (diff) |
chore: use `@std` prefix for internal module specifiers (#24543)
This change aims to replace all relative import specifiers targeted at
`tests/util/std` with mapped ones (using a `deno.json` file). Towards
updating the `std` git submodule.
Diffstat (limited to 'tools/util.js')
-rw-r--r-- | tools/util.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/util.js b/tools/util.js index 251aaa1fa..2f0904bc4 100644 --- a/tools/util.js +++ b/tools/util.js @@ -5,12 +5,12 @@ import { join, resolve, toFileUrl, -} from "../tests/util/std/path/mod.ts"; +} from "@std/path/mod.ts"; import { wait } from "https://deno.land/x/wait@0.1.13/mod.ts"; export { dirname, fromFileUrl, join, resolve, toFileUrl }; -export { existsSync, walk } from "../tests/util/std/fs/mod.ts"; -export { TextLineStream } from "../tests/util/std/streams/text_line_stream.ts"; -export { delay } from "../tests/util/std/async/delay.ts"; +export { existsSync, walk } from "@std/fs/mod.ts"; +export { TextLineStream } from "@std/streams/text_line_stream.ts"; +export { delay } from "@std/async/delay.ts"; // [toolName] --version output const versions = { |