You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
758 B
22 lines
758 B
3 years ago
|
const { version: manifestVersion } = require('../../package.json');
|
||
|
const { BuildType } = require('./build-type');
|
||
|
|
||
|
/**
|
||
|
* Get the current version of the MetaMask extension. The base manifest version
|
||
|
* is modified according to the build type and version.
|
||
|
*
|
||
|
* The build version is needed because certain build types (such as beta) may
|
||
|
* be released multiple times during the release process.
|
||
|
*
|
||
|
* @param {BuildType} buildType - The build type.
|
||
|
* @param {number} buildVersion - The build version.
|
||
|
* @returns {string} The MetaMask extension version.
|
||
|
*/
|
||
|
function getVersion(buildType, buildVersion) {
|
||
|
return buildType === BuildType.main
|
||
|
? manifestVersion
|
||
|
: `${manifestVersion}-${buildType}.${buildVersion}`;
|
||
|
}
|
||
|
|
||
|
module.exports = { getVersion };
|