46 lines
1.3 KiB
JavaScript
Executable File
46 lines
1.3 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
// Bad news: We have to write plain ES5 in this file
|
|
// Good news: It's the only file of the entire project
|
|
|
|
/* eslint-disable no-var */
|
|
|
|
var semver = require('semver');
|
|
var execa = require('execa');
|
|
var findVersions = require('find-versions');
|
|
var pkg = require('../package.json');
|
|
|
|
var MIN_GIT_VERSION = '2.0.0';
|
|
|
|
if (!semver.satisfies(process.version, pkg.engines.node)) {
|
|
console.error(
|
|
`[semantic-release]: node version ${pkg.engines.node} is required. Found ${process.version}.
|
|
|
|
See https://github.com/semantic-release/semantic-release/blob/master/docs/05-support/node-version.md for more details and solutions.`
|
|
);
|
|
process.exit(1);
|
|
}
|
|
|
|
execa('git', ['--version'])
|
|
.then(({stdout}) => {
|
|
var gitVersion = findVersions(stdout)[0];
|
|
if (semver.lt(gitVersion, MIN_GIT_VERSION)) {
|
|
console.error(`[semantic-release]: Git version ${MIN_GIT_VERSION} is required. Found ${gitVersion}.`);
|
|
process.exit(1);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error(`[semantic-release]: Git version ${MIN_GIT_VERSION} is required. No git binary found.`);
|
|
console.error(error);
|
|
process.exit(1);
|
|
});
|
|
|
|
// Node 8+ from this point on
|
|
require('../cli')()
|
|
.then(exitCode => {
|
|
process.exitCode = exitCode;
|
|
})
|
|
.catch(() => {
|
|
process.exitCode = 1;
|
|
});
|