1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-22 19:26:13 +02:00
metamask-extension/development/lib/build-type.js
António Regadas 56cba09749
[MMI] Adds mmi build type + manifest files and images (#17842)
* 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
2023-03-01 09:38:15 +00:00

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 };