diff --git a/src/__test__/_export-all.ts b/src/__test__/_export-all.ts index cabcc5c..f1b5a7b 100644 --- a/src/__test__/_export-all.ts +++ b/src/__test__/_export-all.ts @@ -1,5 +1,5 @@ // This is here to measure the bundle size of the library: -export * from ".."; +export * from "../index"; export * from "../store"; export * from "../extend"; export * from "../plugin-array"; diff --git a/src/__test__/_export-common.ts b/src/__test__/_export-common.ts index 4d975ef..90fec24 100644 --- a/src/__test__/_export-common.ts +++ b/src/__test__/_export-common.ts @@ -1,5 +1,5 @@ // This is here to measure the bundle size of the library: -export * from ".."; +export * from "../index"; export * from "../extend"; export * from "../plugin-object"; export * from "../plugin-persist";