Skip to content
This repository was archived by the owner on Jan 18, 2023. It is now read-only.

Commit b16cde8

Browse files
committed
Merge remote-tracking branch 'origin/develop'
2 parents 857738a + ebe75ec commit b16cde8

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

package-lock.json

Lines changed: 6 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "codestore",
33
"description": "code.store CLI. Add services, deploy, debug, perform all operations from your terminal.",
4-
"version": "1.9.13",
4+
"version": "1.9.14",
55
"bin": {
66
"codestore": "./bin/run",
77
"cs": "./bin/run"
@@ -35,7 +35,7 @@
3535
"chalk": "^3.0.0",
3636
"clear": "^0.1.0",
3737
"cli-ux": "^5.4.5",
38-
"codestore-utils": "^1.3.3",
38+
"codestore-utils": "^1.3.5",
3939
"completion": "^1.0.1",
4040
"cross-fetch": "^3.0.4",
4141
"debug": "^4.1.1",
@@ -54,6 +54,7 @@
5454
"semver": "^7.3.2",
5555
"semver-diff": "^3.1.1",
5656
"tree-node-cli": "^1.3.0",
57+
"tslib": "^2.0.1",
5758
"typeorm": "^0.2.25",
5859
"typescript": "^3.9.7",
5960
"unzipper": "^0.10.11",

src/commands/auth/whoami.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ export default class Whoami extends Command {
1414
public async execute(): Promise<void> {
1515
try {
1616
const user: IUser = await this.codestore.getMe();
17-
let welcomeMessage = "You're";
17+
let welcomeMessage = "You're ";
1818
if (user.firstName) {
1919
welcomeMessage += `${chalk.cyan(user.firstName)},`;
2020
}
2121
if (user.lastName) {
22-
welcomeMessage += ` officially ${chalk.cyan(user.lastName)}`;
22+
welcomeMessage += ` officially ${chalk.cyan(user.lastName)},`;
2323
}
2424
welcomeMessage += ` using ${chalk.cyan(user.email)} as main email`;
2525
if (user?.organization?.name) {

0 commit comments

Comments
 (0)