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