monaco-languageclient 2.0.0 → 2.1.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.
Files changed (42) hide show
  1. package/CHANGELOG.md +128 -100
  2. package/dist/{amd → cjs}/monaco-converter.d.ts +0 -0
  3. package/dist/{amd → cjs}/monaco-converter.d.ts.map +0 -0
  4. package/dist/cjs/monaco-converter.js +1195 -0
  5. package/dist/cjs/monaco-converter.js.map +1 -0
  6. package/lib/disposable.d.ts +0 -1
  7. package/lib/disposable.d.ts.map +1 -1
  8. package/lib/disposable.js +0 -2
  9. package/lib/disposable.js.map +1 -1
  10. package/lib/index.d.ts +1 -1
  11. package/lib/index.d.ts.map +1 -1
  12. package/lib/index.js +1 -1
  13. package/lib/index.js.map +1 -1
  14. package/package.json +23 -24
  15. package/src/disposable.ts +0 -2
  16. package/src/index.ts +1 -1
  17. package/dist/amd/console-window.d.ts +0 -8
  18. package/dist/amd/console-window.d.ts.map +0 -1
  19. package/dist/amd/console-window.js +0 -59
  20. package/dist/amd/console-window.js.map +0 -1
  21. package/dist/amd/disposable.d.ts +0 -8
  22. package/dist/amd/disposable.d.ts.map +0 -1
  23. package/dist/amd/disposable.js +0 -34
  24. package/dist/amd/disposable.js.map +0 -1
  25. package/dist/amd/index.d.ts +0 -9
  26. package/dist/amd/index.d.ts.map +0 -1
  27. package/dist/amd/index.js +0 -21
  28. package/dist/amd/index.js.map +0 -1
  29. package/dist/amd/monaco-converter.js +0 -1195
  30. package/dist/amd/monaco-converter.js.map +0 -1
  31. package/dist/amd/monaco-language-client.d.ts +0 -27
  32. package/dist/amd/monaco-language-client.d.ts.map +0 -1
  33. package/dist/amd/monaco-language-client.js +0 -96
  34. package/dist/amd/monaco-language-client.js.map +0 -1
  35. package/dist/amd/monaco-services.d.ts +0 -19
  36. package/dist/amd/monaco-services.d.ts.map +0 -1
  37. package/dist/amd/monaco-services.js +0 -25
  38. package/dist/amd/monaco-services.js.map +0 -1
  39. package/dist/amd/monaco-workspace.d.ts +0 -8
  40. package/dist/amd/monaco-workspace.d.ts.map +0 -1
  41. package/dist/amd/monaco-workspace.js +0 -13
  42. package/dist/amd/monaco-workspace.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -2,104 +2,132 @@
2
2
 
3
3
  All notable changes to this npm module are documented in this file.
4
4
 
5
+ ## 2.x.x BREAKING CHANGES
6
+
7
+ v2+ of this library is dependant on [monaco-vscode-api](https://github.com/CodinGame/monaco-vscode-api) which removed all vscode-api/-compatibility related code. The change has mostly no effect on end users code, but there are two things that need to be taken into account:
8
+
9
+ - If you use Webpack or vite for bundling, you have to remove the `vscode` alias entry from the configuration
10
+ - If you customized monaco services, then you have to adjust them to the changed interface
11
+
12
+ The npm packages exports the following:
13
+
14
+ - `monaco-languagclient`
15
+ - `monaco-languagclient/monaco-converters`
16
+ - `monaco-languagclient/monaco-converters/cjs`
17
+
18
+ ## [2.1.0] - 2022-07-21
19
+
20
+ - Update vscode api [#399](https://github.com/TypeFox/monaco-languageclient/pull/399)
21
+ - Updated `vite` to `3.0.2`
22
+
23
+ ## [2.0.2] - 2022-06-22
24
+
25
+ - Align all tsconfigs and vscode-ws-jsonrpc provides esm/cjs #[390](https://github.com/TypeFox/monaco-languageclient/pull/390)
26
+ - Use `typesVersions` in **package.json*- for proper TypeScript import support (used in node example)
27
+ - Remove AMD and CJS builds adn exports of the main library. Only `monaco-converters` and `monaco-converters/cjs` are left
28
+
29
+ ## [2.0.1] - 2022-06-21
30
+
31
+ - No cjs fragments to export #[388](https://github.com/TypeFox/monaco-languageclient/issues/388)
32
+
5
33
  ## [2.0.0] - 2022-06-21
6
34
 
7
- * Use monaco vscode api #[373](https://github.com/TypeFox/monaco-languageclient/pull/373)
8
- * Merge monaco-jsonrpc and vscode-ws-jsonrpc into new sub package #[383](https://github.com/TypeFox/monaco-languageclient/pull/383)
9
- * Integrate eslint with eslint-config-standard #[385](https://github.com/TypeFox/monaco-languageclient/pull/385)
10
- * Add example with client and server both running in the browser #[386](https://github.com/TypeFox/monaco-languageclient/pull/386)
35
+ - Use monaco vscode api #[373](https://github.com/TypeFox/monaco-languageclient/pull/373)
36
+ - Merge monaco-jsonrpc and vscode-ws-jsonrpc into new sub package #[383](https://github.com/TypeFox/monaco-languageclient/pull/383)
37
+ - Integrate eslint with eslint-config-standard #[385](https://github.com/TypeFox/monaco-languageclient/pull/385)
38
+ - Add example with client and server both running in the browser #[386](https://github.com/TypeFox/monaco-languageclient/pull/386)
11
39
 
12
40
  ## [1.1.0] - 2022-06-08
13
41
 
14
- * feat(package.json): export monaco-converter #[376](https://github.com/TypeFox/monaco-languageclient/pull/376)
15
- * Clean unregistered featured from registration requests #[372](https://github.com/TypeFox/monaco-languageclient/pull/372)
16
- * Introduce global engines entries for node and npm #[370](https://github.com/TypeFox/monaco-languageclient/pull/370)
17
- * Implement missing 3.17 api #[364](https://github.com/TypeFox/monaco-languageclient/pull/364)
18
- * Remove unsupported features #[362](https://github.com/TypeFox/monaco-languageclient/pull/362)
19
- * Do not include node code #[361](https://github.com/TypeFox/monaco-languageclient/pull/361)
42
+ - feat(package.json): export monaco-converter #[376](https://github.com/TypeFox/monaco-languageclient/pull/376)
43
+ - Clean unregistered featured from registration requests #[372](https://github.com/TypeFox/monaco-languageclient/pull/372)
44
+ - Introduce global engines entries for node and npm #[370](https://github.com/TypeFox/monaco-languageclient/pull/370)
45
+ - Implement missing 3.17 api #[364](https://github.com/TypeFox/monaco-languageclient/pull/364)
46
+ - Remove unsupported features #[362](https://github.com/TypeFox/monaco-languageclient/pull/362)
47
+ - Do not include node code #[361](https://github.com/TypeFox/monaco-languageclient/pull/361)
20
48
 
21
49
  ## [1.0.1] - 2022-05-21
22
50
 
23
- * Add some typing on the code/proto converters [#359](https://github.com/TypeFox/monaco-languageclient/pull/359)
24
- * Fix to vite 2.9.6 for now
51
+ - Add some typing on the code/proto converters [#359](https://github.com/TypeFox/monaco-languageclient/pull/359)
52
+ - Fix to vite 2.9.6 for now
25
53
 
26
54
  ## [1.0.0] - 2022-05-20
27
55
 
28
- * Switch to npm workspace and vite and thereby drop yarn, lerna and webpack [#340](https://github.com/TypeFox/monaco-languageclient/pull/340)
29
- * Restructure project: All code is moved to packages directory
30
- * Update and clean-up all dependencies
31
- * Use monaco-editor in examples instead of monaco-editor-core
32
- * README was fully revised
33
- * Bugfixes resulting from this:
34
- * fix: Fix vscode-compatibility using webpack [#342](https://github.com/TypeFox/monaco-languageclient/pull/342)
35
- * Use ts-node for example [#344](https://github.com/TypeFox/monaco-languageclient/pull/344)
36
- * Update README.md [#345](https://github.com/TypeFox/monaco-languageclient/pull/345)
37
- * Integrate webpack client example as second option [#353](https://github.com/TypeFox/monaco-languageclient/pull/353)
38
- * Make monaco workspace disposable [#330](https://github.com/TypeFox/monaco-languageclient/pull/330)
39
- * Update the protocol to version 3.17 [#350](https://github.com/TypeFox/monaco-languageclient/pull/350)
40
- * Fix code action diagnostics [#352](https://github.com/TypeFox/monaco-languageclient/pull/352)
41
- * Fix resolving, never overwrite by undefined [#354](https://github.com/TypeFox/monaco-languageclient/pull/354)
42
- * The `connectionProvider` now expects a `MessageTransports` instead of a `MessageConnection`
43
- * Bump version to 1.0.0
56
+ - Switch to npm workspace and vite and thereby drop yarn, lerna and webpack [#340](https://github.com/TypeFox/monaco-languageclient/pull/340)
57
+ - Restructure project: All code is moved to packages directory
58
+ - Update and clean-up all dependencies
59
+ - Use monaco-editor in examples instead of monaco-editor-core
60
+ - README was fully revised
61
+ - Bugfixes resulting from this:
62
+ - fix: Fix vscode-compatibility using webpack [#342](https://github.com/TypeFox/monaco-languageclient/pull/342)
63
+ - Use ts-node for example [#344](https://github.com/TypeFox/monaco-languageclient/pull/344)
64
+ - Update README.md [#345](https://github.com/TypeFox/monaco-languageclient/pull/345)
65
+ - Integrate webpack client example as second option [#353](https://github.com/TypeFox/monaco-languageclient/pull/353)
66
+ - Make monaco workspace disposable [#330](https://github.com/TypeFox/monaco-languageclient/pull/330)
67
+ - Update the protocol to version 3.17 [#350](https://github.com/TypeFox/monaco-languageclient/pull/350)
68
+ - Fix code action diagnostics [#352](https://github.com/TypeFox/monaco-languageclient/pull/352)
69
+ - Fix resolving, never overwrite by undefined [#354](https://github.com/TypeFox/monaco-languageclient/pull/354)
70
+ - The `connectionProvider` now expects a `MessageTransports` instead of a `MessageConnection`
71
+ - Bump version to 1.0.0
44
72
 
45
73
  ## [0.18.1] - 2022-03-21
46
74
 
47
- * Fix vscode api enum [#333](https://github.com/TypeFox/monaco-languageclient/pull/333)
75
+ - Fix vscode api enum [#333](https://github.com/TypeFox/monaco-languageclient/pull/333)
48
76
 
49
77
  ## [0.18.0] - 2022-03-15
50
78
 
51
- * Update to monaco 0.33 & vscode 1.65 [#329](https://github.com/TypeFox/monaco-languageclient/pull/329)
52
- * Updated minor versions of vscode-languageserver-textdocument and vscode-uri and removed engines entry from client
79
+ - Update to monaco 0.33 & vscode 1.65 [#329](https://github.com/TypeFox/monaco-languageclient/pull/329)
80
+ - Updated minor versions of vscode-languageserver-textdocument and vscode-uri and removed engines entry from client
53
81
 
54
82
  ## [0.17.4] - 2022-02-22 (2022-03-08)
55
83
 
56
- * First released as @codingame/monaco-languageclient@0.17.4 on specified date
57
- * Release of monaco-languageclient@0.17.4 was made available on date in brackets
58
- * Register providers using the document selector directly [#317](https://github.com/TypeFox/monaco-languageclient/pull/317)
84
+ - First released as @codingame/monaco-languageclient@0.17.4 on specified date
85
+ - Release of monaco-languageclient@0.17.4 was made available on date in brackets
86
+ - Register providers using the document selector directly [#317](https://github.com/TypeFox/monaco-languageclient/pull/317)
59
87
 
60
88
  ## [0.17.3] - 2021-12-21 (2022-02-23)
61
89
 
62
- * First released as @codingame/monaco-languageclient@0.17.3 on specified date
63
- * Release of monaco-languageclient@0.17.3 was made available on date in brackets
64
- * Releases `0.17.1` and `0.17.2` were mistakes
65
- * Fix various issues: outdated api, missing stuff in compatibility-api... [#309](https://github.com/TypeFox/monaco-languageclient/pull/309)
90
+ - First released as @codingame/monaco-languageclient@0.17.3 on specified date
91
+ - Release of monaco-languageclient@0.17.3 was made available on date in brackets
92
+ - Releases `0.17.1` and `0.17.2` were mistakes
93
+ - Fix various issues: outdated api, missing stuff in compatibility-api... [#309](https://github.com/TypeFox/monaco-languageclient/pull/309)
66
94
 
67
95
  ## [0.17.0] - 2021-11-10 (2022-02-23)
68
96
 
69
- * First released as @codingame/monaco-languageclient@0.17.0 on specified date
70
- * Release of monaco-languageclient@0.17.0 was made available on date in brackets
71
- * Update to monaco 0.30.1 [#301](https://github.com/TypeFox/monaco-languageclient/pull/301)
97
+ - First released as @codingame/monaco-languageclient@0.17.0 on specified date
98
+ - Release of monaco-languageclient@0.17.0 was made available on date in brackets
99
+ - Update to monaco 0.30.1 [#301](https://github.com/TypeFox/monaco-languageclient/pull/301)
72
100
 
73
101
  ## [0.16.1] - 2021-11-03 (2022-02-23)
74
102
 
75
- * First released as @codingame/monaco-languageclient@0.16.1 on specified date
76
- * Release of monaco-languageclient@0.16.1 was made available on date in brackets
77
- * Fix dropped tags in Diagnostic -> IMarkerData [#297](https://github.com/TypeFox/monaco-languageclient/pull/297)
78
- * Missing protocol convention [#298](https://github.com/TypeFox/monaco-languageclient/pull/298)
103
+ - First released as @codingame/monaco-languageclient@0.16.1 on specified date
104
+ - Release of monaco-languageclient@0.16.1 was made available on date in brackets
105
+ - Fix dropped tags in Diagnostic -> IMarkerData [#297](https://github.com/TypeFox/monaco-languageclient/pull/297)
106
+ - Missing protocol convention [#298](https://github.com/TypeFox/monaco-languageclient/pull/298)
79
107
 
80
108
  ## [0.16.0] - 2021-10-11 (2022-02-23)
81
109
 
82
- * First released as @codingame/monaco-languageclient@0.16.0 on specified date
83
- * Release of monaco-languageclient@0.15.1 was made available on date in brackets
84
- * Updated `monaco-editor-core` version to `0.29.0`
85
- * Async resolve code actions [#294](https://github.com/TypeFox/monaco-languageclient/pull/294)
110
+ - First released as @codingame/monaco-languageclient@0.16.0 on specified date
111
+ - Release of monaco-languageclient@0.15.1 was made available on date in brackets
112
+ - Updated `monaco-editor-core` version to `0.29.0`
113
+ - Async resolve code actions [#294](https://github.com/TypeFox/monaco-languageclient/pull/294)
86
114
 
87
115
  ## [0.15.1] - 2021-09-20 (2022-02-23)
88
116
 
89
- * First released as @codingame/monaco-languageclient@0.15.1 on specified date
90
- * Release of monaco-languageclient@0.15.1 was made available on date in brackets
91
- * Resolve code actions [#290](https://github.com/TypeFox/monaco-languageclient/pull/290)
92
- * Release `0.15.0` was skipped
117
+ - First released as @codingame/monaco-languageclient@0.15.1 on specified date
118
+ - Release of monaco-languageclient@0.15.1 was made available on date in brackets
119
+ - Resolve code actions [#290](https://github.com/TypeFox/monaco-languageclient/pull/290)
120
+ - Release `0.15.0` was skipped
93
121
 
94
122
  ## [0.14.0] - 2021-08-05 (2022-02-23)
95
123
 
96
- * First released as @codingame/monaco-languageclient@0.14.0 on specified date
97
- * Release of monaco-languageclient@0.14.0 was made available on date in brackets
98
- * Upgraded to Monaco 0.22.3
124
+ - First released as @codingame/monaco-languageclient@0.14.0 on specified date
125
+ - Release of monaco-languageclient@0.14.0 was made available on date in brackets
126
+ - Upgraded to Monaco 0.22.3
99
127
 
100
128
  ### Breaking changes
101
129
 
102
- * `MonacoServices` now takes the `monaco` object instead of the `CommandRegistry`
130
+ - `MonacoServices` now takes the `monaco` object instead of the `CommandRegistry`
103
131
 
104
132
  before:
105
133
 
@@ -110,12 +138,12 @@ MonacoServices.install(require('monaco-editor-core/esm/vs/platform/commands/comm
110
138
  after:
111
139
 
112
140
  ```typescript
113
- import * as monaco from 'monaco-editor-core'
141
+ import - as monaco from 'monaco-editor-core'
114
142
 
115
143
  MonacoServices.install(monaco);
116
144
  ```
117
145
 
118
- * `MonacoServices` should now be installed using the command registry instead of the editor
146
+ - `MonacoServices` should now be installed using the command registry instead of the editor
119
147
 
120
148
  before:
121
149
 
@@ -132,33 +160,33 @@ MonacoServices.install(require('monaco-editor-core/esm/vs/platform/commands/comm
132
160
 
133
161
  ## [0.13.0] - 2020-04-06
134
162
 
135
- * Upgraded to vscode-uri 2.x [741a3df](https://github.com/TypeFox/monaco-languageclient/commit/741a3dfb865eff55c3dcc4a51f74759921d3f2a5)
163
+ - Upgraded to vscode-uri 2.x [741a3df](https://github.com/TypeFox/monaco-languageclient/commit/741a3dfb865eff55c3dcc4a51f74759921d3f2a5)
136
164
 
137
165
  ## [0.12.0] - 2020-03-19
138
166
 
139
- * Upgraded to Monaco 0.19.1 [#199](https://github.com/TypeFox/monaco-languageclient/pull/199)
167
+ - Upgraded to Monaco 0.19.1 [#199](https://github.com/TypeFox/monaco-languageclient/pull/199)
140
168
 
141
169
  ## [0.11.0] - 2020-01-23
142
170
 
143
- * Upgraded to Monaco 0.18.1 [#178](https://github.com/TypeFox/monaco-languageclient/pull/178)
171
+ - Upgraded to Monaco 0.18.1 [#178](https://github.com/TypeFox/monaco-languageclient/pull/178)
144
172
 
145
173
  ## [0.10.2] - 2019-09-10
146
174
 
147
- * register language features regardless whether a language is registered (<https://github.com/TypeFox/monaco-languageclient/commit/0559be6c20744182ede699f594fdbe6d9f3d7145>)
175
+ - register language features regardless whether a language is registered (<https://github.com/TypeFox/monaco-languageclient/commit/0559be6c20744182ede699f594fdbe6d9f3d7145>)
148
176
 
149
177
  ## [0.10.1] - 2019-09-04
150
178
 
151
- * aligned CompletionItemKind with Monaco 0.17.0 [#174](https://github.com/TypeFox/monaco-languageclient/pull/174)
179
+ - aligned CompletionItemKind with Monaco 0.17.0 [#174](https://github.com/TypeFox/monaco-languageclient/pull/174)
152
180
 
153
181
  ## [0.10.0] - 2019-08-26
154
182
 
155
- * upgraded to LSP 5.3.0 and Monaco 0.17.0
183
+ - upgraded to LSP 5.3.0 and Monaco 0.17.0
156
184
 
157
185
  ### Breaking changes
158
186
 
159
187
  Switch to es6 from es5. For clients who cannot migrate to es6 please use babel to transpile Monaco and LSP to es5.
160
188
 
161
- * to configure babel wit webpack:
189
+ - to configure babel wit webpack:
162
190
 
163
191
  ```js
164
192
  {
@@ -185,31 +213,31 @@ Switch to es6 from es5. For clients who cannot migrate to es6 please use babel t
185
213
 
186
214
  ## [0.9.0] - 2018-09-06
187
215
 
188
- * use monaco-editor-core as a dev dependency to allow alternative implementations [#119](https://github.com/TypeFox/monaco-languageclient/pull/119)
216
+ - use monaco-editor-core as a dev dependency to allow alternative implementations [#119](https://github.com/TypeFox/monaco-languageclient/pull/119)
189
217
 
190
218
  ### Breaking changes
191
219
 
192
220
  Clients have to explicitly declare a dependency to `monaco-editor-core` or another package providing Monaco:
193
221
 
194
- * `monaco-editor-core` is tree shaked to get rid of unused VS Code's code.
195
- * [@typefox/monaco-editor-core](https://www.npmjs.com/package/@typefox/monaco-editor-core) is a not tree-shaked alternative.
222
+ - `monaco-editor-core` is tree shaked to get rid of unused VS Code's code.
223
+ - [@typefox/monaco-editor-core](https://www.npmjs.com/package/@typefox/monaco-editor-core) is a not tree-shaked alternative.
196
224
 
197
225
  ## [0.8.0] - 2018-09-04
198
226
 
199
- * updated dependency to Monaco 0.14.x, with adaptation for breaking changes from monaco [#107](https://github.com/TypeFox/monaco-languageclient/pull/107) - thanks to [@Twinside](https://github.com/Twinside)
200
- * ensure that SignatureHelp and SignatureHelp has non-null arrays [#112](https://github.com/TypeFox/monaco-languageclient/pull/112) - thanks to [@rcjsuen](https://github.com/rcjsuen)
227
+ - updated dependency to Monaco 0.14.x, with adaptation for breaking changes from monaco [#107](https://github.com/TypeFox/monaco-languageclient/pull/107) - thanks to [@Twinside](https://github.com/Twinside)
228
+ - ensure that SignatureHelp and SignatureHelp has non-null arrays [#112](https://github.com/TypeFox/monaco-languageclient/pull/112) - thanks to [@rcjsuen](https://github.com/rcjsuen)
201
229
 
202
230
  ## [0.7.3] - 2018-08-30
203
231
 
204
- * fixed folding ranges conversion - [12d8c91](https://github.com/TypeFox/monaco-languageclient/commit/12d8c91cf1676061c44d43e745b7500c77ea4a14)
205
- * implement `toJSON` for workspace configurations - [9e50a48](https://github.com/TypeFox/monaco-languageclient/commit/9e50a48addb474be66fa317684461976eda45192)
206
- * fixed markdown conversion [#103](https://github.com/TypeFox/monaco-languageclient/pull/103)
232
+ - fixed folding ranges conversion - [12d8c91](https://github.com/TypeFox/monaco-languageclient/commit/12d8c91cf1676061c44d43e745b7500c77ea4a14)
233
+ - implement `toJSON` for workspace configurations - [9e50a48](https://github.com/TypeFox/monaco-languageclient/commit/9e50a48addb474be66fa317684461976eda45192)
234
+ - fixed markdown conversion [#103](https://github.com/TypeFox/monaco-languageclient/pull/103)
207
235
 
208
236
  ## [0.7.2] - 2018-08-02
209
237
 
210
- * amd distribution ([#97](https://github.com/TypeFox/monaco-languageclient/pull/97)) - thanks to [@zewa666](https://github.com/zewa666)
211
- * updated dependency to Monaco 0.13.2 ([#100](https://github.com/TypeFox/monaco-languageclient/pull/100))
212
- * register providers only for languages matching the documentSelector ([#101](https://github.com/TypeFox/monaco-languageclient/pull/101)) - thanks to [@gins3000](https://github.com/gins3000)
238
+ - amd distribution ([#97](https://github.com/TypeFox/monaco-languageclient/pull/97)) - thanks to [@zewa666](https://github.com/zewa666)
239
+ - updated dependency to Monaco 0.13.2 ([#100](https://github.com/TypeFox/monaco-languageclient/pull/100))
240
+ - register providers only for languages matching the documentSelector ([#101](https://github.com/TypeFox/monaco-languageclient/pull/101)) - thanks to [@gins3000](https://github.com/gins3000)
213
241
 
214
242
  ## [0.7.0] - 2018-07-31
215
243
 
@@ -219,8 +247,8 @@ Updated to `vscode-languageclient` 4.4.0 to support LSP 3.10.0 features like hie
219
247
 
220
248
  In order to use `vscode-languageclient` directly the compatibility layer was implemented for subset of `vscode` APIs used by the client:
221
249
 
222
- * `vscode-compatibility` should be used as an implementation of `vscode` module at the runtime
223
- * to adjust module resolution with `webpack`:
250
+ - `vscode-compatibility` should be used as an implementation of `vscode` module at the runtime
251
+ - to adjust module resolution with `webpack`:
224
252
 
225
253
  ```js
226
254
  resolve: {
@@ -230,15 +258,15 @@ In order to use `vscode-languageclient` directly the compatibility layer was imp
230
258
  }
231
259
  ```
232
260
 
233
- * `register-vscode` should be required once to adjust module resolution with `Node.js`, for example to stub `vscode` APIs for Mocha tests:
261
+ - `register-vscode` should be required once to adjust module resolution with `Node.js`, for example to stub `vscode` APIs for Mocha tests:
234
262
 
235
263
  ```
236
264
  --require monaco-languageclient/lib/register-vscode
237
265
  ```
238
266
 
239
- * `MonacoLanguageClient` should be used instead of `BaseLanguageClient`
240
- * `MonacoServices` should be installed globally to be accessible for `vscode-compatibility` module, not per a language client
241
- * for the use case with a single standalone editor:
267
+ - `MonacoLanguageClient` should be used instead of `BaseLanguageClient`
268
+ - `MonacoServices` should be installed globally to be accessible for `vscode-compatibility` module, not per a language client
269
+ - for the use case with a single standalone editor:
242
270
 
243
271
  ```ts
244
272
  import { MonacoServices } from 'monaco-languageclient';
@@ -246,7 +274,7 @@ In order to use `vscode-languageclient` directly the compatibility layer was imp
246
274
  MonacoServices.install(editor);
247
275
  ```
248
276
 
249
- * to support sophisticated use cases one can install custom Monaco services:
277
+ - to support sophisticated use cases one can install custom Monaco services:
250
278
 
251
279
  ```ts
252
280
  import { MonacoServices, Services } from 'monaco-languageclient';
@@ -259,37 +287,37 @@ In order to use `vscode-languageclient` directly the compatibility layer was imp
259
287
 
260
288
  ## [0.6.0] - 2018-04-18
261
289
 
262
- * updated dependency to Monaco 0.12 ([#70](https://github.com/TypeFox/monaco-languageclient/pull/70))
263
- * support `CompletionItem`'s `additionalTextEdits` property ([#39](https://github.com/TypeFox/monaco-languageclient/issues/39))
264
- * convert `monaco.MarkerSeverity.Hint` values to `DiagnosticSeverity.Hint` ([#71](https://github.com/TypeFox/monaco-languageclient/pull/71))
290
+ - updated dependency to Monaco 0.12 ([#70](https://github.com/TypeFox/monaco-languageclient/pull/70))
291
+ - support `CompletionItem`'s `additionalTextEdits` property ([#39](https://github.com/TypeFox/monaco-languageclient/issues/39))
292
+ - convert `monaco.MarkerSeverity.Hint` values to `DiagnosticSeverity.Hint` ([#71](https://github.com/TypeFox/monaco-languageclient/pull/71))
265
293
 
266
294
  ## [0.4.0] - 2018-02-13
267
295
 
268
- * add support for `textDocument/documentLink` and `documentLink/resolve` ([#53](https://github.com/TypeFox/monaco-languageclient/issues/53))
269
- * state that `workspace/applyEdit` is supported in the capabilities ([#55](https://github.com/TypeFox/monaco-languageclient/pull/55))
270
- * state that versioned changes are supported in a `WorkspaceEdit` ([#56](https://github.com/TypeFox/monaco-languageclient/pull/56))
271
- * replaced `monaco-editor` with `monaco-editor-core` ([#58](https://github.com/TypeFox/monaco-languageclient/pull/58))
296
+ - add support for `textDocument/documentLink` and `documentLink/resolve` ([#53](https://github.com/TypeFox/monaco-languageclient/issues/53))
297
+ - state that `workspace/applyEdit` is supported in the capabilities ([#55](https://github.com/TypeFox/monaco-languageclient/pull/55))
298
+ - state that versioned changes are supported in a `WorkspaceEdit` ([#56](https://github.com/TypeFox/monaco-languageclient/pull/56))
299
+ - replaced `monaco-editor` with `monaco-editor-core` ([#58](https://github.com/TypeFox/monaco-languageclient/pull/58))
272
300
 
273
301
  ## [0.3.0] - 2018-02-08
274
302
 
275
- * fix handling of `codeLens/resolve` if no provider exists ([#46](https://github.com/TypeFox/monaco-languageclient/pull/46))
276
- * removed `monaco-editor-core` dependency, keeping only `monaco-editor` ([#42](https://github.com/TypeFox/monaco-languageclient/issues/42))
277
- * fix typings in `glob-to-regexp`([#49](https://github.com/TypeFox/monaco-languageclient/pull/49))
303
+ - fix handling of `codeLens/resolve` if no provider exists ([#46](https://github.com/TypeFox/monaco-languageclient/pull/46))
304
+ - removed `monaco-editor-core` dependency, keeping only `monaco-editor` ([#42](https://github.com/TypeFox/monaco-languageclient/issues/42))
305
+ - fix typings in `glob-to-regexp`([#49](https://github.com/TypeFox/monaco-languageclient/pull/49))
278
306
 
279
307
  ## [0.2.1] - 2018-01-14
280
308
 
281
- * allow a `rootUri` to be set with `createMonacoServices` ([#31](https://github.com/TypeFox/monaco-languageclient/issues/31))
309
+ - allow a `rootUri` to be set with `createMonacoServices` ([#31](https://github.com/TypeFox/monaco-languageclient/issues/31))
282
310
 
283
311
  ## [0.2.0] - 2017-08-30
284
312
 
285
- * handle `number` value of zero in a `Diagnostic`'s `code` ([#14](https://github.com/TypeFox/monaco-languageclient/pull/14))
286
- * add support to lazily load Monaco ([#19](https://github.com/TypeFox/monaco-languageclient/pull/19))
287
- * add support for `textDocument/codeActions` and `workspace/executeCommand` ([#21](https://github.com/TypeFox/monaco-languageclient/pull/21))
288
- * updated dependency to Monaco 0.10 ([#29](https://github.com/TypeFox/monaco-languageclient/pull/29))
313
+ - handle `number` value of zero in a `Diagnostic`'s `code` ([#14](https://github.com/TypeFox/monaco-languageclient/pull/14))
314
+ - add support to lazily load Monaco ([#19](https://github.com/TypeFox/monaco-languageclient/pull/19))
315
+ - add support for `textDocument/codeActions` and `workspace/executeCommand` ([#21](https://github.com/TypeFox/monaco-languageclient/pull/21))
316
+ - updated dependency to Monaco 0.10 ([#29](https://github.com/TypeFox/monaco-languageclient/pull/29))
289
317
 
290
318
  ## 0.1.0 - 2017-0
291
319
 
292
- * initial 0.1.0 release, depends on Monaco 0.9.0
320
+ - initial 0.1.0 release, depends on Monaco 0.9.0
293
321
 
294
322
  [0.13.0]: https://github.com/TypeFox/monaco-languageclient/compare/v0.12.0...v0.13.0
295
323
  [0.12.0]: https://github.com/TypeFox/monaco-languageclient/compare/v0.11.0...v0.12.0
File without changes
File without changes