Release Helper Tools 0.1.0
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import { resolve } from "node:path";
|
||||
import { defineConfig } from "vite";
|
||||
|
||||
export default defineConfig({
|
||||
build: {
|
||||
outDir: "lib-dist",
|
||||
emptyOutDir: true,
|
||||
copyPublicDir: false,
|
||||
sourcemap: false,
|
||||
minify: false,
|
||||
lib: {
|
||||
entry: resolve(import.meta.dirname, "src/helpers/index.ts"),
|
||||
formats: ["es"],
|
||||
fileName: () => "index.js",
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user