chore(cli): drop Node.js v18 support (#4583)

This commit is contained in:
James George
2024-12-02 08:19:46 -08:00
committed by GitHub
parent e2e769db71
commit a08c6f6b3e
4 changed files with 145 additions and 90 deletions

View File

@@ -1,7 +1,7 @@
import { defineConfig } from "tsup";
export default defineConfig({
entry: [ "./src/index.ts" ],
entry: ["./src/index.ts"],
outDir: "./dist/",
format: ["esm"],
platform: "node",
@@ -10,7 +10,7 @@ export default defineConfig({
target: "esnext",
skipNodeModulesBundle: false,
esbuildOptions(options) {
options.bundle = true
options.bundle = true;
},
clean: true,
});