Skip to content

Commit

Permalink
GLSP-845: Update next version publishing (#55)
Browse files Browse the repository at this point in the history
Part of eclipse-glsp/glsp/issue/845
  • Loading branch information
tortmayr committed Nov 7, 2023
1 parent 4c8ff9c commit 164d485
Show file tree
Hide file tree
Showing 8 changed files with 368 additions and 348 deletions.
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ pipeline {
stage('Deploy (master only)') {
when {
allOf {
branch 'skipForRelease'
branch 'master'
expression {
/* Only trigger the deployment job if the changeset contains changes in
the `packages` or `example` directory */
Expand Down
10 changes: 5 additions & 5 deletions example/workflow/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workflow-vscode-example",
"displayName": "Workflow GLSP Example",
"version": "2.0.0",
"version": "2.1.0-next",
"private": "true",
"description": "An example graphical language used for modeling workflows",
"categories": [
Expand Down Expand Up @@ -194,16 +194,16 @@
"onStartupFinished"
],
"devDependencies": {
"@eclipse-glsp-examples/workflow-server": "~2.0.0",
"@eclipse-glsp-examples/workflow-server-bundled": "~2.0.0",
"@eclipse-glsp/vscode-integration": "~2.0.0",
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp-examples/workflow-server-bundled": "next",
"@eclipse-glsp/vscode-integration": "2.1.0-next",
"@vscode/vsce": "^2.19.0",
"copy-webpack-plugin": "^11.0.0",
"ts-loader": "^9.4.4",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-merge": "^5.9.0",
"workflow-glsp-webview": "~2.0.0"
"workflow-glsp-webview": "2.1.0-next"
},
"engines": {
"vscode": "^1.54.0"
Expand Down
8 changes: 4 additions & 4 deletions example/workflow/web-extension/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "workflow-vscode-example-web",
"displayName": "Workflow GLSP Example (Web)",
"version": "2.0.0",
"version": "2.1.0-next",
"private": "true",
"description": "An example graphical language used for modeling workflows",
"categories": [
Expand Down Expand Up @@ -195,15 +195,15 @@
"onStartupFinished"
],
"devDependencies": {
"@eclipse-glsp-examples/workflow-server": "~2.0.0",
"@eclipse-glsp/vscode-integration": "~2.0.0",
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp/vscode-integration": "2.1.0-next",
"@types/node": "16.x",
"@vscode/vsce": "^2.19.0",
"copy-webpack-plugin": "^11.0.0",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1",
"webpack-merge": "^5.9.0",
"workflow-glsp-webview": "~2.0.0"
"workflow-glsp-webview": "2.1.0-next"
},
"engines": {
"vscode": "^1.54.0"
Expand Down
6 changes: 3 additions & 3 deletions example/workflow/webview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "workflow-glsp-webview",
"version": "2.0.0",
"version": "2.1.0-next",
"private": "true",
"description": "Example of the Workflow GLSP diagram in a VS Code extensions (WebView part)",
"keywords": [
Expand Down Expand Up @@ -38,8 +38,8 @@
"watch": "tsc -w"
},
"devDependencies": {
"@eclipse-glsp-examples/workflow-glsp": "~2.0.0",
"@eclipse-glsp/vscode-integration-webview": "~2.0.0",
"@eclipse-glsp-examples/workflow-glsp": "next",
"@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",
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"lint": "lerna run lint",
"lint:ci": "lerna run lint:ci",
"prepare": "lerna run prepare",
"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:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-push",
"publish:next": "lerna publish preminor --exact --canary --preid next --dist-tag next --no-git-reset --no-git-tag-version --no-push --ignore-scripts --yes",
"publish:prepare": "lerna version --ignore-scripts --yes --no-push",
"upgrade:next": "yarn upgrade -p \"@eclipse-glsp.*|sprotty.*\" --next ",
"watch": "lerna run --parallel watch",
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode-integration-webview/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/vscode-integration-webview",
"version": "2.0.0",
"version": "2.1.0-next",
"description": "Integration of a GLSP diagram in a VS Code extensions (WebView part)",
"keywords": [
"vscode",
Expand Down Expand Up @@ -42,7 +42,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/client": "~2.0.0",
"@eclipse-glsp/client": "next",
"vscode-messenger-webview": "^0.4.5"
},
"devDependencies": {
Expand Down
4 changes: 2 additions & 2 deletions packages/vscode-integration/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@eclipse-glsp/vscode-integration",
"displayName": "GLSP VSCode Integration",
"version": "2.0.0",
"version": "2.1.0-next",
"description": "Glue code to integrate GLSP diagrams in VSCode extensions (extension part)",
"keywords": [
"eclipse",
Expand Down Expand Up @@ -47,7 +47,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/protocol": "~2.0.0",
"@eclipse-glsp/protocol": "next",
"vscode-jsonrpc": "^8.0.2",
"vscode-messenger": "^0.4.5",
"ws": "^8.13.0"
Expand Down

0 comments on commit 164d485

Please sign in to comment.