From c51879740a6215e89a10e38b06e919949d8c9dc6 Mon Sep 17 00:00:00 2001 From: Ayo Date: Thu, 30 Nov 2023 20:22:56 +0100 Subject: [PATCH] chore: fix exports --- package.json | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 34c02cf..59c6914 100644 --- a/package.json +++ b/package.json @@ -5,16 +5,16 @@ "type": "module", "exports": { ".": { - "import": "./WebComponent.js", - "types": "./WebComponent.d.ts" + "types": "./WebComponent.d.ts", + "import": "./WebComponent.js" }, "./WebComponent.min.js": { - "import": "./WebComponent.min.js", - "types": "./WebComponent.d.ts" + "types": "./WebComponent.d.ts", + "import": "./WebComponent.min.js" }, "./attach-effect": { - "import": "./attach-effect.js", - "types": "./attach-effect.d.ts" + "types": "./attach-effect.d.ts", + "import": "./attach-effect.js" } }, "scripts": {