mirror of
https://github.com/lobehub/lobehub.git
synced 2026-03-26 13:19:34 +07:00
- Remove desktop-build-electron.yml workflow - Add verify-electron-codemod.yml workflow for i18n transformation - Add i18nDynamicToStatic modifier for dynamic to static i18n conversion - Update build workflows to use new i18n modifier approach - Update README and package.json configurations
53 lines
1.5 KiB
TypeScript
53 lines
1.5 KiB
TypeScript
/* eslint-disable unicorn/no-process-exit */
|
|
import { execSync } from 'node:child_process';
|
|
import os from 'node:os';
|
|
|
|
/**
|
|
* Build desktop application based on current operating system platform
|
|
*/
|
|
const buildElectron = () => {
|
|
const platform = os.platform();
|
|
const startTime = Date.now();
|
|
|
|
console.log(`🔨 Starting to build desktop app for ${platform} platform...`);
|
|
|
|
try {
|
|
let buildCommand = '';
|
|
|
|
// Determine build command based on platform
|
|
switch (platform) {
|
|
case 'darwin': {
|
|
buildCommand = 'npm run package:mac --prefix=./apps/desktop';
|
|
console.log('📦 Building macOS desktop application...');
|
|
break;
|
|
}
|
|
case 'win32': {
|
|
buildCommand = 'npm run package:win --prefix=./apps/desktop';
|
|
console.log('📦 Building Windows desktop application...');
|
|
break;
|
|
}
|
|
case 'linux': {
|
|
buildCommand = 'npm run package:linux --prefix=./apps/desktop';
|
|
console.log('📦 Building Linux desktop application...');
|
|
break;
|
|
}
|
|
default: {
|
|
throw new Error(`Unsupported platform: ${platform}`);
|
|
}
|
|
}
|
|
|
|
// Execute build command
|
|
execSync(buildCommand, { stdio: 'inherit' });
|
|
|
|
const endTime = Date.now();
|
|
const buildTime = ((endTime - startTime) / 1000).toFixed(2);
|
|
console.log(`✅ Desktop application build completed! (${buildTime}s)`);
|
|
} catch (error) {
|
|
console.error('❌ Build failed:', error);
|
|
process.exit(1);
|
|
}
|
|
};
|
|
|
|
// Execute build
|
|
buildElectron();
|