git-revision-webpack-plugin
Version:
[](https://badge.fury.io/js/git-revision-webpack-plugin) [](https://www.npmjs.com/package/
11 lines (10 loc) • 324 B
TypeScript
import { Compiler } from 'webpack';
interface BuildFileOptions {
compiler: Compiler;
gitWorkTree?: string;
command: string;
replacePattern: RegExp;
asset: string;
}
export default function buildFile({ compiler, gitWorkTree, command, replacePattern, asset }: BuildFileOptions): void;
export {};