Skip to content

Commit

Permalink
Release Prep
Browse files Browse the repository at this point in the history
  • Loading branch information
tortmayr committed Feb 5, 2024
1 parent 164d485 commit a48c7e0
Show file tree
Hide file tree
Showing 11 changed files with 529 additions and 1,054 deletions.
4 changes: 2 additions & 2 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
{
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.organizeImports": true,
"source.fixAll.eslint": true
"source.organizeImports": "explicit",
"source.fixAll.eslint": "explicit"
},
"eslint.validate": ["javascript", "typescript"],
"search.exclude": {
Expand Down
6 changes: 4 additions & 2 deletions CHANGELOG.MD
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# Eclipse GLSP VSCode Integration Changelog

## [2.0.0 - 14/10/2023](https://github.com/eclipse-glsp/glsp-client/releases/tag/v1.0.0)
## [2.1.0 - 24/01/2024](https://github.com/eclipse-glsp/glsp-vscode-integration/releases/tag/v2.1.0)

## [2.0.0 - 14/10/2023](https://github.com/eclipse-glsp/glsp-vscode-integration/releases/tag/v2.0.0)

### Changes

Expand Down Expand Up @@ -33,7 +35,7 @@
- Extract vscode specific diagram bindings into custom feature modules
- Replace `GLSPVscodeExtensionHandler` with `HostExtensionHandler`

## [v1.0.0 - 30/06/2022](https://github.com/eclipse-glsp/glsp-client/releases/tag/v1.0.0)
## [v1.0.0 - 30/06/2022](https://github.com/eclipse-glsp/glsp-vscode-integration/releases/tag/v1.0.0)

### Changes

Expand Down
4 changes: 2 additions & 2 deletions example/workflow/extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -194,8 +194,8 @@
"onStartupFinished"
],
"devDependencies": {
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp-examples/workflow-server-bundled": "next",
"@eclipse-glsp-examples/workflow-server": "2.1.0",
"@eclipse-glsp-examples/workflow-server-bundled": "2.1.0",
"@eclipse-glsp/vscode-integration": "2.1.0-next",
"@vscode/vsce": "^2.19.0",
"copy-webpack-plugin": "^11.0.0",
Expand Down
2 changes: 1 addition & 1 deletion example/workflow/web-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@
"onStartupFinished"
],
"devDependencies": {
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp-examples/workflow-server": "2.1.0",
"@eclipse-glsp/vscode-integration": "2.1.0-next",
"@types/node": "16.x",
"@vscode/vsce": "^2.19.0",
Expand Down
3 changes: 2 additions & 1 deletion example/workflow/webview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@
"watch": "tsc -w"
},
"devDependencies": {
"@eclipse-glsp-examples/workflow-glsp": "next",
"@eclipse-glsp-examples/workflow-glsp": "2.1.0",
"@eclipse-glsp/vscode-integration-webview": "2.1.0-next",
"@vscode/codicons": "^0.0.25",
"circular-dependency-plugin": "^5.2.2",
"css-loader": "^6.7.1",
"ignore-loader": "^0.1.2",
"process": "0.11.10",
"reflect-metadata": "^0.1.13",
"source-map-loader": "^4.0.1",
"style-loader": "^3.3.1",
Expand Down
3 changes: 3 additions & 0 deletions example/workflow/webview/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ const config = {
fs: false,
net: false
},
alias: {
process: 'process/browser'
},
extensions: ['.ts', '.tsx', '.js']
},
module: {
Expand Down
1 change: 0 additions & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
{
"version": "2.0.0",
"useWorkspaces": true,
"npmClient": "yarn",
"command": {
"run": {
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"workspaces": [
"packages/*/",
"packages/*",
"example/workflow/*"
],
"scripts": {
Expand All @@ -27,7 +27,7 @@
"@eclipse-glsp/dev": "2.0.0",
"@types/node": "16",
"@types/vscode": "^1.54.0",
"lerna": "^6.6.2",
"lerna": "^7.0.0",
"typescript": "^5.0.4"
},
"engines": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-integration-webview/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/client": "next",
"@eclipse-glsp/client": "2.1.0",
"vscode-messenger-webview": "^0.4.5"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-integration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/protocol": "next",
"@eclipse-glsp/protocol": "2.1.0",
"vscode-jsonrpc": "^8.0.2",
"vscode-messenger": "^0.4.5",
"ws": "^8.13.0"
Expand Down

0 comments on commit a48c7e0

Please sign in to comment.