UNPKG

@vctqs1/vite-plugin-resource-collector

Version:

a Vite plugin designed to help developers collect and log transpiled source files during the build process

9 lines (8 loc) 306 B
import { type Plugin } from "vite"; export type VitePluginResourceCollectorOptions = { outputDir?: string; baseDir?: string; mode?: "copy" | "log"; logType?: "md" | "csv" | "json"; }; export default function vitePluginResourceCollector(options: VitePluginResourceCollectorOptions): Plugin;