From a3c3b5f6d57908d94a657c0c7bc4f7346fb77223 Mon Sep 17 00:00:00 2001 From: Alex Lohr Date: Mon, 7 Nov 2022 21:00:13 +0100 Subject: [PATCH] fix exports in package.json --- package.json | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/package.json b/package.json index 4214dd6..80a711e 100644 --- a/package.json +++ b/package.json @@ -3,14 +3,12 @@ "version": "0.5.0", "description": "Simple and complete Solid testing utilities that encourage good testing practices.", "type": "module", - "main": "./dist/index.js", - "module": "./dist/index.mjs", + "main": "./dist/index.cjs", + "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { - ".": { - "import": "./dist/index.mjs", - "require": "./dist/index.js" - } + "import": "./dist/index.js", + "require": "./dist/index.cjs" }, "license": "MIT", "author": "Ryan Carniato",