forked from prebuild/prebuild-install
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrc.js
65 lines (58 loc) · 1.79 KB
/
rc.js
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
55
56
57
58
59
60
61
62
63
64
65
var minimist = require('minimist')
var getAbi = require('node-abi').getAbi
var env = process.env
// Get `prebuild-install` arguments that were passed to the `npm` command
if (env.npm_config_argv) {
var npmargs = ['prebuild', 'compile', 'build-from-source', 'debug']
try {
var npmArgv = JSON.parse(env.npm_config_argv).cooked
for (var i = 0; i < npmargs.length; ++i) {
if (npmArgv.indexOf('--' + npmargs[i]) !== -1) {
process.argv.push('--' + npmargs[i])
}
if (npmArgv.indexOf('--no-' + npmargs[i]) !== -1) {
process.argv.push('--no-' + npmargs[i])
}
}
} catch (e) { }
}
// Get the configuration
module.exports = function (pkg) {
var pkgConf = pkg.config || {}
var rc = require('rc')('prebuild-install', {
target: pkgConf.target || env.npm_config_target || process.versions.node,
runtime: pkgConf.runtime || env.npm_config_runtime || 'node',
arch: pkgConf.arch || env.npm_config_arch || process.arch,
libc: env.LIBC,
platform: env.npm_config_platform || process.platform,
debug: false,
verbose: false,
prebuild: true,
compile: false,
path: '.',
proxy: env.npm_config_proxy || env['HTTP_PROXY'],
'https-proxy': env.npm_config_https_proxy || env['HTTPS_PROXY'],
'local-address': env.npm_config_local_address
}, minimist(process.argv, {
alias: {
target: 't',
runtime: 'r',
help: 'h',
arch: 'a',
path: 'p',
version: 'v',
download: 'd',
'build-from-source': 'compile',
compile: 'c'
}
}))
if (rc.path === true) {
delete rc.path
}
rc.abi = getAbi(rc.target, rc.runtime)
return rc
}
// Print the configuration values when executed standalone for testing purposses
if (!module.parent) {
console.log(JSON.stringify(module.exports({}), null, 2))
}