Yarn global
Just like npm install -g
, Yarn provides yarn global add
. I found however that it did not work right out of the box to register executable binaries/CLIs.
To fix this add the following to your .zshrc
/.bashrc
:
# set yarn binaries on path
export PATH="$HOME/.config/yarn/global/node_modules/.bin:$PATH"
Now all binaries installed from yarn should be on your system PATH.
Tweet