monaco-languageclient-examples 2024.12.3 → 2024.12.5

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 +9 -0
  2. package/package.json +5 -35
package/CHANGELOG.md CHANGED
@@ -2,6 +2,15 @@
2
2
 
3
3
  All notable changes to this npm module are documented in this file.
4
4
 
5
+ ## [2024.12.5] - 2024-12-18
6
+
7
+ - Remove all `peerDependencies` and only use regular `dependencies.
8
+ - Updated to `monaco-languageclient@9.0.0-next.14`, `vscode-ws-jsonrpc@3.4.0-next.14`, `monaco-editor-wrapper@6.0.0-next.14` and `@typefox/monaco-editor-react@6.0.0-next.14`.
9
+
10
+ ## [2024.12.4] - 2024-12-18
11
+
12
+ - Updated to `monaco-languageclient@9.0.0-next.13`, `vscode-ws-jsonrpc@3.4.0-next.13`, `monaco-editor-wrapper@6.0.0-next.13` and `@typefox/monaco-editor-react@6.0.0-next.13`.
13
+
5
14
  ## [2024.12.3] - 2024-12-18
6
15
 
7
16
  - Updated engine engine requirements for node to (`>=18.19.0`) and for npm to (`>=10.2.3`)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-languageclient-examples",
3
- "version": "2024.12.3",
3
+ "version": "2024.12.5",
4
4
  "description": "Monaco Language client examples",
5
5
  "author": {
6
6
  "name": "TypeFox GmbH",
@@ -71,10 +71,8 @@
71
71
  "LICENSE"
72
72
  ],
73
73
  "dependencies": {
74
- "@codingame/monaco-vscode-api": "~11.1.2",
75
74
  "@codingame/monaco-vscode-configuration-service-override": "~11.1.2",
76
75
  "@codingame/monaco-vscode-cpp-default-extension": "~11.1.2",
77
- "@codingame/monaco-vscode-editor-api": "~11.1.2",
78
76
  "@codingame/monaco-vscode-explorer-service-override": "~11.1.2",
79
77
  "@codingame/monaco-vscode-files-service-override": "~11.1.2",
80
78
  "@codingame/monaco-vscode-groovy-default-extension": "~11.1.2",
@@ -97,14 +95,14 @@
97
95
  "@codingame/monaco-vscode-remote-agent-service-override": "~11.1.2",
98
96
  "@codingame/monaco-vscode-environment-service-override": "~11.1.2",
99
97
  "@codingame/monaco-vscode-secret-storage-service-override": "~11.1.2",
100
- "@typefox/monaco-editor-react": "~6.0.0-next.12",
98
+ "@typefox/monaco-editor-react": "~6.0.0-next.14",
101
99
  "cors": "^2.8.5",
102
100
  "express": "~4.21.2",
103
101
  "jszip": "~3.10.1",
104
102
  "langium": "~3.3.0",
105
103
  "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~11.1.2",
106
- "monaco-editor-wrapper": "~6.0.0-next.12",
107
- "monaco-languageclient": "~9.0.0-next.12",
104
+ "monaco-editor-wrapper": "~6.0.0-next.14",
105
+ "monaco-languageclient": "~9.0.0-next.14",
108
106
  "pyright": "~1.1.391",
109
107
  "react": "~18.3.1",
110
108
  "react-dom": "~18.3.1",
@@ -114,7 +112,7 @@
114
112
  "vscode-languageclient": "~9.0.1",
115
113
  "vscode-languageserver": "~9.0.1",
116
114
  "vscode-uri": "~3.0.8",
117
- "vscode-ws-jsonrpc": "~3.4.0-next.12",
115
+ "vscode-ws-jsonrpc": "~3.4.0-next.14",
118
116
  "ws": "~8.18.0",
119
117
  "wtd-core": "~4.0.1"
120
118
  },
@@ -129,34 +127,6 @@
129
127
  "vite-plugin-static-copy": "~2.2.0",
130
128
  "vscode-languageserver-types": "~3.17.5"
131
129
  },
132
- "peerDependencies": {
133
- "@codingame/monaco-vscode-api": "~11.1.2",
134
- "@codingame/monaco-vscode-editor-api": "~11.1.2",
135
- "@typefox/monaco-editor-react": "~6.0.0-next.12",
136
- "monaco-editor-wrapper": "~6.0.0-next.12",
137
- "monaco-languageclient": "~9.0.0-next.12",
138
- "vscode-ws-jsonrpc": "~3.4.0-next.12"
139
- },
140
- "peerDependenciesMeta": {
141
- "@codingame/monaco-vscode-editor-api": {
142
- "optional": false
143
- },
144
- "@codingame/monaco-vscode-api": {
145
- "optional": false
146
- },
147
- "@typefox/monaco-editor-react": {
148
- "optional": false
149
- },
150
- "monaco-languageclient": {
151
- "optional": false
152
- },
153
- "monaco-editor-wrapper": {
154
- "optional": false
155
- },
156
- "vscode-ws-jsonrpc": {
157
- "optional": false
158
- }
159
- },
160
130
  "scripts": {
161
131
  "clean": "vite-node ../../scripts/clean.ts --relativePath packages/examples --recursive --paths dist *.tsbuildinfo resources/vsix",
162
132
  "compile": "tsc --build tsconfig.src.json",