@coveo/semantic-monorepo-tools
Version:
A library of helper functions to do SemVer2 compliant releases from Conventional Commits in monorepos
23 lines (22 loc) • 713 B
TypeScript
interface NpmOptions {
/**
* Specify the tag to publish on
* @default "latest"
* @see {@link https://docs.npmjs.com/cli/v8/commands/npm-publish#tag}
*/
tag?: string;
/**
* Indicates that a provenance statement should be generated.
* @default false
* @see {@link https://docs.npmjs.com/cli/v8/commands/npm-publish#provenance}
*/
provenance?: boolean;
/**
* Specify the registry to publish to, overriding the default registry.
* @default undefined
* @see {@link https://docs.npmjs.com/cli/v9/using-npm/config#registry}
*/
registry?: string;
}
export default function (PATH: string, npmOpts?: NpmOptions): Promise<void>;
export {};