2026-04-20 15:41:15 +03:00
|
|
|
import fs from 'node:fs/promises';
|
|
|
|
|
import path from 'node:path';
|
|
|
|
|
import { spawnSync } from 'node:child_process';
|
|
|
|
|
import { fileURLToPath } from 'node:url';
|
|
|
|
|
|
|
|
|
|
const __filename = fileURLToPath(import.meta.url);
|
|
|
|
|
const __dirname = path.dirname(__filename);
|
|
|
|
|
|
|
|
|
|
const repoRoot = path.resolve(__dirname, '..', '..', '..');
|
|
|
|
|
const webDir = path.join(repoRoot, 'packages', 'web');
|
|
|
|
|
const electronDir = path.join(repoRoot, 'packages', 'electron');
|
|
|
|
|
|
|
|
|
|
const resourcesDir = path.join(electronDir, 'resources');
|
|
|
|
|
const resourcesWebDistDir = path.join(resourcesDir, 'web-dist');
|
|
|
|
|
const webDistDir = path.join(webDir, 'dist');
|
|
|
|
|
|
2026-05-26 11:13:59 -04:00
|
|
|
const quoteWindowsCommandArg = (value) => `"${String(value).replace(/"/g, '""')}"`;
|
|
|
|
|
|
2026-04-20 15:41:15 +03:00
|
|
|
const run = (cmd, args, cwd) => {
|
2026-05-26 11:13:59 -04:00
|
|
|
const isWindowsCommandScript = process.platform === 'win32' && /\.(cmd|bat)$/i.test(cmd);
|
|
|
|
|
const result = isWindowsCommandScript
|
|
|
|
|
? spawnSync(
|
|
|
|
|
process.env.ComSpec || 'cmd.exe',
|
|
|
|
|
['/d', '/s', '/c', ['call', quoteWindowsCommandArg(cmd), ...args.map(quoteWindowsCommandArg)].join(' ')],
|
|
|
|
|
{ cwd, stdio: 'inherit', windowsVerbatimArguments: true },
|
|
|
|
|
)
|
|
|
|
|
: spawnSync(cmd, args, { cwd, stdio: 'inherit' });
|
2026-04-20 15:41:15 +03:00
|
|
|
if (result.error) throw result.error;
|
|
|
|
|
if (result.status !== 0) {
|
|
|
|
|
throw new Error(`Command failed: ${cmd} ${args.join(' ')}`);
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const resolveBun = () => {
|
|
|
|
|
if (typeof process.env.BUN === 'string' && process.env.BUN.trim()) {
|
|
|
|
|
return process.env.BUN.trim();
|
|
|
|
|
}
|
2026-05-26 11:13:59 -04:00
|
|
|
if (process.platform === 'win32') {
|
|
|
|
|
const result = spawnSync('where.exe', ['bun'], { encoding: 'utf8' });
|
|
|
|
|
const candidates = String(result.stdout || '').split(/\r?\n/).map((line) => line.trim()).filter(Boolean);
|
|
|
|
|
const resolved = candidates.find((entry) => /\.(exe|cmd|bat)$/i.test(entry)) || candidates[0];
|
|
|
|
|
return resolved || 'bun';
|
|
|
|
|
}
|
2026-04-20 15:41:15 +03:00
|
|
|
const result = spawnSync('/bin/bash', ['-lc', 'command -v bun'], { encoding: 'utf8' });
|
|
|
|
|
const resolved = (result.stdout || '').trim();
|
|
|
|
|
return resolved || 'bun';
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const sleep = (ms) => new Promise((resolve) => setTimeout(resolve, ms));
|
|
|
|
|
|
|
|
|
|
const removeDir = async (target) => {
|
|
|
|
|
for (let attempt = 0; attempt < 5; attempt += 1) {
|
|
|
|
|
try {
|
|
|
|
|
await fs.rm(target, { recursive: true, force: true });
|
|
|
|
|
return;
|
|
|
|
|
} catch (error) {
|
|
|
|
|
if (attempt === 4) throw error;
|
|
|
|
|
if (!['ENOTEMPTY', 'EBUSY', 'EPERM'].includes(error?.code)) throw error;
|
|
|
|
|
await sleep(100 * (attempt + 1));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const copyDir = async (src, dst) => {
|
|
|
|
|
await fs.mkdir(dst, { recursive: true });
|
|
|
|
|
const entries = await fs.readdir(src, { withFileTypes: true });
|
|
|
|
|
for (const entry of entries) {
|
|
|
|
|
const from = path.join(src, entry.name);
|
|
|
|
|
const to = path.join(dst, entry.name);
|
|
|
|
|
if (entry.isDirectory()) {
|
|
|
|
|
await copyDir(from, to);
|
|
|
|
|
} else {
|
|
|
|
|
await fs.copyFile(from, to);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
const bunExe = resolveBun();
|
|
|
|
|
|
|
|
|
|
console.log('[electron] building web UI dist...');
|
|
|
|
|
run(bunExe, ['run', 'build'], webDir);
|
|
|
|
|
|
|
|
|
|
console.log('[electron] staging packaged resources...');
|
|
|
|
|
await fs.mkdir(resourcesDir, { recursive: true });
|
|
|
|
|
const stagedWebDistDir = await fs.mkdtemp(path.join(resourcesDir, 'web-dist-staging-'));
|
|
|
|
|
await copyDir(webDistDir, stagedWebDistDir);
|
|
|
|
|
await removeDir(resourcesWebDistDir);
|
|
|
|
|
await fs.rename(stagedWebDistDir, resourcesWebDistDir);
|
|
|
|
|
|
|
|
|
|
console.log(`[electron] web assets ready: ${resourcesWebDistDir}`);
|