#!/usr/bin/env node
/**
* Build Windows executable for claude-recall worker service
* Uses Bun's compile feature to create a standalone exe
*/
import { execSync } from 'child_process';
import fs from 'fs';
const version = JSON.parse(fs.readFileSync('package.json', 'utf-8')).version;
const outDir = 'dist/binaries';
fs.mkdirSync(outDir, { recursive: true });
console.log(`Building Windows exe v${version}...`);
try {
execSync(
`bun build --compile --minify --target=bun-windows-x64 ./src/core/worker-service.ts --outfile ${outDir}/worker-service-v${version}-win-x64.exe`,
{ stdio: 'inherit' }
);
console.log(`\nBuilt: ${outDir}/worker-service-v${version}-win-x64.exe`);
} catch (error) {
console.error('Failed to build Windows binary:', error.message);
process.exit(1);
}