Skip to content
This repository has been archived by the owner on Apr 10, 2021. It is now read-only.

Commit

Permalink
fix(npm): correct yarn global add command
Browse files Browse the repository at this point in the history
  • Loading branch information
sbolel committed Jun 14, 2018
1 parent 5f43f19 commit b65731a
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions osx-setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -138,12 +138,10 @@ install_node(){
'eslint'
'gulp-cli'
'jscodeshift'
'npm-check'
'npm-check-updates'
'nodemon'
'serve'
'standard'
); for i in ${npms[@]}; do yarn add global ${i}; done
); for i in ${npms[@]}; do yarn global add ${i}; done
}

setup_atom(){
Expand Down

0 comments on commit b65731a

Please sign in to comment.