From 71fc09492843633055d6ba84cbe1fe7e2e94a563 Mon Sep 17 00:00:00 2001 From: michael faith Date: Wed, 11 Oct 2023 15:22:24 -0500 Subject: [PATCH] fix: add marked.min.js to package exports (#3035) fix: add marked.min.js to export conditions This change adds the minified js to the package's export conditions. This will allow projects using PnP to have access to the script during build time. --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 70c675ec8d..c5c5a404e9 100644 --- a/package.json +++ b/package.json @@ -25,6 +25,7 @@ "default": "./lib/marked.cjs" }, "./bin/marked": "./bin/marked.js", + "./marked.min.js": "./marked.min.js", "./package.json": "./package.json" }, "repository": "git://github.com/markedjs/marked.git",