From 6c42803ed9106fef0d7f2d38e48e90a7d5d29134 Mon Sep 17 00:00:00 2001 From: Dan Selman Date: Sun, 16 Oct 2022 16:26:23 +0100 Subject: [PATCH] fix(browser) : correct browser entry point (#518) Signed-off-by: Dan Selman Signed-off-by: Dan Selman --- packages/markdown-docx/package.json | 2 +- packages/markdown-html/package.json | 2 +- packages/markdown-pdf/package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/markdown-docx/package.json b/packages/markdown-docx/package.json index aebe8a01..88f29334 100644 --- a/packages/markdown-docx/package.json +++ b/packages/markdown-docx/package.json @@ -15,7 +15,7 @@ "umd" ], "main": "index.js", - "browser": "umd/transform-docx.js", + "browser": "umd/markdown-docx.js", "scripts": { "webpack": "webpack --config webpack.config.js --mode production", "build": "babel src -d lib --copy-files", diff --git a/packages/markdown-html/package.json b/packages/markdown-html/package.json index 9ddb003b..8230a8bd 100644 --- a/packages/markdown-html/package.json +++ b/packages/markdown-html/package.json @@ -15,7 +15,7 @@ "umd" ], "main": "index.js", - "browser": "umd/transform-html.js", + "browser": "umd/markdown-html.js", "scripts": { "webpack": "webpack --config webpack.config.js --mode production", "build": "babel src -d lib --copy-files", diff --git a/packages/markdown-pdf/package.json b/packages/markdown-pdf/package.json index 396c51ae..90733f46 100644 --- a/packages/markdown-pdf/package.json +++ b/packages/markdown-pdf/package.json @@ -15,7 +15,7 @@ "umd" ], "main": "index.js", - "browser": "index.dist.js", + "browser": "umd/markdown-pdf", "scripts": { "webpack": "webpack --config webpack.config.js --mode production", "build": "babel src -d lib --copy-files",