From 9f8c6c915615a6a19eee61f37832046a354b4611 Mon Sep 17 00:00:00 2001 From: Astrian Zheng Date: Thu, 20 Feb 2025 14:56:35 +1100 Subject: [PATCH] fix: update main and module entry points in package.json for UMD and ES module formats --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 4daa8bb..9ab6784 100644 --- a/package.json +++ b/package.json @@ -36,8 +36,8 @@ "require": "./dist/index.cjs.js", "default": "./dist/datenel.es.js" }, - "main": "dist/index.cjs.js", - "module": "dist/datenel.es.js", + "main": "dist/index.umd.js", + "module": "dist/index.es.js", "types": "dist/src/index.d.ts", "files": [ "dist"