ho-nl / vagrant-development-box

Maintainer: Paul
MIT License
0 stars 0 forks source link

Add nvm to the vagrant stack #107

Open NickdeK opened 5 years ago

NickdeK commented 5 years ago

So backend developers can run webbpack build in the box without much hassle.

NickdeK commented 5 years ago

Workaround for now:

curl -o- https://raw.githubusercontent.com/creationix/nvm/v0.33.11/install.sh | bash
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && \. "$NVM_DIR/nvm.sh"
nvm install 10
nvm use --delete-prefix 10

Credits to @PascalBrouwers