Skip to content

Commit ebd3878

Browse files
authored
feat: update default welcome message in the REPL
PR-URL: #2178 Closes: #2175 Reviewed-by: Athan Reines <kgryte@gmail.com> Signed-off-by: Snehil Shah <snehilshah.989@gmail.com>
1 parent 95653a3 commit ebd3878

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/node_modules/@stdlib/repl/lib/welcome_text.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,12 @@
2121
// MAIN //
2222

2323
var MSG = [
24+
' _ _ _ _ _',
25+
' ___| |_ __| | (_) |__ | A better REPL for JavaScript and Node.js.',
26+
'/ __| __/ _` | | | \'_ \\ |',
27+
'\\__ \\ || (_| | | | |_) | | For more info, see the source repository:',
28+
'|___/\\__\\__,_|_|_|_.__/ | https://github.com/stdlib-js/stdlib',
2429
'',
25-
'A better REPL for JavaScript and Node.js.',
2630

2731
// TODO: include platform, copyright, version (see Julia, R, and Python for inspiration)
2832
'',
@@ -39,10 +43,6 @@ var MSG = [
3943
' license() Print license information.',
4044
' copyright() Print copyright information.',
4145
'',
42-
'For more info about stdlib, see the source repository:',
43-
'',
44-
' https://github.com/stdlib-js/stdlib',
45-
'',
4646
''
4747
].join( '\n' );
4848

0 commit comments

Comments
 (0)