Skip to content

feat: add a stdlib ASCII art in REPL's default welcome message #2178

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Apr 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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)
'',
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