Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GLSP-845: Update next version publishing #186

Merged
merged 1 commit into from
Nov 7, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,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 `examples/workflow-theia` directory */
Expand Down
4 changes: 2 additions & 2 deletions examples/browser-app/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "browser-app",
"version": "2.0.0",
"version": "2.1.0-next",
"private": true,
"scripts": {
"build": "theia build --mode development",
Expand All @@ -13,7 +13,7 @@
"watch": "theia build --watch --mode development"
},
"dependencies": {
"@eclipse-glsp-examples/workflow-theia": "~2.0.0",
"@eclipse-glsp-examples/workflow-theia": "2.1.0-next",
"@theia/core": "1.39.0",
"@theia/editor": "1.39.0",
"@theia/filesystem": "1.39.0",
Expand Down
10 changes: 5 additions & 5 deletions examples/workflow-theia/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp-examples/workflow-theia",
"version": "2.0.0",
"version": "2.1.0-next",
"private": "true",
"description": "Theia extension for the workflow GLSP example",
"keywords": [
Expand Down Expand Up @@ -36,10 +36,10 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp-examples/workflow-glsp": "~2.0.0",
"@eclipse-glsp-examples/workflow-server": "~2.0.0",
"@eclipse-glsp-examples/workflow-server-bundled": "~2.0.0",
"@eclipse-glsp/theia-integration": "~2.0.0"
"@eclipse-glsp-examples/workflow-glsp": "next",
"@eclipse-glsp-examples/workflow-server": "next",
"@eclipse-glsp-examples/workflow-server-bundled": "next",
"@eclipse-glsp/theia-integration": "2.1.0-next"
},
"devDependencies": {
"mvn-artifact-download": "5.1.0"
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parent",
"version": "2.0.0",
"version": "2.1.0-next",
"private": true,
"workspaces": [
"packages/theia-integration",
Expand All @@ -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",
"start": "yarn --cwd examples/browser-app start",
"start:debug": "yarn --cwd examples/browser-app start:debug",
Expand Down
4 changes: 2 additions & 2 deletions packages/theia-integration/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@eclipse-glsp/theia-integration",
"version": "2.0.0",
"version": "2.1.0-next",
"description": "Glue code to integrate GLSP clients into Eclipse Theia",
"keywords": [
"theia-extension",
Expand Down Expand Up @@ -44,7 +44,7 @@
"watch": "tsc -w"
},
"dependencies": {
"@eclipse-glsp/client": "~2.0.0",
"@eclipse-glsp/client": "next",
"ws": "~8.11.0"
},
"devDependencies": {
Expand Down
Loading