19 lines
336 B
Ruby
19 lines
336 B
Ruby
#
|
|
# Cookbook Name:: kosmos-nodejs
|
|
# Recipe:: default
|
|
#
|
|
# Copyright 2015, Kosmos
|
|
#
|
|
# All rights reserved - Do Not Redistribute
|
|
#
|
|
|
|
include_recipe 'build-essential'
|
|
node.override['nodejs']['repo'] = 'https://deb.nodesource.com/node_5.x'
|
|
include_recipe 'nodejs::nodejs_from_package'
|
|
|
|
# Update npm
|
|
nodejs_npm "npm" do
|
|
version "3.5.3"
|
|
end
|
|
|