您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12 行
334B

  1. 'use strict';
  2. const packageJson = require('package-json');
  3. const lastestVersion = async (packageName, options) => {
  4. const {version} = await packageJson(packageName.toLowerCase(), options);
  5. return version;
  6. };
  7. module.exports = lastestVersion;
  8. // TODO: Remove this for the next major release
  9. module.exports.default = lastestVersion;