Skip to content

Commit

Permalink
Change install_node.sh to install npm 3 instead. Default RAM for vagr…
Browse files Browse the repository at this point in the history
…ant box is now 4 GB. (#7478)
  • Loading branch information
shervinmathieu authored and Alys committed May 28, 2016
1 parent 36042d4 commit 4ad81c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Vagrantfile.example
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ VAGRANTFILE_API_VERSION = "2"

Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.provider "virtualbox" do |v|
v.memory = 768
v.memory = 4096
v.cpus = 1
v.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
end
Expand Down
2 changes: 1 addition & 1 deletion vagrant_scripts/install_node.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ nvm use
nvm alias default current

echo Update npm...
npm install -g npm@2
npm install -g npm@3

echo Installing global modules...
npm install -g gulp bower grunt-cli mocha

0 comments on commit 4ad81c4

Please sign in to comment.