add some yarn installed packages, add now

This commit is contained in:
Jeffrey Paul 2018-09-11 02:09:53 -07:00 committed by GitHub
parent 69062c4d6a
commit 6329af09b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -13,3 +13,11 @@ for PKG in $NPM_PKGS ; do
# installed npm, i.e. in ~/Library/Homebrew, not actually systemwide
npm install -g $PKG
done
YARN_PKGS="
now
"
for PKG in $YARN_PKGS ; do
yarn global add $PKG
done