Skip to main content
Module

x/eszip/examples/build.ts

A compact file format to losslessly serialize an ECMAScript module graph into a single file
Go to Latest
File
import { build } from "../mod.ts";
const path = new URL("./worker.tsx", import.meta.url).href;console.log(path);const eszip = await build([path]);console.log(eszip);