summaryrefslogtreecommitdiff
path: root/.ci/bundle.js
blob: 524c2bb4cab643a5b69c744bf4bca95e88bf5f76 (plain)
1
2
3
4
5
6
7
8
9
10
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))