mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
22 lines
758 B
JavaScript
22 lines
758 B
JavaScript
|
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 };
|