1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-06-13 13:04:03 +00:00
tobspr_shapez.io/gulp/build_variants.js

30 lines
646 B
JavaScript

/**
* @type {Record<string, {
* standalone: boolean,
* environment?: 'dev' | 'staging' | 'prod',
* electronBaseDir?: string,
* steamAppId?: number,
* executableName?: string
* }>}
*/
const BUILD_VARIANTS = {
"web-localhost": {
standalone: false,
environment: "dev",
},
"web-shapezio-beta": {
standalone: false,
environment: "staging",
},
"web-shapezio": {
standalone: false,
environment: "prod",
},
"standalone-steam": {
standalone: true,
executableName: "shapez",
steamAppId: 1318690,
},
};
module.exports = { BUILD_VARIANTS };