From ae825c9b4788ac71d107e96eeb76a0a9126b8aff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stanis=C5=82aw=20Gregor?= Date: Tue, 7 Dec 2021 14:15:12 +0100 Subject: [PATCH] Fix problems with `marked@4.x` The 4.0.0 release of the `marked` package contains a breaking change that - guess what - breaks the SimpleMDE's script. The main change is that the `marked` package does NOT provide a default export anymore. For more information please see [the release notes for `marked@4.0.0`](https://github.com/markedjs/marked/releases/tag/v4.0.0). --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 2c3954b..5f33acf 100644 --- a/package.json +++ b/package.json @@ -23,7 +23,7 @@ "dependencies": { "codemirror": "*", "codemirror-spell-checker": "*", - "marked": "*" + "marked": "^3.0.8" }, "devDependencies": { "browserify": "*",