lib-tools
Version:
The lib-tools helps you simplify the build, bundle, test and npm packaging workflows for Typescript, JavaScript, Angular library projects and assets module projects.
15 lines (14 loc) • 353 B
TypeScript
import { SharedCommandOptions } from './shared-command-options';
/**
* @additionalProperties true
*/
export interface BuildCommandOptions extends SharedCommandOptions {
/**
* Set the version to override the version field of the package.json file.
*/
version?: string;
/**
* Run in watch mode.
*/
watch?: boolean;
}