mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-28 23:06:37 +01:00
92367dff79
Implement build type inheritance. Add CircleCI jobs for desktop build type.
18 lines
372 B
JavaScript
18 lines
372 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',
|
|
};
|
|
|
|
const BuildTypeInheritance = {
|
|
[BuildType.desktop]: [BuildType.flask],
|
|
};
|
|
|
|
module.exports = { BuildType, BuildTypeInheritance };
|