Skip to content

Commit 53cabf6

Browse files
Merge pull request #14 from pinanks/fix-release-1.1.0
Fix release 1.1.0
2 parents 78f07be + e5f9294 commit 53cabf6

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

commands/utils/constants.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,10 @@ constants.stage = {
99
};
1010
constants.prod = {
1111
AUTH_URL: "https://api.lambdatest.com/storybook/auth",
12-
RENDER_API_URL: "https://api.lambdatest.com/storybook/render"
12+
RENDER_API_URL: "https://api.lambdatest.com/storybook/render",
13+
BUILD_STATUS_URL: "https://api.lambdatest.com/storybook/status",
14+
BASE_URL: "https://api.lambdatest.com",
15+
SB_BUILD_VALIDATE_PATH: "/storybook/validate"
1316
};
1417

1518
module.exports = { constants };

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const { createConfig } = require('./commands/config');
99
program
1010
.name('smartui')
1111
.description('CLI to help you run your SmartUI tests on LambdaTest platform')
12-
.version('1.0.0')
12+
.version('1.1.0')
1313
.addOption(new Option('--env <prod|stage>', 'Runtime environment option').choices(['prod', 'stage']));
1414

1515
const configCommand = program.command('config')

0 commit comments

Comments
 (0)