UNPKG

@tianyio/quality-helper

Version:

A comprehensive quality helper tool for project scaffolding and management

17 lines (16 loc) 472 B
import { Plugin } from 'vite'; /** * 版本信息插件配置选项 */ export interface VersionPluginOptions { /** 是否包含 Git 信息,默认为 true */ includeGitInfo?: boolean; /** 是否包含构建时间,默认为 true */ includeBuildTime?: boolean; /** 时间格式化函数 */ timeFormatter?: (date: Date) => string; } /** * 版本信息插件 */ export declare function versionInfoPlugin(options?: VersionPluginOptions): Plugin;