This commit is contained in:
2021-11-21 11:18:28 +01:00
parent 7a358eb836
commit 230b10b2a3
9339 changed files with 892519 additions and 62 deletions

15
node_modules/bin-version/index.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
'use strict';
const execa = require('execa');
const findVersions = require('find-versions');
module.exports = (binary, options = {}) => {
return execa(binary, options.args || ['--version'])
.then(result => findVersions(result.stdout || result.stderr, {loose: true})[0])
.catch(error => {
if (error.code === 'ENOENT') {
error.message = `Couldn't find the \`${binary}\` binary. Make sure it's installed and in your $PATH.`;
}
throw error;
});
};