1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

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 GitHub
parent 1892612438
commit c154ac5168
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)), "..", "..");