mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-13 07:22:36 +00:00
14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
import { build } from 'esbuild';
|
|
import { env } from 'node:process';
|
|
|
|
await build({
|
|
entryPoints: ['./src/index.ts'],
|
|
bundle: true,
|
|
platform: 'node',
|
|
target: 'node20',
|
|
minify: !!env['CI'],
|
|
tsconfig: 'tsconfig.dist.json',
|
|
sourcemap: true,
|
|
// format: 'esm', // TODO: later PR
|
|
outdir: './dist/',
|
|
});
|