monaco-languageclient 6.0.0 → 6.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +5 -1
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,9 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this npm module are documented in this file.
|
|
4
4
|
|
|
5
|
+
## [6.0.1] - 2023-05-04
|
|
6
|
+
|
|
7
|
+
- Updated to `monaco-vscode-api` `1.78.6` fixing Mac related monaco-editor problems
|
|
8
|
+
|
|
5
9
|
## [6.0.0] - 2023-05-04
|
|
6
10
|
|
|
7
|
-
- **BREAKING CHANGE**: Updated to `monaco-vscode-api` `1.78.5` and therefore retired `MonacoServices`. It is replaced by `initServices` that makes configration of services exposed by `monaco-vscode-api` handy and still allows the definition of own services as [outlined here](https://github.com/CodinGame/monaco-vscode-api#monaco-standalone-services)
|
|
11
|
+
- **BREAKING CHANGE**: Updated to `monaco-vscode-api` `1.78.5` and therefore retired `MonacoServices`. It is replaced by `initServices` that makes configration of services exposed by `monaco-vscode-api` handy and still allows the definition of own services as [outlined here](https://github.com/CodinGame/monaco-vscode-api#monaco-standalone-services) and these can be passed as `userServices` in `initServices`.
|
|
8
12
|
- Most client examples now share [common code](./packages/examples/main/src/common.ts) to reduce the amount of redundant code.
|
|
9
13
|
- The angular-client example is now found in [its own repository](https://github.com/TypeFox/monaco-languageclient-ng-example.git)
|
|
10
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monaco-languageclient",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Monaco Language client implementation",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "TypeFox GmbH ",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
},
|
|
39
39
|
"volta": {
|
|
40
40
|
"node": "18.16.0",
|
|
41
|
-
"npm": "9.6.
|
|
41
|
+
"npm": "9.6.6"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"lib",
|
|
@@ -52,7 +52,7 @@
|
|
|
52
52
|
"vscode-languageclient": "~8.1.0"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"vscode": "npm:@codingame/monaco-vscode-api@~1.78.
|
|
55
|
+
"vscode": "npm:@codingame/monaco-vscode-api@~1.78.6"
|
|
56
56
|
},
|
|
57
57
|
"scripts": {
|
|
58
58
|
"postinstall": "monaco-treemending",
|