@eclipse-glsp-examples/workflow-server 2.8.0-next.1 → 2.8.0-next.3

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 (1) hide show
  1. package/package.json +11 -12
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eclipse-glsp-examples/workflow-server",
3
- "version": "2.8.0-next.1+ab013b0",
3
+ "version": "2.8.0-next.3+a2fc072",
4
4
  "description": "GLSP node server for the workflow example",
5
5
  "keywords": [
6
6
  "eclipse",
@@ -46,28 +46,27 @@
46
46
  "browser.js"
47
47
  ],
48
48
  "scripts": {
49
- "build": "tsc -b && yarn bundle && yarn bundle:browser",
50
- "bundle": "webpack",
51
- "bundle:browser": "webpack --env target=webworker ",
49
+ "build": "tsc -b && yarn bundle",
50
+ "bundle": "node esbuild.js",
52
51
  "clean": "rimraf lib *.tsbuildinfo",
52
+ "dev": "node esbuild.js --watch --run-node -- --port 5007",
53
+ "dev:ws": "node esbuild.js --watch --run-node -- -w --port 8081",
53
54
  "generate:index": "glsp generateIndex src/browser src/common src/node -s -f",
54
55
  "lint": "eslint ./src",
55
56
  "watch": "tsc -w",
56
- "watch:bundle": "webpack -w"
57
+ "watch:bundle": "node esbuild.js --watch"
57
58
  },
58
59
  "dependencies": {
59
- "@eclipse-glsp/layout-elk": "2.8.0-next.1+ab013b0",
60
- "@eclipse-glsp/server": "2.8.0-next.1+ab013b0",
61
- "@eclipse-glsp/server-mcp": "2.8.0-next.1+ab013b0",
60
+ "@eclipse-glsp/layout-elk": "2.8.0-next.3+a2fc072",
61
+ "@eclipse-glsp/server": "2.8.0-next.3+a2fc072",
62
+ "@eclipse-glsp/server-mcp": "2.8.0-next.3+a2fc072",
62
63
  "inversify": "^6.1.3"
63
64
  },
64
65
  "devDependencies": {
65
- "source-map-loader": "^4.0.1",
66
- "webpack": "^5.75.0",
67
- "webpack-cli": "^5.0.1"
66
+ "esbuild": "~0.28.0"
68
67
  },
69
68
  "publishConfig": {
70
69
  "access": "public"
71
70
  },
72
- "gitHead": "ab013b0c1f1fce1734182e324ea9f915d50f92a6"
71
+ "gitHead": "a2fc072154ca902bdf544d66833ad1af797a188b"
73
72
  }