Skip to content
This repository was archived by the owner on Aug 21, 2025. It is now read-only.

Commit 99e584e

Browse files
update help text (#30)
* Update index.ts * Update index.ts * Update index.ts * Update help.ts --------- Co-authored-by: Jai Radhakrishnan <[email protected]>
1 parent 15affd3 commit 99e584e

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/commands/link/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
export default class LinkIndex extends Command {
1919
static override args = {}
2020

21-
static override description = 'Link a Modus App To Hypermode'
21+
static override description = 'Link a repo with a Modus App to a Hypermode Project'
2222

2323
static override examples = [
2424
'<%= config.bin %> <%= command.id %>',

src/commands/login/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const loginHTML = `<!-- src/commands/login/login.html -->
6464
export default class LoginIndex extends Command {
6565
static override args = {}
6666

67-
static override description = 'Login to Hypermode Console'
67+
static override description = 'Log into Hypermode'
6868

6969
static override examples = ['<%= config.bin %> <%= command.id %>']
7070

src/commands/logout/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import {fileExists, getSettingsFilePath, readSettingsJson} from '../../util/inde
77
export default class LogoutIndex extends Command {
88
static override args = {}
99

10-
static override description = 'Logout of Hypermode Console in the CLI'
10+
static override description = 'Log Hyp CLI out of Hypermode'
1111

1212
static override examples = ['<%= config.bin %> <%= command.id %>']
1313

src/custom/help.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ export default class CustomHelp extends Help {
7171
out
7272
+= 'View the docs:'
7373
+ ' '.repeat(Math.max(1, this.prePad + this.postPad - 12))
74-
+ chalk.blueBright('https://docs.hypermode.com/introduction')
74+
+ chalk.blueBright('https://docs.hypermode.com')
7575
+ '\n'
7676
// out += "View the repo:" + " ".repeat(Math.max(1, this.pre_pad + this.post_pad - 12)) + chalk.blueBright("https://github.com/HypermodeInc/modus") + "\n";
7777

0 commit comments

Comments
 (0)