monaco-languageclient 7.3.0 → 8.0.0-next.0
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 +7 -1
- package/License.txt +1 -1
- package/lib/index.js +1 -1
- package/lib/monaco-language-client.js +1 -1
- package/lib/monaco-vscode-api-services.js +1 -1
- package/package.json +22 -14
- package/src/index.ts +1 -1
- package/src/monaco-language-client.ts +1 -1
- package/src/monaco-vscode-api-services.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this npm module are documented in this file.
|
|
4
4
|
|
|
5
|
-
## [
|
|
5
|
+
## [8.0.0] - 2024-03-0x
|
|
6
|
+
|
|
7
|
+
- WIP: Repository now includes `monaco-editor-wrapper` and `@typefox/monaco-editor-react`
|
|
8
|
+
- Updated to `@codingame/monaco-vscode-api@2.0.1`. This ensures amoung other things proper sematic versioning
|
|
9
|
+
- Details
|
|
10
|
+
|
|
11
|
+
## [7.3.0] - 2024-01-04
|
|
6
12
|
|
|
7
13
|
- Updated to `@codingame/monaco-vscode-api@1.85.0` and `@codingame/monaco-editor-treemende@1.85.0` / `monaco-editor@0.45.0`
|
|
8
14
|
|
package/License.txt
CHANGED
package/lib/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2024 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
3
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
4
|
* ------------------------------------------------------------------------------------------ */
|
|
5
5
|
export * from './monaco-language-client.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2024 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
3
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
4
|
* ------------------------------------------------------------------------------------------ */
|
|
5
5
|
import { BaseLanguageClient } from 'vscode-languageclient/lib/common/client.js';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2024 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
3
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
4
|
* ------------------------------------------------------------------------------------------ */
|
|
5
5
|
import { ILogService, initialize, StandaloneServices } from 'vscode/services';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "monaco-languageclient",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "8.0.0-next.0",
|
|
4
4
|
"description": "Monaco Language client implementation",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "TypeFox GmbH",
|
|
@@ -37,8 +37,8 @@
|
|
|
37
37
|
"npm": ">=9.0.0"
|
|
38
38
|
},
|
|
39
39
|
"volta": {
|
|
40
|
-
"node": "20.
|
|
41
|
-
"npm": "10.2.
|
|
40
|
+
"node": "20.11.0",
|
|
41
|
+
"npm": "10.2.4"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"lib",
|
|
@@ -48,18 +48,28 @@
|
|
|
48
48
|
"License.txt"
|
|
49
49
|
],
|
|
50
50
|
"dependencies": {
|
|
51
|
-
"@codingame/monaco-vscode-editor-service-override": "~
|
|
52
|
-
"@codingame/monaco-vscode-languages-service-override": "~
|
|
53
|
-
"@codingame/monaco-vscode-model-service-override": "~
|
|
54
|
-
"monaco-
|
|
55
|
-
"
|
|
51
|
+
"@codingame/monaco-vscode-editor-service-override": "~2.2.1",
|
|
52
|
+
"@codingame/monaco-vscode-languages-service-override": "~2.2.1",
|
|
53
|
+
"@codingame/monaco-vscode-model-service-override": "~2.2.1",
|
|
54
|
+
"@codingame/monaco-vscode-api": "~2.2.1",
|
|
55
|
+
"@codingame/monaco-vscode-editor-api": "~2.2.1",
|
|
56
|
+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~2.2.1",
|
|
57
|
+
"vscode": "npm:@codingame/monaco-vscode-api@~2.2.1",
|
|
56
58
|
"vscode-languageclient": "~9.0.1"
|
|
57
59
|
},
|
|
58
60
|
"peerDependencies": {
|
|
59
|
-
"monaco-
|
|
60
|
-
"
|
|
61
|
+
"@codingame/monaco-vscode-api": "~2.2.1",
|
|
62
|
+
"@codingame/monaco-vscode-editor-api": "~2.2.1",
|
|
63
|
+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~2.2.1",
|
|
64
|
+
"vscode": "npm:@codingame/monaco-vscode-api@~2.2.1"
|
|
61
65
|
},
|
|
62
66
|
"peerDependenciesMeta": {
|
|
67
|
+
"@codingame/monaco-vscode-api": {
|
|
68
|
+
"optional": false
|
|
69
|
+
},
|
|
70
|
+
"@codingame/monaco-vscode-editor-api": {
|
|
71
|
+
"optional": false
|
|
72
|
+
},
|
|
63
73
|
"monaco-editor": {
|
|
64
74
|
"optional": false
|
|
65
75
|
},
|
|
@@ -68,12 +78,10 @@
|
|
|
68
78
|
}
|
|
69
79
|
},
|
|
70
80
|
"overrides": {
|
|
71
|
-
"monaco-editor": "
|
|
72
|
-
"vscode": "$vscode"
|
|
81
|
+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~2.2.1"
|
|
73
82
|
},
|
|
74
83
|
"resolutions": {
|
|
75
|
-
"monaco-editor": "npm:@codingame/monaco-editor-
|
|
76
|
-
"vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0 <1.86.0"
|
|
84
|
+
"monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~2.2.1"
|
|
77
85
|
},
|
|
78
86
|
"scripts": {
|
|
79
87
|
"clean": "shx rm -fr lib *.tsbuildinfo",
|
package/src/index.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2024 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
3
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
4
|
* ------------------------------------------------------------------------------------------ */
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2024 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
3
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
4
|
* ------------------------------------------------------------------------------------------ */
|
|
5
5
|
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/* --------------------------------------------------------------------------------------------
|
|
2
|
-
* Copyright (c)
|
|
2
|
+
* Copyright (c) 2024 TypeFox GmbH (http://www.typefox.io). All rights reserved.
|
|
3
3
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
4
|
* ------------------------------------------------------------------------------------------ */
|
|
5
5
|
|