UNPKG

create-cf-planetscale-app

Version:

Create a Cloudflare workers app for building production ready RESTful APIs using Hono

19 lines (16 loc) 349 B
import { build } from 'esbuild' try { await build({ entryPoints: ['./src/index.ts'], bundle: true, outdir: './dist/', sourcemap: true, minify: true, conditions: ['worker', 'browser'], outExtension: { '.js': '.mjs' }, format: 'esm', target: 'esnext' }) } catch { process.exitCode = 1 }