thedesk/app/node_modules/latest-version/index.js

12 lines
334 B
JavaScript
Raw Normal View History

2019-09-13 00:38:13 +10:00
'use strict';
const packageJson = require('package-json');
const lastestVersion = async (packageName, options) => {
const {version} = await packageJson(packageName.toLowerCase(), options);
return version;
};
module.exports = lastestVersion;
// TODO: Remove this for the next major release
module.exports.default = lastestVersion;