UNPKG

@postdata/cli

Version:

A CLI to run Postdata test scripts in CI environments.

17 lines (15 loc) 324 B
import { defineConfig } from "tsup"; export default defineConfig({ entry: [ "./src/index.ts" ], outDir: "./dist/", format: ["esm"], platform: "node", sourcemap: true, bundle: true, target: "esnext", skipNodeModulesBundle: false, esbuildOptions(options) { options.bundle = true }, clean: true, });