From 8afd4d526656b2487c4872c3f511e88dde8e34d9 Mon Sep 17 00:00:00 2001 From: Andrew Herron Date: Tue, 17 Sep 2024 14:50:15 +1000 Subject: [PATCH] TINY-11177: Alpha 4 --- lerna.json | 2 +- modules/runner/package.json | 2 +- modules/sample/package.json | 4 ++-- modules/server/package.json | 4 ++-- modules/server/src/main/ts/bedrock/cli/Hud.ts | 2 +- 5 files changed, 7 insertions(+), 7 deletions(-) diff --git a/lerna.json b/lerna.json index 59a42283..53b20d12 100644 --- a/lerna.json +++ b/lerna.json @@ -1,7 +1,7 @@ { "npmClient": "yarn", "useWorkspaces": true, - "version": "15.0.0-alpha.3", + "version": "15.0.0-alpha.4", "publish": { "push": false } diff --git a/modules/runner/package.json b/modules/runner/package.json index 9f93ce9a..e378f581 100644 --- a/modules/runner/package.json +++ b/modules/runner/package.json @@ -1,6 +1,6 @@ { "name": "@ephox/bedrock-runner", - "version": "15.0.0-alpha.3", + "version": "15.0.0-alpha.4", "author": "Tiny Technologies Inc", "license": "Apache-2.0", "scripts": { diff --git a/modules/sample/package.json b/modules/sample/package.json index e6833704..8e5ac4a8 100644 --- a/modules/sample/package.json +++ b/modules/sample/package.json @@ -1,6 +1,6 @@ { "name": "@ephox/bedrock-sample", - "version": "15.0.0-alpha.3", + "version": "15.0.0-alpha.4", "author": "Tiny Technologies Inc", "license": "Apache-2.0", "scripts": { @@ -18,7 +18,7 @@ "@ephox/bedrock-client": "^14.1.1" }, "devDependencies": { - "@ephox/bedrock-server": "^15.0.0-alpha.3" + "@ephox/bedrock-server": "^15.0.0-alpha.4" }, "files": [], "private": true, diff --git a/modules/server/package.json b/modules/server/package.json index 5b5ea8d1..748850f7 100644 --- a/modules/server/package.json +++ b/modules/server/package.json @@ -1,6 +1,6 @@ { "name": "@ephox/bedrock-server", - "version": "15.0.0-alpha.3", + "version": "15.0.0-alpha.4", "author": "Tiny Technologies Inc", "license": "Apache-2.0", "bin": { @@ -20,7 +20,7 @@ "@aws-sdk/client-device-farm": "^3.354.0", "@ephox/bedrock-client": "^14.1.1", "@ephox/bedrock-common": "^14.1.1", - "@ephox/bedrock-runner": "^15.0.0-alpha.3", + "@ephox/bedrock-runner": "^15.0.0-alpha.4", "@jsdevtools/coverage-istanbul-loader": "^3.0.5", "@lambdatest/node-tunnel": "^4.0.4", "@wdio/globals": "^8.14.1", diff --git a/modules/server/src/main/ts/bedrock/cli/Hud.ts b/modules/server/src/main/ts/bedrock/cli/Hud.ts index 1ff9b680..4e05f85d 100644 --- a/modules/server/src/main/ts/bedrock/cli/Hud.ts +++ b/modules/server/src/main/ts/bedrock/cli/Hud.ts @@ -56,7 +56,7 @@ export const create = (testfiles: string[], loglevel: 'simple' | 'advanced'): Hu readline.clearLine(stream, 0); readline.cursorTo(stream, 0); } - const currentTestMessage = 'Current test: ' + (data.test !== undefined ? data.test : 'Unknown') + '\n' + const currentTestMessage = 'Current test: ' + (data.test !== undefined ? data.test : 'Unknown') + '\n'; stream.write(currentTestMessage.substring(0, Env.IS_CI ? undefined : process.stdout.columns)); const totalFiles = data.totalFiles !== undefined ? data.totalFiles : numFiles; const totalTests = data.totalTests !== undefined ? data.totalTests : totalFiles;