2015-11-14 11:10:31 -05:00
|
|
|
/* !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
|
|
|
!!! !!!
|
|
|
|
!!! This file is special in that it must be able to execute with wrong Node version !!!
|
|
|
|
!!! or even when node_modules are missing. !!!
|
|
|
|
!!! !!!
|
|
|
|
!!! Do not depend on Node4+ features or presence of npm packages here. !!!
|
|
|
|
!!! !!!
|
|
|
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! */
|
|
|
|
|
|
|
|
'use strict';
|
|
|
|
|
2015-06-06 02:37:09 -04:00
|
|
|
var exec = require('child_process').exec;
|
2015-11-14 11:10:31 -05:00
|
|
|
var checkNodeModules;
|
|
|
|
var semver;
|
2015-06-06 02:37:09 -04:00
|
|
|
|
2015-11-14 11:10:31 -05:00
|
|
|
|
|
|
|
var issues = [];
|
|
|
|
|
|
|
|
// coarse Node version check
|
2016-01-21 17:15:32 -05:00
|
|
|
if (Number.parseInt(process.version[1], 10) < 5) {
|
|
|
|
issues.push("Angular 2 build currently requires Node 5. Use nvm to update your node version.");
|
2015-11-14 11:10:31 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
semver = require('semver');
|
|
|
|
} catch(e) {
|
|
|
|
issues.push("Looks like you are missing some npm dependencies. Run: npm install");
|
|
|
|
}
|
|
|
|
|
2016-01-21 17:15:32 -05:00
|
|
|
if (issues.length) {
|
|
|
|
printWarning(issues);
|
|
|
|
console.error("Your environment doesn't provide the prerequisite dependencies.\n" +
|
|
|
|
"Please fix the issues listed above and then rerun the gulp command.\n" +
|
|
|
|
"Check out https://github.com/angular/angular/blob/master/DEVELOPER.md for more info.");
|
|
|
|
process.exit(1);
|
|
|
|
}
|
|
|
|
|
2015-11-14 11:10:31 -05:00
|
|
|
// wrap in try/catch in case someone requires from within that file
|
|
|
|
try {
|
|
|
|
checkNodeModules = require('./npm/check-node-modules.js');
|
|
|
|
} catch(e) {
|
|
|
|
issues.push("Looks like you are missing some npm dependencies. Run: npm install");
|
|
|
|
throw e;
|
|
|
|
} finally {
|
|
|
|
// print warnings and move on, the next steps will likely fail, but hey, we warned them.
|
|
|
|
printWarning(issues);
|
|
|
|
}
|
2015-06-06 02:37:09 -04:00
|
|
|
|
|
|
|
|
|
|
|
function checkEnvironment(reqs) {
|
|
|
|
|
|
|
|
exec('npm --version', function(e, stdout) {
|
|
|
|
var foundNpmVersion = semver.clean(stdout);
|
|
|
|
var foundNodeVersion = process.version;
|
|
|
|
var issues = [];
|
|
|
|
|
|
|
|
|
|
|
|
if (!semver.satisfies(foundNodeVersion, reqs.requiredNodeVersion)) {
|
|
|
|
issues.push('You are running unsupported node version. Found: ' + foundNodeVersion +
|
|
|
|
' Expected: ' + reqs.requiredNodeVersion + '. Use nvm to update your node version.');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!semver.satisfies(foundNpmVersion, reqs.requiredNpmVersion)) {
|
|
|
|
issues.push('You are running unsupported npm version. Found: ' + foundNpmVersion +
|
|
|
|
' Expected: ' + reqs.requiredNpmVersion + '. Run: npm update -g npm');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!checkNodeModules()) {
|
|
|
|
issues.push('Your node_modules directory is stale or out of sync with npm-shrinkwrap.json. Run: npm install');
|
|
|
|
}
|
|
|
|
|
2015-11-14 11:10:31 -05:00
|
|
|
printWarning(issues);
|
2015-06-06 02:37:09 -04:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-14 11:10:31 -05:00
|
|
|
function printWarning(issues) {
|
|
|
|
if (!issues.length) return;
|
|
|
|
|
|
|
|
console.warn('');
|
|
|
|
console.warn(Array(110).join('!'));
|
|
|
|
console.warn('!!! Your environment is not in a good shape. Following issues were found:');
|
2016-05-25 22:54:34 -04:00
|
|
|
issues.forEach(function(issue) {console.warn('!!! - ' + issue);});
|
2015-11-14 11:10:31 -05:00
|
|
|
console.warn(Array(110).join('!'));
|
|
|
|
console.warn('');
|
2016-05-25 22:54:34 -04:00
|
|
|
|
|
|
|
if (process.env.CI) {
|
|
|
|
process.exit(1);
|
|
|
|
}
|
2015-11-14 11:10:31 -05:00
|
|
|
}
|
|
|
|
|
2015-06-06 02:37:09 -04:00
|
|
|
|
|
|
|
module.exports = checkEnvironment;
|