mirror of
https://github.com/Retropex/DeepSea-startos.git
synced 2025-05-12 21:50:42 +02:00
7 lines
200 B
TypeScript
7 lines
200 B
TypeScript
// scripts/bundle.ts
|
|
import { bundle } from "https://deno.land/x/emit@0.40.0/mod.ts";
|
|
|
|
const result = await bundle("scripts/embassy.ts");
|
|
|
|
await Deno.writeTextFile("scripts/embassy.js", result.code);
|