mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
11 lines
230 B
JavaScript
11 lines
230 B
JavaScript
import * as esbuild from 'esbuild';
|
|
import { esbuildCommon } from './esbuildCommon.js';
|
|
|
|
await esbuild.build({
|
|
...esbuildCommon,
|
|
entryPoints: ['src/app.ts'],
|
|
minify: false,
|
|
dropLabels: [],
|
|
outfile: 'dist/index.cjs',
|
|
});
|