zip-build
Version:
Node package to zip your build directory and name it according to your package.json name and version.
13 lines (12 loc) • 324 B
TypeScript
import { Arguments } from 'yargs';
import { ZipBuildFormat } from './ZipBuildFormat';
export interface IZipBuildArguments extends Arguments {
buildDir: string;
zipDir: string;
interactive: boolean;
format: ZipBuildFormat;
subDir: string;
name: boolean;
override: boolean;
template: string;
}