mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-22 09:31:46 +03:00
87 lines
2.0 KiB
TypeScript
87 lines
2.0 KiB
TypeScript
import path from 'node:path';
|
|
import { fileURLToPath } from 'node:url';
|
|
import { parseArgs } from 'node:util';
|
|
|
|
import debug from 'debug';
|
|
import { z } from 'zod';
|
|
|
|
const log = debug('affine:make-env');
|
|
|
|
const ReleaseTypeSchema = z.enum(['stable', 'beta', 'canary', 'internal']);
|
|
|
|
const __dirname = fileURLToPath(new URL('.', import.meta.url));
|
|
|
|
const REPO_ROOT = path.resolve(__dirname, '..', '..', '..', '..', '..');
|
|
const ROOT = path.resolve(__dirname, '..');
|
|
|
|
const envBuildType = (process.env.BUILD_TYPE || 'canary').trim().toLowerCase();
|
|
const buildType = ReleaseTypeSchema.parse(envBuildType);
|
|
const stableBuild = buildType === 'stable';
|
|
const productName = !stableBuild ? `AFFiNE-${buildType}` : 'AFFiNE';
|
|
const icoPath = path.join(
|
|
ROOT,
|
|
!stableBuild
|
|
? `./resources/icons/icon_${buildType}.ico`
|
|
: './resources/icons/icon.ico'
|
|
);
|
|
|
|
const iconX64PngPath = path.join(
|
|
ROOT,
|
|
`./resources/icons/icon_${buildType}_64x64.png`
|
|
);
|
|
|
|
const icnsPath = path.join(
|
|
ROOT,
|
|
!stableBuild
|
|
? `./resources/icons/icon_${buildType}.icns`
|
|
: './resources/icons/icon.icns'
|
|
);
|
|
|
|
const iconPngPath = path.join(ROOT, './resources/icons/icon.png');
|
|
|
|
const iconUrl = `https://cdn.affine.pro/app-icons/icon_${buildType}.ico`;
|
|
|
|
log(`buildType=${buildType}, productName=${productName}, icoPath=${icoPath}`);
|
|
|
|
const {
|
|
values: { arch, platform },
|
|
} = parseArgs({
|
|
options: {
|
|
arch: {
|
|
type: 'string',
|
|
description: 'The architecture to build for',
|
|
default: process.arch,
|
|
},
|
|
platform: {
|
|
type: 'string',
|
|
description: 'The platform to build for',
|
|
default: process.platform,
|
|
},
|
|
},
|
|
});
|
|
|
|
log(`parsed args: arch=${arch}, platform=${platform}`);
|
|
|
|
const appIdMap = {
|
|
internal: 'pro.affine.internal',
|
|
canary: 'pro.affine.canary',
|
|
beta: 'pro.affine.beta',
|
|
stable: 'pro.affine.app',
|
|
};
|
|
|
|
export {
|
|
appIdMap,
|
|
arch,
|
|
buildType,
|
|
icnsPath,
|
|
iconPngPath,
|
|
iconUrl,
|
|
iconX64PngPath,
|
|
icoPath,
|
|
platform,
|
|
productName,
|
|
REPO_ROOT,
|
|
ROOT,
|
|
stableBuild,
|
|
};
|