summaryrefslogtreecommitdiff
path: root/.ci/bundle.js
blob: 46a9ce488e6763e7c55b2d14daffd7994ba41b80 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import * as esbuild from 'esbuild';
await esbuild
    .build({
        entryPoints: ['dist/ci.js'],
        bundle: true,
        minify: true,
        platform: 'node',
        outfile: 'ci.js',
        logLevel: 'info',
        sourcemap: false,
    })
    .catch(() => process.exit(1));