@eclipse-glsp-examples/workflow-server 1.1.0-next.e3f33d3.49 → 1.1.0-next.f692ea4.55
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/browser.d.ts +1 -1
- package/lib/node/workflow-cli-parser.d.ts +1 -1
- package/lib/node/workflow-cli-parser.js +1 -1
- package/node.d.ts +1 -1
- package/package.json +4 -6
- package/src/node/workflow-cli-parser.ts +1 -1
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/browser.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/********************************************************************************
|
|
2
|
-
* Copyright (c) 2023 STMicroelectronics and others.
|
|
2
|
+
* Copyright (c) 2022-2023 STMicroelectronics and others.
|
|
3
3
|
*
|
|
4
4
|
* This program and the accompanying materials are made available under the
|
|
5
5
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/********************************************************************************
|
|
2
|
-
* Copyright (c) 2023 EclipseSource and others.
|
|
2
|
+
* Copyright (c) 2022-2023 EclipseSource and others.
|
|
3
3
|
*
|
|
4
4
|
* This program and the accompanying materials are made available under the
|
|
5
5
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
/********************************************************************************
|
|
3
|
-
* Copyright (c) 2023 EclipseSource and others.
|
|
3
|
+
* Copyright (c) 2022-2023 EclipseSource and others.
|
|
4
4
|
*
|
|
5
5
|
* This program and the accompanying materials are made available under the
|
|
6
6
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
package/node.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/********************************************************************************
|
|
2
|
-
* Copyright (c) 2023 STMicroelectronics and others.
|
|
2
|
+
* Copyright (c) 2022-2023 STMicroelectronics and others.
|
|
3
3
|
*
|
|
4
4
|
* This program and the accompanying materials are made available under the
|
|
5
5
|
* terms of the Eclipse Public License v. 2.0 which is available at
|
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.f692ea4.55+f692ea4",
|
|
4
4
|
"description": "GLSP node server for the workflow example",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eclipse",
|
|
@@ -53,13 +53,11 @@
|
|
|
53
53
|
"lint": "eslint --ext .ts,.tsx ./src",
|
|
54
54
|
"lint:ci": "yarn lint -o eslint.xml -f checkstyle",
|
|
55
55
|
"prepare": "yarn clean && yarn build",
|
|
56
|
-
"start": "node --enable-source-maps bundle/wf-glsp-server-node.js --port 5007",
|
|
57
|
-
"start:websocket": "node --enable-source-maps bundle/wf-glsp-server-node.js -w --port 8081",
|
|
58
56
|
"watch": "tsc -w"
|
|
59
57
|
},
|
|
60
58
|
"dependencies": {
|
|
61
|
-
"@eclipse-glsp/layout-elk": "1.1.0-next.
|
|
62
|
-
"@eclipse-glsp/server": "1.1.0-next.
|
|
59
|
+
"@eclipse-glsp/layout-elk": "1.1.0-next.f692ea4.55+f692ea4",
|
|
60
|
+
"@eclipse-glsp/server": "1.1.0-next.f692ea4.55+f692ea4"
|
|
63
61
|
},
|
|
64
62
|
"devDependencies": {
|
|
65
63
|
"source-map-loader": "^4.0.1",
|
|
@@ -69,5 +67,5 @@
|
|
|
69
67
|
"publishConfig": {
|
|
70
68
|
"access": "public"
|
|
71
69
|
},
|
|
72
|
-
"gitHead": "
|
|
70
|
+
"gitHead": "f692ea4c66ddb29f09e8f76738a4a0b63fdf96d8"
|
|
73
71
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/********************************************************************************
|
|
2
|
-
* Copyright (c) 2023 EclipseSource and others.
|
|
2
|
+
* Copyright (c) 2022-2023 EclipseSource and others.
|
|
3
3
|
*
|
|
4
4
|
* This program and the accompanying materials are made available under the
|
|
5
5
|
* terms of the Eclipse Public License v. 2.0 which is available at
|