diff --git a/benchmarks/fdir-benchmark.ts b/benchmarks/fdir-benchmark.ts index 93f2a0d..09004ad 100644 --- a/benchmarks/fdir-benchmark.ts +++ b/benchmarks/fdir-benchmark.ts @@ -1,5 +1,5 @@ import child_process from "child_process"; -import { Fdir } from "../index"; +import { Fdir } from "../src/index"; import b from "benny"; type Version = typeof versions[number] | "current"; @@ -32,7 +32,7 @@ function addSuite(instance: Fdir, version: Version) { } async function fillSuites() { - const { fdir } = await import("../index"); + const { fdir } = await import("../src/index"); addSuite(fdir, "current"); versions.forEach((version) => { diff --git a/benchmarks/glob-benchmark.ts b/benchmarks/glob-benchmark.ts index d26f6bb..acaac5d 100644 --- a/benchmarks/glob-benchmark.ts +++ b/benchmarks/glob-benchmark.ts @@ -1,4 +1,4 @@ -import { fdir } from "../index"; +import { fdir } from "../src/index"; import { glob, globSync } from "glob"; import fg from "fast-glob"; import tg from "tiny-glob";