chore: use local copy of std in tools/bench/ scripts (#14251)

This commit is contained in:
Bartek Iwańczuk 2022-04-11 11:46:23 +02:00 committed by David Sherret
parent 85d3b94820
commit adbd91372d

View File

@ -1,5 +1,5 @@
import { dirname, fromFileUrl, join } from "https://deno.land/std/path/mod.ts";
import { expandGlobSync } from "https://deno.land/std/fs/mod.ts";
import { dirname, fromFileUrl, join } from "../../test_util/std/path/mod.ts";
import { expandGlobSync } from "../../test_util/std/fs/mod.ts";
const ROOT_DIR = join(dirname(fromFileUrl(import.meta.url)), "..", "..");