From f248050cb467eaed8d65428b8808254e26797cc5 Mon Sep 17 00:00:00 2001 From: Asher Gomez Date: Thu, 25 Jul 2024 10:26:54 +1000 Subject: 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. --- tests/wpt/runner/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/wpt/runner') diff --git a/tests/wpt/runner/utils.ts b/tests/wpt/runner/utils.ts index 52b95eefe..988e06c09 100644 --- a/tests/wpt/runner/utils.ts +++ b/tests/wpt/runner/utils.ts @@ -1,7 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. /// FLAGS -import { parse } from "../../util/std/flags/mod.ts"; +import { parse } from "@std/flags/mod.ts"; import { join, resolve, ROOT_PATH } from "../../../tools/util.js"; export const { -- cgit v1.2.3