-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update glsp next dependencies and add utility scripts for checking headers/prs - Add server download script to root package.json
- Loading branch information
Showing
3 changed files
with
2,206 additions
and
1,771 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
Oops, something went wrong.