From 0815c06606213873bbee17d4d6f75084bbefd8a9 Mon Sep 17 00:00:00 2001 From: Tobias Date: Mon, 22 Jul 2024 00:07:58 +0200 Subject: [PATCH 1/3] Update package scripts --- package.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index f7d666a..d89e1a0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "parent", - "version": "2.2.0-next", + "version": "2.2.1", "private": true, "workspaces": [ "dev-packages/*" @@ -16,9 +16,9 @@ "lint:ci": "yarn lint -o eslint.xml -f checkstyle", "lint:fix": "yarn lint --fix", "prepare": "yarn build", - "publish:latest": "lerna publish from-git --no-git-reset --no-git-tag-version --no-verify-access --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", + "publish:latest": "lerna publish from-git --no-verify-access --no-push", + "publish:next": "lerna publish preminor --exact --canary --preid next --dist-tag next --no-git-tag-version --no-push --ignore-scripts --yes", + "publish:prepare": "lerna version --ignore-scripts --yes --no-push --exact", "start:cli": " yarn --cwd dev-packages/cli start", "watch": "tsc -b -w --preserveWatchOutput" }, From e396f7fda21b56f33a20e8f207db3a6643669ae3 Mon Sep 17 00:00:00 2001 From: Tobias Date: Mon, 22 Jul 2024 00:08:11 +0200 Subject: [PATCH 2/3] v2.2.1 --- dev-packages/cli/package.json | 4 ++-- dev-packages/config-test/package.json | 6 +++--- dev-packages/config/package.json | 8 ++++---- dev-packages/dev/package.json | 8 ++++---- dev-packages/eslint-config/package.json | 2 +- dev-packages/mocha-config/package.json | 2 +- dev-packages/nyc-config/package.json | 2 +- dev-packages/prettier-config/package.json | 2 +- dev-packages/ts-config/package.json | 2 +- lerna.json | 2 +- 10 files changed, 19 insertions(+), 19 deletions(-) diff --git a/dev-packages/cli/package.json b/dev-packages/cli/package.json index 2050461..c84c888 100644 --- a/dev-packages/cli/package.json +++ b/dev-packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/cli", - "version": "2.2.0-next", + "version": "2.2.1", "description": "CLI Tooling & scripts for GLSP components", "keywords": [ "eclipse", @@ -50,7 +50,7 @@ "shelljs": "^0.8.5" }, "devDependencies": { - "@eclipse-glsp/config": "2.2.0-next", + "@eclipse-glsp/config": "2.2.1", "@types/glob": "^8.1.0", "@types/node-fetch": "^2.6.6", "@types/readline-sync": "^1.4.5", diff --git a/dev-packages/config-test/package.json b/dev-packages/config-test/package.json index 2a3cd65..15cbf62 100644 --- a/dev-packages/config-test/package.json +++ b/dev-packages/config-test/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/config-test", - "version": "2.2.0-next", + "version": "2.2.1", "description": "Meta package that provides Mocha and nyc configurations for GLSP projects", "keywords": [ "eclipse", @@ -25,8 +25,8 @@ } ], "dependencies": { - "@eclipse-glsp/mocha-config": "2.2.0-next", - "@eclipse-glsp/nyc-config": "2.2.0-next", + "@eclipse-glsp/mocha-config": "2.2.1", + "@eclipse-glsp/nyc-config": "2.2.1", "@istanbuljs/nyc-config-typescript": "^1.0.2", "@types/chai": "^4.3.7", "@types/mocha": "^10.0.2", diff --git a/dev-packages/config/package.json b/dev-packages/config/package.json index 035bb91..f3a752d 100644 --- a/dev-packages/config/package.json +++ b/dev-packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/config", - "version": "2.2.0-next", + "version": "2.2.1", "description": "Meta package that provides Typescript, eslint and prettier configurations and common dev dependencies for GLSP projects", "keywords": [ "eclipse", @@ -24,9 +24,9 @@ } ], "dependencies": { - "@eclipse-glsp/eslint-config": "2.2.0-next", - "@eclipse-glsp/prettier-config": "2.2.0-next", - "@eclipse-glsp/ts-config": "2.2.0-next", + "@eclipse-glsp/eslint-config": "2.2.1", + "@eclipse-glsp/prettier-config": "2.2.1", + "@eclipse-glsp/ts-config": "2.2.1", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "eslint": "^8.51.0", diff --git a/dev-packages/dev/package.json b/dev-packages/dev/package.json index 8d1dcbc..9027648 100644 --- a/dev-packages/dev/package.json +++ b/dev-packages/dev/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/dev", - "version": "2.2.0-next", + "version": "2.2.1", "description": "All-in-one meta package that provides the GLSP development and test configuration packages, as well as the GLSP CLI package", "keywords": [ "eclipse", @@ -24,9 +24,9 @@ } ], "dependencies": { - "@eclipse-glsp/cli": "2.2.0-next", - "@eclipse-glsp/config": "2.2.0-next", - "@eclipse-glsp/config-test": "2.2.0-next" + "@eclipse-glsp/cli": "2.2.1", + "@eclipse-glsp/config": "2.2.1", + "@eclipse-glsp/config-test": "2.2.1" }, "publishConfig": { "access": "public" diff --git a/dev-packages/eslint-config/package.json b/dev-packages/eslint-config/package.json index b2a2af3..8815a7c 100644 --- a/dev-packages/eslint-config/package.json +++ b/dev-packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/eslint-config", - "version": "2.2.0-next", + "version": "2.2.1", "description": "Shared ESLint configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/mocha-config/package.json b/dev-packages/mocha-config/package.json index 426c423..10931a4 100644 --- a/dev-packages/mocha-config/package.json +++ b/dev-packages/mocha-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/mocha-config", - "version": "2.2.0-next", + "version": "2.2.1", "description": "Shared Mocha test configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/nyc-config/package.json b/dev-packages/nyc-config/package.json index 9a6c4f7..b83d304 100644 --- a/dev-packages/nyc-config/package.json +++ b/dev-packages/nyc-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/nyc-config", - "version": "2.2.0-next", + "version": "2.2.1", "description": "Shared nyc configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/prettier-config/package.json b/dev-packages/prettier-config/package.json index 3f40489..54d1ca6 100644 --- a/dev-packages/prettier-config/package.json +++ b/dev-packages/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/prettier-config", - "version": "2.2.0-next", + "version": "2.2.1", "description": "Shared Prettier configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/ts-config/package.json b/dev-packages/ts-config/package.json index 9014dbf..fd3eb27 100644 --- a/dev-packages/ts-config/package.json +++ b/dev-packages/ts-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/ts-config", - "version": "2.2.0-next", + "version": "2.2.1", "description": "Shared Typescript configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/lerna.json b/lerna.json index ef0fe25..f8bc114 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "2.2.0-next", + "version": "2.2.1", "useWorkspaces": true, "npmClient": "yarn", "command": { From 429f9642a9788d7106e039aca77c4f59cc35155d Mon Sep 17 00:00:00 2001 From: Tobias Date: Mon, 22 Jul 2024 00:14:49 +0200 Subject: [PATCH 3/3] Switch to 2.3.0 next versions --- dev-packages/cli/package.json | 4 ++-- dev-packages/config-test/package.json | 6 +++--- dev-packages/config/package.json | 8 ++++---- dev-packages/dev/package.json | 8 ++++---- dev-packages/eslint-config/package.json | 2 +- dev-packages/mocha-config/package.json | 2 +- dev-packages/nyc-config/package.json | 2 +- dev-packages/prettier-config/package.json | 2 +- dev-packages/ts-config/package.json | 2 +- lerna.json | 2 +- package.json | 2 +- 11 files changed, 20 insertions(+), 20 deletions(-) diff --git a/dev-packages/cli/package.json b/dev-packages/cli/package.json index c84c888..fd8bbb2 100644 --- a/dev-packages/cli/package.json +++ b/dev-packages/cli/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/cli", - "version": "2.2.1", + "version": "2.3.0-next", "description": "CLI Tooling & scripts for GLSP components", "keywords": [ "eclipse", @@ -50,7 +50,7 @@ "shelljs": "^0.8.5" }, "devDependencies": { - "@eclipse-glsp/config": "2.2.1", + "@eclipse-glsp/config": "2.3.0-next", "@types/glob": "^8.1.0", "@types/node-fetch": "^2.6.6", "@types/readline-sync": "^1.4.5", diff --git a/dev-packages/config-test/package.json b/dev-packages/config-test/package.json index 15cbf62..bd78440 100644 --- a/dev-packages/config-test/package.json +++ b/dev-packages/config-test/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/config-test", - "version": "2.2.1", + "version": "2.3.0-next", "description": "Meta package that provides Mocha and nyc configurations for GLSP projects", "keywords": [ "eclipse", @@ -25,8 +25,8 @@ } ], "dependencies": { - "@eclipse-glsp/mocha-config": "2.2.1", - "@eclipse-glsp/nyc-config": "2.2.1", + "@eclipse-glsp/mocha-config": "2.3.0-next", + "@eclipse-glsp/nyc-config": "2.3.0-next", "@istanbuljs/nyc-config-typescript": "^1.0.2", "@types/chai": "^4.3.7", "@types/mocha": "^10.0.2", diff --git a/dev-packages/config/package.json b/dev-packages/config/package.json index f3a752d..a0da0aa 100644 --- a/dev-packages/config/package.json +++ b/dev-packages/config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/config", - "version": "2.2.1", + "version": "2.3.0-next", "description": "Meta package that provides Typescript, eslint and prettier configurations and common dev dependencies for GLSP projects", "keywords": [ "eclipse", @@ -24,9 +24,9 @@ } ], "dependencies": { - "@eclipse-glsp/eslint-config": "2.2.1", - "@eclipse-glsp/prettier-config": "2.2.1", - "@eclipse-glsp/ts-config": "2.2.1", + "@eclipse-glsp/eslint-config": "2.3.0-next", + "@eclipse-glsp/prettier-config": "2.3.0-next", + "@eclipse-glsp/ts-config": "2.3.0-next", "@typescript-eslint/eslint-plugin": "^6.7.5", "@typescript-eslint/parser": "^6.7.5", "eslint": "^8.51.0", diff --git a/dev-packages/dev/package.json b/dev-packages/dev/package.json index 9027648..ddb7166 100644 --- a/dev-packages/dev/package.json +++ b/dev-packages/dev/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/dev", - "version": "2.2.1", + "version": "2.3.0-next", "description": "All-in-one meta package that provides the GLSP development and test configuration packages, as well as the GLSP CLI package", "keywords": [ "eclipse", @@ -24,9 +24,9 @@ } ], "dependencies": { - "@eclipse-glsp/cli": "2.2.1", - "@eclipse-glsp/config": "2.2.1", - "@eclipse-glsp/config-test": "2.2.1" + "@eclipse-glsp/cli": "2.3.0-next", + "@eclipse-glsp/config": "2.3.0-next", + "@eclipse-glsp/config-test": "2.3.0-next" }, "publishConfig": { "access": "public" diff --git a/dev-packages/eslint-config/package.json b/dev-packages/eslint-config/package.json index 8815a7c..d254452 100644 --- a/dev-packages/eslint-config/package.json +++ b/dev-packages/eslint-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/eslint-config", - "version": "2.2.1", + "version": "2.3.0-next", "description": "Shared ESLint configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/mocha-config/package.json b/dev-packages/mocha-config/package.json index 10931a4..d8598f7 100644 --- a/dev-packages/mocha-config/package.json +++ b/dev-packages/mocha-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/mocha-config", - "version": "2.2.1", + "version": "2.3.0-next", "description": "Shared Mocha test configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/nyc-config/package.json b/dev-packages/nyc-config/package.json index b83d304..88ec87a 100644 --- a/dev-packages/nyc-config/package.json +++ b/dev-packages/nyc-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/nyc-config", - "version": "2.2.1", + "version": "2.3.0-next", "description": "Shared nyc configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/prettier-config/package.json b/dev-packages/prettier-config/package.json index 54d1ca6..e568a92 100644 --- a/dev-packages/prettier-config/package.json +++ b/dev-packages/prettier-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/prettier-config", - "version": "2.2.1", + "version": "2.3.0-next", "description": "Shared Prettier configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/dev-packages/ts-config/package.json b/dev-packages/ts-config/package.json index fd3eb27..8dde48c 100644 --- a/dev-packages/ts-config/package.json +++ b/dev-packages/ts-config/package.json @@ -1,6 +1,6 @@ { "name": "@eclipse-glsp/ts-config", - "version": "2.2.1", + "version": "2.3.0-next", "description": "Shared Typescript configuration for GLSP projects", "keywords": [ "eclipse", diff --git a/lerna.json b/lerna.json index f8bc114..cf16567 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,5 @@ { - "version": "2.2.1", + "version": "2.3.0-next", "useWorkspaces": true, "npmClient": "yarn", "command": { diff --git a/package.json b/package.json index d89e1a0..a2c15bc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "parent", - "version": "2.2.1", + "version": "2.3.0-next", "private": true, "workspaces": [ "dev-packages/*"