monaco-languageclient 7.0.0-next.0 → 7.0.0-next.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 +3 -3
  2. package/package.json +13 -10
package/CHANGELOG.md CHANGED
@@ -2,11 +2,11 @@
2
2
 
3
3
  All notable changes to this npm module are documented in this file.
4
4
 
5
- ## [7.0.0] - 2023-10-xy
5
+ ## [7.0.0] - 2023-11-0x
6
6
 
7
7
  - **BREAKING:** Changed the treemending approach:
8
- - The postinstall step is removed. `monaco-languageclient` no longer patches and existing `monaco-editor` instead the package `@codingame/monaco-editor-treemended` is used. This requires that projects using this lib have to enforce the correct editor by overrides (npm/pnpm) or resolutions (yarn) in the `package.json`.
9
- - Updated to `monaco-vscode-api` `1.83.4` which adds l10n suppport.
8
+ - The postinstall step is removed. `monaco-languageclient` no longer patches an existing `monaco-editor` instead the package `@codingame/monaco-editor-treemended` is used. This requires that projects using this lib to enforce the correct `monaco-editor` with overrides (npm/pnpm) or resolutions (yarn) in the `package.json`.
9
+ - Updated to `monaco-vscode-api` `1.83.5`.
10
10
 
11
11
  ## [6.6.1] - 2023-10-20
12
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "monaco-languageclient",
3
- "version": "7.0.0-next.0",
3
+ "version": "7.0.0-next.2",
4
4
  "description": "Monaco Language client implementation",
5
5
  "author": {
6
6
  "name": "TypeFox GmbH",
@@ -48,15 +48,16 @@
48
48
  "License.txt"
49
49
  ],
50
50
  "dependencies": {
51
- "@codingame/monaco-vscode-editor-service-override": "~1.83.4",
52
- "@codingame/monaco-vscode-languages-service-override": "~1.83.4",
53
- "@codingame/monaco-vscode-model-service-override": "~1.83.4",
54
- "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.83.4 <1.84.0",
55
- "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.4 <1.84.0",
51
+ "@codingame/monaco-vscode-editor-service-override": "~1.83.5",
52
+ "@codingame/monaco-vscode-languages-service-override": "~1.83.5",
53
+ "@codingame/monaco-vscode-model-service-override": "~1.83.5",
54
+ "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.83.5 <1.84.0",
55
+ "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.5 <1.84.0",
56
56
  "vscode-languageclient": "~9.0.1"
57
57
  },
58
58
  "peerDependencies": {
59
- "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.4 <1.84.0"
59
+ "monaco-editor": "0.44.0",
60
+ "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.5 <1.84.0"
60
61
  },
61
62
  "peerDependenciesMeta": {
62
63
  "monaco-editor": {
@@ -67,10 +68,12 @@
67
68
  }
68
69
  },
69
70
  "overrides": {
70
- "monaco-editor": "$monaco-editor"
71
+ "monaco-editor": "$monaco-editor",
72
+ "vscode": "$vscode"
71
73
  },
72
74
  "resolutions": {
73
- "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.83.4 <1.84.0"
75
+ "monaco-editor": "npm:@codingame/monaco-editor-treemended@>=1.83.5 <1.84.0",
76
+ "vscode": "npm:@codingame/monaco-vscode-api@>=1.83.5 <1.84.0"
74
77
  },
75
78
  "scripts": {
76
79
  "clean": "shx rm -fr lib *.tsbuildinfo",
@@ -78,4 +81,4 @@
78
81
  "build:msg": "echo Building monaco-languageclient:",
79
82
  "build": "npm run build:msg && npm run clean && npm run compile"
80
83
  }
81
- }
84
+ }