osx/custompkg/root/etc/skel/Library/user-setup/200.install-yarn-packages.sh

14 lines
156 B
Bash
Raw Normal View History

2016-10-08 00:58:38 +00:00
#!/bin/bash
# set up paths and whatnot
source $HOME/.profile
YARN_PKGS="
now
2019-11-18 12:36:29 +00:00
prettier
"
for PKG in $YARN_PKGS ; do
yarn global add $PKG
done