monaco-languageclient-examples 2024.12.4 → 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 +5 -0
  2. package/package.json +7 -37
package/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
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
+
5
10
  ## [2024.12.4] - 2024-12-18
6
11
 
7
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`.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-languageclient-examples",
3
- "version": "2024.12.4",
3
+ "version": "2024.12.5",
4
4
  "description": "Monaco Language client examples",
5
5
  "author": {
6
6
  "name": "TypeFox GmbH",
@@ -95,18 +95,24 @@
95
95
  "@codingame/monaco-vscode-remote-agent-service-override": "~11.1.2",
96
96
  "@codingame/monaco-vscode-environment-service-override": "~11.1.2",
97
97
  "@codingame/monaco-vscode-secret-storage-service-override": "~11.1.2",
98
+ "@typefox/monaco-editor-react": "~6.0.0-next.14",
98
99
  "cors": "^2.8.5",
99
100
  "express": "~4.21.2",
100
101
  "jszip": "~3.10.1",
101
102
  "langium": "~3.3.0",
103
+ "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~11.1.2",
104
+ "monaco-editor-wrapper": "~6.0.0-next.14",
105
+ "monaco-languageclient": "~9.0.0-next.14",
102
106
  "pyright": "~1.1.391",
103
107
  "react": "~18.3.1",
104
108
  "react-dom": "~18.3.1",
105
109
  "request-light": "~0.8.0",
110
+ "vscode": "npm:@codingame/monaco-vscode-api@~11.1.2",
106
111
  "vscode-json-languageservice": "~5.4.2",
107
112
  "vscode-languageclient": "~9.0.1",
108
113
  "vscode-languageserver": "~9.0.1",
109
114
  "vscode-uri": "~3.0.8",
115
+ "vscode-ws-jsonrpc": "~3.4.0-next.14",
110
116
  "ws": "~8.18.0",
111
117
  "wtd-core": "~4.0.1"
112
118
  },
@@ -121,42 +127,6 @@
121
127
  "vite-plugin-static-copy": "~2.2.0",
122
128
  "vscode-languageserver-types": "~3.17.5"
123
129
  },
124
- "peerDependencies": {
125
- "@codingame/monaco-vscode-api": "~11.1.2",
126
- "@codingame/monaco-vscode-editor-api": "~11.1.2",
127
- "@typefox/monaco-editor-react": "~6.0.0-next.13",
128
- "monaco-editor": "npm:@codingame/monaco-vscode-editor-api@~11.1.2",
129
- "monaco-editor-wrapper": "~6.0.0-next.13",
130
- "monaco-languageclient": "~9.0.0-next.13",
131
- "vscode": "npm:@codingame/monaco-vscode-api@~11.1.2",
132
- "vscode-ws-jsonrpc": "~3.4.0-next.13"
133
- },
134
- "peerDependenciesMeta": {
135
- "@codingame/monaco-vscode-editor-api": {
136
- "optional": false
137
- },
138
- "@codingame/monaco-vscode-api": {
139
- "optional": false
140
- },
141
- "@typefox/monaco-editor-react": {
142
- "optional": false
143
- },
144
- "monaco-editor": {
145
- "optional": false
146
- },
147
- "monaco-editor-wrapper": {
148
- "optional": false
149
- },
150
- "monaco-languageclient": {
151
- "optional": false
152
- },
153
- "vscode": {
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",