You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
sims-hq/apps/store-server/build-server.mjs

12 lines
233 B
JavaScript

import { build } from 'esbuild'
await build({
entryPoints: ['src/server.ts'],
outfile: 'dist/server.cjs',
bundle: true,
platform: 'node',
format: 'cjs',
external: ['better-sqlite3'],
})
console.log('store-server built')