mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 14:37:58 +00:00
9 lines
195 B
JavaScript
9 lines
195 B
JavaScript
import * as esbuild from 'esbuild';
|
|
import { esbuildCommon } from './esbuildCommon.js';
|
|
|
|
await esbuild.build({
|
|
...esbuildCommon,
|
|
entryPoints: ['src/app.ts'],
|
|
outfile: 'dist/index.cjs',
|
|
});
|