@eclipse-glsp/vscode-integration-webview 0.9.0-next.ecc539e1 → 0.9.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 (2) hide show
  1. package/README.md +5 -4
  2. package/package.json +4 -3
package/README.md CHANGED
@@ -3,13 +3,14 @@
3
3
  This package helps you to implement a [VS Code Webview](https://code.visualstudio.com/api/extension-guides/webview) that renders a [GLSP](https://www.eclipse.org/glsp/) diagram.
4
4
  Since GLSP is based on sprotty(https://github.com/eclipse/sprotty) this glue code is built on top of [sprotty-vscode-webview](https://www.npmjs.com/package/sprotty-vscode-webview).
5
5
 
6
- ### Where to find the sources?
6
+ ## Where to find the sources?
7
7
 
8
8
  In addition to this repository, the related source code can be found here:
9
9
 
10
- - https://github.com/eclipse-glsp/glsp-server
11
- - https://github.com/eclipse-glsp/glsp-client
10
+ - <https://github.com/eclipse-glsp/glsp-server>
11
+ - <https://github.com/eclipse-glsp/glsp-client>
12
12
 
13
13
  ## More information
14
14
 
15
- For more information, please visit the [Eclipse GLSP Umbrella repository](https://github.com/eclipse-glsp/glsp) and the [Eclipse GLSP Website](https://www.eclipse.org/glsp/). If you have questions, contact us on our [spectrum chat](https://spectrum.chat/glsp/) and have a look at our [communication and support options](https://www.eclipse.org/glsp/contact/).
15
+ For more information, please visit the [Eclipse GLSP Umbrella repository](https://github.com/eclipse-glsp/glsp) and the [Eclipse GLSP Website](https://www.eclipse.org/glsp/).
16
+ If you have questions, please raise them in the [discussions](https://github.com/eclipse-glsp/glsp/discussions) and have a look at our [communication and support options](https://www.eclipse.org/glsp/contact/).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp/vscode-integration-webview",
3
- "version": "0.9.0-next.ecc539e1",
3
+ "version": "0.9.0",
4
4
  "description": "Integration of a GLSP diagram in a VS Code extensions (WebView part)",
5
5
  "license": "(EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0)",
6
6
  "keywords": [
@@ -32,7 +32,7 @@
32
32
  "css"
33
33
  ],
34
34
  "dependencies": {
35
- "@eclipse-glsp/client": "next",
35
+ "@eclipse-glsp/client": "0.9.0",
36
36
  "sprotty-vscode-webview": "0.1.2"
37
37
  },
38
38
  "devDependencies": {
@@ -51,5 +51,6 @@
51
51
  "access": "public"
52
52
  },
53
53
  "main": "lib/index",
54
- "types": "lib/index"
54
+ "types": "lib/index",
55
+ "gitHead": "ee6c21350a9778e9dfbef71384a80a62866e5ffa"
55
56
  }