From c3d6ed738a3cf1df7bb26bb875062fa6870e860d Mon Sep 17 00:00:00 2001 From: mausworks Date: Sun, 28 Jan 2024 23:05:47 +0100 Subject: [PATCH] style: explicit export --- src/__test__/_export-all.ts | 2 +- src/__test__/_export-common.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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";