This repository was archived by the owner on Jun 3, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathinstaller.js
88 lines (75 loc) · 2.06 KB
/
installer.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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
'use strict';
const execSync = require('child_process').execSync;
const npmii = require('npminstall');
const co = require('co');
const TIMEOUT = 10 * 60 * 1000;
module.exports = async (opts) => {
const utils = require('npminstall/lib/utils');
const env = {};
env['npm_config_registry'] = opts.registry;
env['npm_node_execpath'] = env.NODE = process.env.NODE || process.execPath;
env['npm_execpath'] = require.main.filename;
// set node-gyp env for windows.
if (process.platform == 'win32') {
let python = getPython();
let msvsVersion = getMsvsVersion();
if (python) {
env['npm_config_python'] = python;
}
if (msvsVersion) {
env['npm_config_msvs_version'] = msvsVersion;
}
}
// set mirror env.
const binaryMirros = await utils.getBinaryMirrors(opts.registry);
for (let key in binaryMirros.ENVS) {
env[key] = binaryMirros.ENVS[key];
}
// no proxy
process.env.NO_PROXY = '*';
// using a pure npm installer
return co(function * () {
try {
yield npmii({
'production': true,
'env': env,
'registry': opts.registry,
'binaryMirrors': binaryMirros,
'timeout': opts.timeout || TIMEOUT,
'strictSSL': getStrictSSL(),
'ignoreScripts': false,
'root': opts.root,
'pkgs': opts.pkgs
});
}
catch (e) {
e.type = '_install_core'
throw e;
}
})
};
function getStrictSSL() {
try {
var strictSSL = execSync('npm config get strict-ssl').toString().trim();
return strictSSL !== 'false';
} catch (err) {
console.error('exec npm config get strict-ssl ERROR: ' + err.message);
return true;
}
}
function getPython() {
try {
return execSync('npm config get python').toString().trim();
} catch (err) {
console.error('exec npm config get python ERROR:' + err.message);
}
return '';
}
function getMsvsVersion() {
try {
return execSync('npm config get msvs_version').toString().trim();
} catch (err) {
console.error('exec npm config get msvs_version ERROR:' + err.message);
}
return '';
}