diff --git a/README.md b/README.md index aba63d0..36b7ade 100644 --- a/README.md +++ b/README.md @@ -10,7 +10,7 @@ _Check linked files to more details._ - [apps.sh](scripts/apps.sh) - installs applications. - [dotfiles.sh](scripts/dotfiles.sh) - installs _Oh My Zsh_, _.zshrc_ and _Git_ configs. -- [npm.sh](scripts/npm.sh) - install _npm_ packages. +- [npm.sh](scripts/npm.sh) - _Node.js_ and _npm_ settings. - [setup.sh](setup.sh) - main installer. - [ssh.sh](scripts/ssh.sh) - generate _SSH_. - [user.sh](scripts/user.sh) - user data to configuration of _Git_ and _SSH_. diff --git a/scripts/npm.sh b/scripts/npm.sh index c749fa7..d3a4c71 100644 --- a/scripts/npm.sh +++ b/scripts/npm.sh @@ -6,7 +6,7 @@ source ./scripts/utils.sh . $HOME/.asdf/asdf.sh -echo_info "Setting node and npm packages..." +echo_info "Setting Node.js and npm packages..." # Install asdf nodejs plugin and nodejs asdf plugin-add nodejs @@ -18,4 +18,4 @@ mkdir ~/.npm-global npm config set prefix '~/.npm-global' # Finish -echo_success "Finished node settings." +echo_success "Finished Node.js and npm settings." diff --git a/setup.sh b/setup.sh index 923a3dd..3f2a01d 100644 --- a/setup.sh +++ b/setup.sh @@ -17,7 +17,7 @@ bash ./scripts/apps.sh # Install dotfiles bash ./scripts/dotfiles.sh -# Setting node and npm packages +# Node.js and npm settings bash ./scripts/npm.sh # Generate SSH key