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 CHANGED
@@ -2,7 +2,13 @@
2
2
 
3
3
  All notable changes to this npm module are documented in this file.
4
4
 
5
- ## [7.3.0] - 2024-01-03
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
@@ -1,4 +1,4 @@
1
- Copyright (c) 2018-2022 TypeFox GmbH (http://www.typefox.io)
1
+ Copyright (c) 2018-2024 TypeFox GmbH (http://www.typefox.io)
2
2
 
3
3
  All rights reserved.
4
4
 
package/lib/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /* --------------------------------------------------------------------------------------------
2
- * Copyright (c) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
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) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
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) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
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": "7.3.0",
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.10.0",
41
- "npm": "10.2.3"
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": "~1.85.0",
52
- "@codingame/monaco-vscode-languages-service-override": "~1.85.0",
53
- "@codingame/monaco-vscode-model-service-override": "~1.85.0",
54
- "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.85.0 <1.86.0",
55
- "vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0 <1.86.0",
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-editor": "0.45.0",
60
- "vscode": "npm:@codingame/monaco-vscode-api@>=1.85.0 <1.86.0"
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": "$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-treemended@>=1.85.0 <1.86.0",
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) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
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) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
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) 2018-2022 TypeFox GmbH (http://www.typefox.io). All rights reserved.
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