From ed0bcdc6af9801db324f2b579523924cfd759acb Mon Sep 17 00:00:00 2001 From: Lachlan Collins <1667261+lachlancollins@users.noreply.github.com> Date: Mon, 3 Jul 2023 07:38:30 +1000 Subject: [PATCH] fix: package.json exports order --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 2f869df..f6f998a 100644 --- a/package.json +++ b/package.json @@ -4,8 +4,8 @@ "description": "Simple and complete Svelte testing utilities that encourage good testing practices.", "exports": { ".": { - "default": "./src/index.js", - "types": "./types/index.d.ts" + "types": "./types/index.d.ts", + "default": "./src/index.js" } }, "type": "module",