File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ export function getHeader(cliVersion: string): string {
13
13
let out = ''
14
14
out += getLogo ( )
15
15
out += '\n'
16
- out += `Modus CLI v${ cliVersion } `
16
+ out += `Hypermode CLI v${ cliVersion } `
17
17
out += '\n'
18
18
return out
19
19
}
Original file line number Diff line number Diff line change @@ -3,8 +3,6 @@ import chalk from 'chalk'
3
3
4
4
import { getHeader } from './header.js'
5
5
6
- const CLI_VERSION = '0.0.0'
7
-
8
6
export default class CustomHelp extends Help {
9
7
private postPad = 0
10
8
private prePad = 0
@@ -54,7 +52,7 @@ export default class CustomHelp extends Help {
54
52
formatRoot ( ) : string {
55
53
let out = ''
56
54
out
57
- += chalk . bold . blueBright ( 'Hypermode' ) + ' - Build Intelligent APIs. ' + chalk . dim ( '(v' + CLI_VERSION + ')' ) + ' \n\n'
55
+ += chalk . bold . blueBright ( 'Hypermode' ) + ' - Build Intelligent APIs. \n\n'
58
56
59
57
// Usage: hyp <command> [...flags] [...args]
60
58
out
@@ -78,13 +76,13 @@ export default class CustomHelp extends Help {
78
76
// out += "View the repo:" + " ".repeat(Math.max(1, this.pre_pad + this.post_pad - 12)) + chalk.blueBright("https://github.com/HypermodeInc/modus") + "\n";
79
77
80
78
out += '\n'
81
- out += 'Made with 💖 by ' + chalk . magentaBright ( 'https://hypermode.com/' )
79
+ out += 'Made with ♥︎ by Hypermode'
82
80
return out
83
81
}
84
82
85
83
formatTopic ( topic : Interfaces . Topic ) : string {
86
84
let out = ''
87
- out += chalk . bold . blueBright ( 'Hypermode' ) + ' Help ' + chalk . dim ( '(v' + CLI_VERSION + ')' ) + ' \n\n'
85
+ out += chalk . bold . blueBright ( 'Hypermode' ) + ' Help \n\n'
88
86
if ( topic . description ) out += chalk . dim ( topic . description ) + '\n'
89
87
90
88
out += chalk . bold ( 'Usage: hyp ' + topic . name ) + ' ' + chalk . bold . blue ( '[command]' ) + '\n'
You can’t perform that action at this time.
0 commit comments