Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
39 lines (34 loc) · 1.06 KB

File metadata and controls

39 lines (34 loc) · 1.06 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
var path = require("path");
var local = path.join.bind(path, __dirname);
var exec = require(local("../utils/execPromise"));
var buildFlags = require(local("../utils/buildFlags"));
module.exports = function prepareForBuild() {
console.log("[nodegit] Running pre-install script");
return exec("npm -v")
.then(function(npmVersion) {
if (npmVersion.split(".")[0] < 3) {
console.log("[nodegit] npm@2 installed, pre-loading required packages");
return exec("npm install --ignore-scripts");
}
return Promise.resolve();
})
.then(function() {
if (buildFlags.isGitRepo) {
var submodules = require(local("submodules"));
var generate = require(local("../generate"));
return submodules()
.then(function() {
return generate();
});
}
});
};
// Called on the command line
if (require.main === module) {
module.exports()
.catch(function(e) {
console.error("[nodegit] ERROR - Could not finish preinstall");
console.error(e);
process.exit(1);
});
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.