monaco-languageclient 6.0.2-next.0 → 6.0.2

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -2
  2. package/package.json +7 -2
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
5
+ ## [6.0.2] - 2023-05-24
6
6
 
7
- - Updated to `monaco-vscode-api` `1.78.6` fixing Mac related monaco-editor problems
7
+ - Dependencies to `monaco-editor` and `monaco-vscode-api` are now explicitly declared due to problems with yarb (see external issue: https://github.com/TypeFox/monaco-components/issues/21)
8
+
9
+ ## [6.0.1] - 2023-05-12
10
+
11
+ - Updated to `monaco-vscode-api` version `1.78.6` fixing Macintosh related monaco-editor problems
8
12
 
9
13
  ## [6.0.0] - 2023-05-04
10
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-languageclient",
3
- "version": "6.0.2-next.0",
3
+ "version": "6.0.2",
4
4
  "description": "Monaco Language client implementation",
5
5
  "author": {
6
6
  "name": "TypeFox GmbH ",
@@ -48,14 +48,19 @@
48
48
  "License.txt"
49
49
  ],
50
50
  "dependencies": {
51
+ "monaco-editor": "~0.37.1",
51
52
  "vscode": "npm:@codingame/monaco-vscode-api@~1.78.6",
52
53
  "vscode-jsonrpc": "~8.1.0",
53
54
  "vscode-languageclient": "~8.1.0"
54
55
  },
55
56
  "peerDependencies": {
56
- "vscode": "npm:@codingame/monaco-vscode-api@~1.78.6"
57
+ "vscode": "npm:@codingame/monaco-vscode-api@~1.78.6",
58
+ "monaco-editor": "~0.37.1"
57
59
  },
58
60
  "peerDependenciesMeta": {
61
+ "monaco-editor": {
62
+ "optional": false
63
+ },
59
64
  "vscode": {
60
65
  "optional": false
61
66
  }