forked from sous-chefs/nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnpm.rb
54 lines (44 loc) · 982 Bytes
/
npm.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
include_recipe 'git'
user 'random' do
supports :manage_home => true
home '/home/random'
end
# global "express"
nodejs_npm 'express'
nodejs_npm 'async' do
version '0.6.2'
end
nodejs_npm 'request' do
url 'github mikeal/request'
end
git '/home/random/grunt' do
repository 'https://github.com/gruntjs/grunt'
user 'random'
end
nodejs_npm 'grunt' do
path '/home/random/grunt'
json true
user 'random'
end
nodejs_npm 'mocha' do
options ['--force', '--production']
end
# Create a package.json file for the test user
template '/home/random/package.json' do
source 'package.json'
owner 'random'
user 'random'
end
# Create an .npmrc file for the test user
file '/home/random/.npmrc' do
content '//registry.npmjs.org/:_authToken=${NPM_TOKEN}'
owner 'random'
user 'random'
end
# Test npm_token usage (for NPM private repositories)
nodejs_npm 'from_package_json' do
path '/home/random'
json true
npm_token '123-abcde'
options ['--production']
end