zepgram / magento2-fast-vm

Optimal vagrant developer box for Magento2. Folders synced by nfs/rsync. This box includes Magento developer utilities.
MIT License
110 stars 35 forks source link

Grunt install #43

Closed kennedyabitbol closed 4 years ago

kennedyabitbol commented 4 years ago

It seems that grunt isn't installed. Maybe due to debian strch version 9, in provision/010-system.packages.sh

Just change

# Grunt
curl -sL https://deb.nodesource.com/setup_8.x | -E bash -
apt-get install -y nodejs
npm install -g grunt-cli

to

# Grunt
curl -sL https://deb.nodesource.com/setup_10.x | -E bash -
sudo apt-get install -y nodejs
npm install -g grunt-cli
zepgram commented 4 years ago

Thanks for reporting. It should work correctly now.