Update nodejs version to latest stable

This commit is contained in:
Greg 2016-01-22 22:27:10 +00:00
parent fa07ddaa64
commit 5b6516c19f
2 changed files with 4 additions and 2 deletions

View File

@ -5,3 +5,5 @@ license 'All rights reserved'
description 'Installs/Configures kosmos-nodejs'
long_description IO.read(File.join(File.dirname(__FILE__), 'README.md'))
version '0.1.0'
depends "nodejs"

View File

@ -8,11 +8,11 @@
#
include_recipe 'build-essential'
node.override['nodejs']['repo'] = 'https://deb.nodesource.com/node_0.12'
node.override['nodejs']['repo'] = 'https://deb.nodesource.com/node_5.x'
include_recipe 'nodejs::nodejs_from_package'
# Update npm
nodejs_npm "npm" do
version "2.13.0"
version "3.5.3"
end