UNPKG

@vant/cli

Version:

Vant CLI is a tool for building vue component library. You can quickly build a full-featured Vue component library with vant-cli.

8 lines (7 loc) 211 B
import type { LibraryFormats } from 'vite'; export type BundleOption = { minify?: boolean; formats: LibraryFormats[]; external?: string[]; }; export declare function compileBundles(): Promise<void>;