@eclipse-glsp-examples/workflow-server 1.1.0-next.c1be494.51 → 1.1.0-next.c2655c8.54
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.
- package/README.md +18 -0
- package/package.json +5 -6
- package/bundle/wf-glsp-server-node.js +0 -57996
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# Eclipse GLSP - Workflow Examples
|
|
2
|
+
|
|
3
|
+
Provides the typescript implementation of the Workflow example server. This example server is used as dev example in GLSP projects.
|
|
4
|
+
|
|
5
|
+
## Workflow Diagram Example
|
|
6
|
+
|
|
7
|
+
The workflow diagram is a consistent example provided by all GLSP components.
|
|
8
|
+
The example implements a simple flow chart diagram editor with different types of nodes and edges (see screenshot below).
|
|
9
|
+
The example can be used to try out different GLSP features, as well as several available integrations with IDE platforms (Theia, VSCode, Eclipse, Standalone).
|
|
10
|
+
As the example is fully open source, you can also use it as a blueprint for a custom implementation of a GLSP diagram editor.
|
|
11
|
+
See [our project website](https://www.eclipse.org/glsp/documentation/#workflowoverview) for an overview of the workflow example and all components implementing it.
|
|
12
|
+
|
|
13
|
+
<https://user-images.githubusercontent.com/588090/154459938-849ca684-11b3-472c-8a59-98ea6cb0b4c1.mp4>
|
|
14
|
+
|
|
15
|
+
## More information
|
|
16
|
+
|
|
17
|
+
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/).
|
|
18
|
+
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-examples/workflow-server",
|
|
3
|
-
"version": "1.1.0-next.
|
|
3
|
+
"version": "1.1.0-next.c2655c8.54+c2655c8",
|
|
4
4
|
"description": "GLSP node server for the workflow example",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -43,8 +43,7 @@
|
|
|
43
43
|
"node.js",
|
|
44
44
|
"node.d.ts",
|
|
45
45
|
"browser.d.ts",
|
|
46
|
-
"browser.js"
|
|
47
|
-
"bundle/wf-glsp-server-node.js"
|
|
46
|
+
"browser.js"
|
|
48
47
|
],
|
|
49
48
|
"scripts": {
|
|
50
49
|
"build": "tsc -b && yarn bundle",
|
|
@@ -59,8 +58,8 @@
|
|
|
59
58
|
"watch": "tsc -w"
|
|
60
59
|
},
|
|
61
60
|
"dependencies": {
|
|
62
|
-
"@eclipse-glsp/layout-elk": "1.1.0-next.
|
|
63
|
-
"@eclipse-glsp/server": "1.1.0-next.
|
|
61
|
+
"@eclipse-glsp/layout-elk": "1.1.0-next.c2655c8.54+c2655c8",
|
|
62
|
+
"@eclipse-glsp/server": "1.1.0-next.c2655c8.54+c2655c8"
|
|
64
63
|
},
|
|
65
64
|
"devDependencies": {
|
|
66
65
|
"source-map-loader": "^4.0.1",
|
|
@@ -70,5 +69,5 @@
|
|
|
70
69
|
"publishConfig": {
|
|
71
70
|
"access": "public"
|
|
72
71
|
},
|
|
73
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "c2655c8d581ac82ab437f46aab2c7fc78756b914"
|
|
74
73
|
}
|