Skip to content

Commit

Permalink
feat: update default welcome message in the REPL
Browse files Browse the repository at this point in the history
PR-URL: 	#2178
Closes: #2175
Reviewed-by: Athan Reines <[email protected]>
Signed-off-by: Snehil Shah <[email protected]>
  • Loading branch information
Snehil-Shah authored Apr 17, 2024
1 parent 95653a3 commit ebd3878
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions lib/node_modules/@stdlib/repl/lib/welcome_text.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,12 @@
// MAIN //

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

// TODO: include platform, copyright, version (see Julia, R, and Python for inspiration)

Check warning on line 31 in lib/node_modules/@stdlib/repl/lib/welcome_text.js

View workflow job for this annotation

GitHub Actions / Lint Changed Files

Unexpected 'todo' comment: 'TODO: include platform, copyright,...'
'',
Expand All @@ -39,10 +43,6 @@ var MSG = [
' license() Print license information.',
' copyright() Print copyright information.',
'',
'For more info about stdlib, see the source repository:',
'',
' https://github.com/stdlib-js/stdlib',
'',
''
].join( '\n' );

Expand Down

1 comment on commit ebd3878

@stdlib-bot
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Coverage Report

Package Statements Branches Functions Lines
repl $\color{red}7182/9357$
$\color{green}+76.76\%$
$\color{red}341/503$
$\color{green}+67.79\%$
$\color{red}72/132$
$\color{green}+54.55\%$
$\color{red}7182/9357$
$\color{green}+76.76\%$

The above coverage report was generated for the changes in this push.

Please sign in to comment.