blob: e3ecd0c47b45ba34156a19d77da12ffecc2144e6 (
plain)
1
2
3
4
5
6
7
8
|
const exec = require('child_process').exec;
exec('npm -v', function(err, stdout, stderr) {
if (err) throw err;
if (parseFloat(stdout) < 3) {
throw new Error('[ERROR: React Boilerplate] You need npm version @>=3');
process.exit(1);
}
});
|