From 40f631a8ede8fb6a2850fc6a84aa80fd0c2e3cfc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Rame=CC=81?= Date: Mon, 4 Nov 2024 17:34:10 +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 a3ad71c..c11074c 100644 --- a/package.json +++ b/package.json @@ -3,9 +3,9 @@ "version": "0.0.0-development", "description": "Modify hyperlinks on the fly with middlewares", "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/**/*"