mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
56cba09749
* MMI adds all mmi images, build type and manifest files * build-for-all-custodians * fix remove-fenced-code test * no need for axios * runs prettier * linter * MMI moving file out of codebase * MMI adds locale appNameMmi * MMI adds locale appNameMmi to verify-locale-strings
19 lines
386 B
JavaScript
19 lines
386 B
JavaScript
/**
|
|
* The distribution this build is intended for.
|
|
*
|
|
* This should be kept in-sync with the `BuildType` map in `shared/constants/app.js`.
|
|
*/
|
|
const BuildType = {
|
|
beta: 'beta',
|
|
desktop: 'desktop',
|
|
flask: 'flask',
|
|
main: 'main',
|
|
mmi: 'mmi',
|
|
};
|
|
|
|
const BuildTypeInheritance = {
|
|
[BuildType.desktop]: [BuildType.flask],
|
|
};
|
|
|
|
module.exports = { BuildType, BuildTypeInheritance };
|