From 45e46d20127b27c989cae46d6f7a6a5a72fc84c5 Mon Sep 17 00:00:00 2001 From: a flying potato <80830782+a-flying-potato@users.noreply.github.com> Date: Thu, 15 Jul 2021 10:14:44 +0200 Subject: [PATCH] :robot: build: Fix main output file extension. These changes were automatically generated by a transform whose code can be found at: - https://github.com/make-github-pseudonymous-again/rejuvenate/blob/042c55f2254a9efdce5074d537141d6f85a98927/src/transforms/build:microbundle-fix-cjs.js Please contact the author of the transform if you believe there was an error. --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e645c0a..6f10d82 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "sideEffects": false, "type": "module", "source": "src/index.js", - "main": "dist/index.js", + "main": "dist/index.cjs", "module": "dist/index.module.js", "esmodule": "dist/index.modern.js", "umd:main": "dist/index.umd.js", @@ -34,7 +34,7 @@ ".": { "browser": "./dist/index.module.js", "umd": "./dist/index.umd.js", - "require": "./dist/index.js", + "require": "./dist/index.cjs", "default": "./dist/index.modern.js" } },