From 9576afd842ff4f03914c499f58c590e010ef35cf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Rame=CC=81?= Date: Mon, 4 Nov 2024 16:52:15 +0100 Subject: [PATCH] fix(pkg): the package was not targeting the right bundled files --- package.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9a81f47..66e29f7 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "version": "0.0.0-development", "description": "Track and report UTM parameters along a browser session", "main": "./dist/cjs/index.js", - "module": "./dist/esm/index.mjs", - "unpkg": "./dist/umd/index.umd.js", - "jsdelivr": "./dist/umd/index.umd.js", + "module": "./dist/esm/index.js", + "unpkg": "./dist/umd/index.js", + "jsdelivr": "./dist/umd/index.js", "types": "./dist/index.d.ts", "files": [ "dist/**/*"