Skip to content

Commit

Permalink
Update next dependencies (#34)
Browse files Browse the repository at this point in the history
- Update glsp next dependencies and add utility scripts for checking headers/prs
- Add server download script to root package.json
  • Loading branch information
tortmayr authored Apr 26, 2023
1 parent d437878 commit cd1fff2
Show file tree
Hide file tree
Showing 3 changed files with 2,206 additions and 1,771 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ yarn install
Additionally you can download a precompiled version of the Workflow Diagram Server:

```bash
yarn --cwd example/workflow/extension download:Server
yarn download:exampleServer
```

> The downloaded server will be launched automatically by the extension. To debug or modify the server and run it separately: see the instructions below.
Expand Down
30 changes: 16 additions & 14 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,36 @@
{
"private": true,
"engines": {
"yarn": ">=1.7.0 <2.x.x",
"node": ">=14.18.0"
},
"workspaces": [
"packages/*/",
"example/workflow/*"
],
"scripts": {
"all": "yarn install && yarn lint",
"build": "lerna run build",
"check:headers": "glsp checkHeaders . -t lastCommit",
"check:pr": "yarn all && yarn check:headers",
"clean": "lerna run clean",
"download:exampleServer": "yarn --cwd example/workflow/extension download:Server",
"lint": "lerna run lint",
"lint:ci": "lerna run lint:ci",
"prepare": "lerna run prepare",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-verify-access --no-push",
"publish:next": "SHA=$(git rev-parse --short HEAD) && lerna publish preminor --exact --canary --preid next.${SHA} --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes --no-verify-access",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"upgrade:next": "yarn upgrade -p \"@eclipse-glsp.*|sprotty.*\" --next ",
"watch": "lerna run --parallel watch"
},
"resolutions": {
"**/sprotty": "0.13.0-next.f4445dd.342"
},
"devDependencies": {
"@eclipse-glsp/config": "1.1.0-next.e31f2e5.119",
"@eclipse-glsp/config-test": "1.1.0-next.e31f2e5.119",
"@eclipse-glsp/dev": "next",
"@types/node": "16",
"@types/vscode": "^1.54.0",
"mvn-artifact-download": "5.1.0"
},
"resolutions": {
"**/sprotty": "0.13.0-next.f4445dd.342"
},
"workspaces": [
"packages/*/",
"example/workflow/*"
]
"engines": {
"node": ">=14.18.0",
"yarn": ">=1.7.0 <2.x.x"
}
}
Loading

0 comments on commit cd1fff2

Please sign in to comment.