35 lines
946 B
TypeScript
35 lines
946 B
TypeScript
import { $ } from 'bun';
|
|
|
|
import path from 'path';
|
|
import fs from 'fs/promises';
|
|
import { buildHTML } from "./html";
|
|
import select from '@inquirer/select';
|
|
import { isGame, getGames } from './isGame';
|
|
|
|
const outDir = path.resolve(import.meta.dir, '..', '..', 'dist');
|
|
await fs.mkdir(outDir, { recursive: true });
|
|
|
|
let game = process.argv[2];
|
|
const publish = process.env.PUBLISH_LOCATION;
|
|
|
|
while (!await isGame(game)) {
|
|
game = await select({
|
|
message: 'Game to build:',
|
|
choices: (await getGames()).map(value => ({ value })),
|
|
});
|
|
}
|
|
|
|
const html = await buildHTML(game, { production: true });
|
|
|
|
if (!html) {
|
|
process.exit(1);
|
|
}
|
|
const filePath = path.resolve(outDir, `${game}.html`);
|
|
await Bun.write(filePath, html);
|
|
|
|
if (publish) {
|
|
const result = await $`scp "${filePath}" "${publish}${game}.html"`;
|
|
if (result.exitCode === 0) {
|
|
console.log(`Build successful: ${process.env.PUBLISH_URL}${game}.html`);
|
|
}
|
|
} |