cryptgeon/packages/cli/build.js

15 lines
321 B
JavaScript
Raw Normal View History

2024-08-23 09:59:06 +02:00
import pkg from './package.json' assert { type: 'json' }
import { build } from 'tsup'
const watch = process.argv.slice(2)[0] === '--watch'
await build({
entry: ['src/index.ts', 'src/cli.ts'],
dts: true,
minify: true,
format: ['esm', 'cjs'],
clean: true,
define: { VERSION: `"${pkg.version}"` },
watch,
})