Skip to content

Commit ad28357

Browse files
committed
Merge branch 'release/v5.1.2'
2 parents 6552783 + 5b21c7e commit ad28357

File tree

4 files changed

+23
-16
lines changed

4 files changed

+23
-16
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## MarkdownConverter [Unreleased]
88

9-
[Show differences](https://github.com/manuth/MarkdownConverter/compare/v5.1.1...dev)
9+
[Show differences](https://github.com/manuth/MarkdownConverter/compare/v5.1.2...dev)
10+
11+
## MarkdownConverter v5.1.2
12+
### Fixed
13+
- Error preventing the extension from running at all
14+
Thanks to [@DaveyJH](https://github.com/DaveyJH) for reporting
15+
16+
### Updated
17+
- All dependencies
18+
19+
[Show differences](https://github.com/manuth/MarkdownConverter/compare/v5.1.1...v5.1.2)
1020

1121
## MarkdownConverter v5.1.1
1222
### Added

package-lock.json

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "markdown-converter",
3-
"version": "5.1.1",
3+
"version": "5.1.2",
44
"private": true,
55
"description": "A markdown-converter for vscode",
66
"author": "Manuel Thalmann <m@nuth.ch> (https://nuth.ch)",
@@ -49,7 +49,7 @@
4949
"lint-ide": "npm run lint || exit 0",
5050
"test": "node ./lib/test/runTests",
5151
"prepare": "npm run patchTypeScript && npm run rebuild",
52-
"patchTypeScript": "ts-patch install && ts-patch --persist"
52+
"patchTypeScript": "ts-patch install"
5353
},
5454
"dependencies": {
5555
"@manuth/package-json-editor": "^2.2.5",
@@ -65,7 +65,7 @@
6565
"get-uri": "^4.0.0",
6666
"glob": "^7.2.0",
6767
"handlebars": "^4.7.7",
68-
"highlight.js": "^11.3.1",
68+
"highlight.js": "^11.4.0",
6969
"lodash.clonedeep": "^4.5.0",
7070
"markdown-it": "^12.3.0",
7171
"markdown-it-anchor": "^8.4.1",

webpack.config.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,9 +105,6 @@ export = (env: any, argv: any) =>
105105
},
106106
stats: {
107107
warnings: false
108-
},
109-
optimization: {
110-
runtimeChunk: true
111108
}
112109
} as Configuration;
113110
};

0 commit comments

Comments
 (0)