Skip to content

Commit

Permalink
TINY-11177: Alpha 4
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSpyder committed Sep 17, 2024
1 parent eaab339 commit 8afd4d5
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"npmClient": "yarn",
"useWorkspaces": true,
"version": "15.0.0-alpha.3",
"version": "15.0.0-alpha.4",
"publish": {
"push": false
}
Expand Down
2 changes: 1 addition & 1 deletion modules/runner/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions modules/sample/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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,
Expand Down
4 changes: 2 additions & 2 deletions modules/server/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion modules/server/src/main/ts/bedrock/cli/Hud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8afd4d5

Please sign in to comment.