mirror of
https://github.com/cupcakearmy/cryptgeon.git
synced 2024-11-01 04:44:16 +01:00
35 lines
659 B
JavaScript
Executable File
35 lines
659 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import { build, context } from 'esbuild'
|
|
import pkg from '../package.json' assert { type: 'json' }
|
|
|
|
const common = {
|
|
bundle: true,
|
|
minify: true,
|
|
platform: 'node',
|
|
define: { VERSION: `"${pkg.version}"` },
|
|
}
|
|
|
|
const cliOptions = {
|
|
...common,
|
|
entryPoints: ['./src/cli.ts'],
|
|
format: 'cjs',
|
|
outfile: './dist/cli.cjs',
|
|
}
|
|
|
|
const indexOptions = {
|
|
...common,
|
|
entryPoints: ['./src/index.ts'],
|
|
outfile: './dist/index.mjs',
|
|
format: 'esm',
|
|
}
|
|
|
|
const watch = process.argv.slice(2)[0] === '--watch'
|
|
if (watch) {
|
|
const ctx = await context(cliOptions)
|
|
ctx.watch()
|
|
} else {
|
|
await build(cliOptions)
|
|
await build(indexOptions)
|
|
}
|