mirror of
https://github.com/renovatebot/github-action.git
synced 2025-12-27 12:43:37 +00:00
14 lines
293 B
JavaScript
14 lines
293 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',
|
|
outdir: './dist/',
|
|
});
|