mirror of
https://github.com/tobspr/shapez.io.git
synced 2025-12-09 16:21:51 +00:00
- switches to ES modules in gulp and src - uses dengr's webpack configs and package.json, with modifications - removes gulp/package.json - removes babel stuff - removes gulp-load-plugins, instead importing gulp plugins manually - removes unused and trivial packages - upgrades packages - uses path/posix, for gulp - removes __dirname in favor of relative urls
29 lines
616 B
JavaScript
29 lines
616 B
JavaScript
/**
|
|
* @type {Record<string, {
|
|
* standalone: boolean,
|
|
* environment?: 'dev' | 'staging' | 'prod',
|
|
* electronBaseDir?: string,
|
|
* steamAppId?: number,
|
|
* executableName?: string
|
|
* }>}
|
|
*/
|
|
export 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,
|
|
},
|
|
};
|