@jwpkg/gitversion
Version:
Gitversion is a complete customizable git-based release management system
10 lines (9 loc) • 385 B
TypeScript
import { NodeProject } from './node-project';
import { NpmPlugin } from './npm';
import { PNpmPlugin } from './pnpm';
import { YarnBerryPlugin } from './yarn';
export * from './node-project';
export * from './npm';
export * from './pnpm';
export * from './yarn';
export declare const nodePlugins: (typeof NodeProject | typeof NpmPlugin | typeof PNpmPlugin | typeof YarnBerryPlugin)[];