1
0
mirror of https://github.com/tobspr/shapez.io.git synced 2025-12-09 16:21:51 +00:00
tobspr_shapez.io/gulp/build_variants.js
Thomas (DJ1TJOO) 2dc7f963fe
Removed china, wegame, gog and demo (#3)
* Removed build and global variables for china, wegame
* Removed google analitycs
2023-03-04 02:44:19 +02:00

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