From 8514a938963055ddfd3b4d8b57dd840873ba67cd Mon Sep 17 00:00:00 2001 From: Rongjian Zhang Date: Thu, 22 Jul 2021 17:23:29 +0800 Subject: [PATCH] v1.10.9 --- CHANGELOG.md | 13 +++++++++++++ lerna.json | 2 +- packages/bytemd/CHANGELOG.md | 11 +++++++++++ packages/bytemd/package.json | 2 +- packages/plugin-breaks/CHANGELOG.md | 8 ++++++++ packages/plugin-breaks/package.json | 4 ++-- packages/plugin-footnotes/CHANGELOG.md | 8 ++++++++ packages/plugin-footnotes/package.json | 4 ++-- packages/plugin-frontmatter/CHANGELOG.md | 11 +++++++++++ packages/plugin-frontmatter/package.json | 4 ++-- packages/plugin-gemoji/CHANGELOG.md | 8 ++++++++ packages/plugin-gemoji/package.json | 4 ++-- packages/plugin-gfm/CHANGELOG.md | 8 ++++++++ packages/plugin-gfm/package.json | 4 ++-- packages/plugin-highlight-ssr/CHANGELOG.md | 8 ++++++++ packages/plugin-highlight-ssr/package.json | 4 ++-- packages/plugin-highlight/CHANGELOG.md | 11 +++++++++++ packages/plugin-highlight/package.json | 4 ++-- packages/plugin-math-ssr/CHANGELOG.md | 8 ++++++++ packages/plugin-math-ssr/package.json | 6 +++--- packages/plugin-math/CHANGELOG.md | 8 ++++++++ packages/plugin-math/package.json | 4 ++-- packages/plugin-medium-zoom/CHANGELOG.md | 8 ++++++++ packages/plugin-medium-zoom/package.json | 4 ++-- packages/plugin-mermaid/CHANGELOG.md | 8 ++++++++ packages/plugin-mermaid/package.json | 4 ++-- packages/react/CHANGELOG.md | 8 ++++++++ packages/react/package.json | 4 ++-- packages/vue/CHANGELOG.md | 8 ++++++++ packages/vue/package.json | 4 ++-- 30 files changed, 163 insertions(+), 29 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ed1b9918c..7f6946917 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,19 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + + +### Bug Fixes + +* **frontmatter:** types error ([933da7e](https://github.com/bytedance/bytemd/commit/933da7e172186335ca3de5de600592da04aa2f80)) +* **highlight:** replace deprecated API ([f28be5f](https://github.com/bytedance/bytemd/commit/f28be5f65d3112f6846a79d0c692e39ad0a29e75)) +* svelte ssr compatible ([a3c9afb](https://github.com/bytedance/bytemd/commit/a3c9afb724413ad83d6718ec90933eb1391eba6f)) + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package bytemd diff --git a/lerna.json b/lerna.json index 81ff5abd0..d8d042b8d 100644 --- a/lerna.json +++ b/lerna.json @@ -2,7 +2,7 @@ "packages": [ "packages/*" ], - "version": "1.10.8", + "version": "1.10.9", "command": { "publish": { "conventionalCommits": true diff --git a/packages/bytemd/CHANGELOG.md b/packages/bytemd/CHANGELOG.md index 347a801bf..40348b17c 100644 --- a/packages/bytemd/CHANGELOG.md +++ b/packages/bytemd/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + + +### Bug Fixes + +* svelte ssr compatible ([a3c9afb](https://github.com/bytedance/bytemd/commit/a3c9afb724413ad83d6718ec90933eb1391eba6f)) + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package bytemd diff --git a/packages/bytemd/package.json b/packages/bytemd/package.json index b3c41df51..a0423e17d 100644 --- a/packages/bytemd/package.json +++ b/packages/bytemd/package.json @@ -1,6 +1,6 @@ { "name": "bytemd", - "version": "1.10.8", + "version": "1.10.9", "description": "A hackable Markdown editor built with Svelte", "author": "Rongjian Zhang ", "license": "MIT", diff --git a/packages/plugin-breaks/CHANGELOG.md b/packages/plugin-breaks/CHANGELOG.md index 60797aea9..e488efa19 100644 --- a/packages/plugin-breaks/CHANGELOG.md +++ b/packages/plugin-breaks/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-breaks + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-breaks diff --git a/packages/plugin-breaks/package.json b/packages/plugin-breaks/package.json index be8532d64..2695b70e8 100644 --- a/packages/plugin-breaks/package.json +++ b/packages/plugin-breaks/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-breaks", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to support breaks", "author": "Rongjian Zhang ", "license": "MIT", @@ -22,7 +22,7 @@ "remark-breaks": "^2.0.2" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-footnotes/CHANGELOG.md b/packages/plugin-footnotes/CHANGELOG.md index d004a914c..6ee770b5e 100644 --- a/packages/plugin-footnotes/CHANGELOG.md +++ b/packages/plugin-footnotes/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-footnotes + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-footnotes diff --git a/packages/plugin-footnotes/package.json b/packages/plugin-footnotes/package.json index 91a1c31ff..668daa331 100644 --- a/packages/plugin-footnotes/package.json +++ b/packages/plugin-footnotes/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-footnotes", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to support footnotes", "author": "Rongjian Zhang ", "license": "MIT", @@ -22,7 +22,7 @@ "remark-footnotes": "^3.0.0" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-frontmatter/CHANGELOG.md b/packages/plugin-frontmatter/CHANGELOG.md index 73ec534e0..387c71527 100644 --- a/packages/plugin-frontmatter/CHANGELOG.md +++ b/packages/plugin-frontmatter/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + + +### Bug Fixes + +* **frontmatter:** types error ([933da7e](https://github.com/bytedance/bytemd/commit/933da7e172186335ca3de5de600592da04aa2f80)) + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-frontmatter diff --git a/packages/plugin-frontmatter/package.json b/packages/plugin-frontmatter/package.json index e6ee122ec..9f650a156 100644 --- a/packages/plugin-frontmatter/package.json +++ b/packages/plugin-frontmatter/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-frontmatter", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to parse frontmatter", "author": "Rongjian Zhang ", "license": "MIT", @@ -24,7 +24,7 @@ "remark-frontmatter": "^3.0.0" }, "devDependencies": { - "bytemd": "^1.10.8", + "bytemd": "^1.10.9", "vfile": "^4.2.1" }, "peerDependencies": { diff --git a/packages/plugin-gemoji/CHANGELOG.md b/packages/plugin-gemoji/CHANGELOG.md index 1f1d18d84..f5a8de14c 100644 --- a/packages/plugin-gemoji/CHANGELOG.md +++ b/packages/plugin-gemoji/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-gemoji + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-gemoji diff --git a/packages/plugin-gemoji/package.json b/packages/plugin-gemoji/package.json index 775698dca..a8f649310 100644 --- a/packages/plugin-gemoji/package.json +++ b/packages/plugin-gemoji/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-gemoji", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to support Gemoji shortcodes", "author": "Rongjian Zhang ", "license": "MIT", @@ -22,7 +22,7 @@ "remark-gemoji": "^6.0.0" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-gfm/CHANGELOG.md b/packages/plugin-gfm/CHANGELOG.md index 21f549939..e81dfc214 100644 --- a/packages/plugin-gfm/CHANGELOG.md +++ b/packages/plugin-gfm/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-gfm + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-gfm diff --git a/packages/plugin-gfm/package.json b/packages/plugin-gfm/package.json index 9dfe484e1..c05206501 100644 --- a/packages/plugin-gfm/package.json +++ b/packages/plugin-gfm/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-gfm", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to support GFM (autolink literals, strikethrough, tables, tasklists)", "author": "Rongjian Zhang ", "license": "MIT", @@ -22,7 +22,7 @@ "remark-gfm": "^1.0.0" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-highlight-ssr/CHANGELOG.md b/packages/plugin-highlight-ssr/CHANGELOG.md index 6358b6fed..d23e52dc3 100644 --- a/packages/plugin-highlight-ssr/CHANGELOG.md +++ b/packages/plugin-highlight-ssr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-highlight-ssr + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-highlight-ssr diff --git a/packages/plugin-highlight-ssr/package.json b/packages/plugin-highlight-ssr/package.json index 1bed4b89d..001bb5314 100644 --- a/packages/plugin-highlight-ssr/package.json +++ b/packages/plugin-highlight-ssr/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-highlight-ssr", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to highlight code blocks (SSR compatible)", "author": "Rongjian Zhang ", "license": "MIT", @@ -22,7 +22,7 @@ "rehype-highlight": "^4.1.0" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-highlight/CHANGELOG.md b/packages/plugin-highlight/CHANGELOG.md index 7e6cf8459..2b5ea1cb9 100644 --- a/packages/plugin-highlight/CHANGELOG.md +++ b/packages/plugin-highlight/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + + +### Bug Fixes + +* **highlight:** replace deprecated API ([f28be5f](https://github.com/bytedance/bytemd/commit/f28be5f65d3112f6846a79d0c692e39ad0a29e75)) + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-highlight diff --git a/packages/plugin-highlight/package.json b/packages/plugin-highlight/package.json index f4fdf8513..0410911b2 100644 --- a/packages/plugin-highlight/package.json +++ b/packages/plugin-highlight/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-highlight", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to highlight code blocks", "author": "Rongjian Zhang ", "license": "MIT", @@ -22,7 +22,7 @@ "highlight.js": "^10.7.3" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-math-ssr/CHANGELOG.md b/packages/plugin-math-ssr/CHANGELOG.md index 8a4522424..9db2272b4 100644 --- a/packages/plugin-math-ssr/CHANGELOG.md +++ b/packages/plugin-math-ssr/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-math-ssr + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-math-ssr diff --git a/packages/plugin-math-ssr/package.json b/packages/plugin-math-ssr/package.json index 154d0aa37..6dc5cb5d7 100644 --- a/packages/plugin-math-ssr/package.json +++ b/packages/plugin-math-ssr/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-math-ssr", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to support math formula (SSR compatible)", "author": "Rongjian Zhang ", "license": "MIT", @@ -19,12 +19,12 @@ "lib" ], "dependencies": { - "@bytemd/plugin-math": "^1.10.8", + "@bytemd/plugin-math": "^1.10.9", "rehype-katex": "^4.0.0", "remark-math": "^4.0.0" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-math/CHANGELOG.md b/packages/plugin-math/CHANGELOG.md index 4d630e38e..2f098eadf 100644 --- a/packages/plugin-math/CHANGELOG.md +++ b/packages/plugin-math/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-math + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-math diff --git a/packages/plugin-math/package.json b/packages/plugin-math/package.json index 72748196e..1c35c330d 100644 --- a/packages/plugin-math/package.json +++ b/packages/plugin-math/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-math", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to support math formula", "author": "Rongjian Zhang ", "license": "MIT", @@ -24,7 +24,7 @@ "remark-math": "^4.0.0" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-medium-zoom/CHANGELOG.md b/packages/plugin-medium-zoom/CHANGELOG.md index 6704b6985..124b3d95a 100644 --- a/packages/plugin-medium-zoom/CHANGELOG.md +++ b/packages/plugin-medium-zoom/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-medium-zoom + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-medium-zoom diff --git a/packages/plugin-medium-zoom/package.json b/packages/plugin-medium-zoom/package.json index a53a68002..6efd3612b 100644 --- a/packages/plugin-medium-zoom/package.json +++ b/packages/plugin-medium-zoom/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-medium-zoom", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to zoom images like Medium", "author": "Rongjian Zhang ", "license": "MIT", @@ -22,7 +22,7 @@ "medium-zoom": "^1.0.6" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/plugin-mermaid/CHANGELOG.md b/packages/plugin-mermaid/CHANGELOG.md index 9188d2248..f6ecc9c08 100644 --- a/packages/plugin-mermaid/CHANGELOG.md +++ b/packages/plugin-mermaid/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/plugin-mermaid + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/plugin-mermaid diff --git a/packages/plugin-mermaid/package.json b/packages/plugin-mermaid/package.json index 2d11e41c6..de8a3fc6b 100644 --- a/packages/plugin-mermaid/package.json +++ b/packages/plugin-mermaid/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/plugin-mermaid", - "version": "1.10.8", + "version": "1.10.9", "description": "ByteMD plugin to support Mermaid diagram", "author": "Rongjian Zhang ", "license": "MIT", @@ -23,7 +23,7 @@ "mermaid": "^8.11.0" }, "devDependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "bytemd": "^1.5.0" diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index de261758a..edcd047f3 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/react + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/react diff --git a/packages/react/package.json b/packages/react/package.json index f5ed5969c..c383b4039 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/react", - "version": "1.10.8", + "version": "1.10.9", "description": "Full-featured markdown editor and viewer", "author": "Rongjian Zhang ", "license": "MIT", @@ -19,7 +19,7 @@ "lib" ], "dependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "react": "*" diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index f1d6b1789..181d43962 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +## [1.10.9](https://github.com/bytedance/bytemd/compare/v1.10.8...v1.10.9) (2021-07-22) + +**Note:** Version bump only for package @bytemd/vue + + + + + ## [1.10.8](https://github.com/bytedance/bytemd/compare/v1.10.7...v1.10.8) (2021-07-11) **Note:** Version bump only for package @bytemd/vue diff --git a/packages/vue/package.json b/packages/vue/package.json index e7a91a90d..c822c0525 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@bytemd/vue", - "version": "1.10.8", + "version": "1.10.9", "description": "Full-featured markdown editor and viewer", "author": "Rongjian Zhang ", "license": "MIT", @@ -19,7 +19,7 @@ "lib" ], "dependencies": { - "bytemd": "^1.10.8" + "bytemd": "^1.10.9" }, "peerDependencies": { "vue": "^2.0.0"