@oriflame/semantic-release-config
Version:
Semantic release config used inside Oriflame and mainly focused on azure DevOps. With conventional [**Oriflame changelog**](../conventional-changelog).
14 lines • 394 B
TypeScript
declare type PluginWithSetting = [string, Record<string, unknown>];
interface BranchObject {
name: string;
prerelease?: boolean;
channel?: string;
}
declare type Plugin = PluginWithSetting | string;
declare type Branch = BranchObject | string;
export interface SemanticReleaseConfig {
branches?: Branch[];
plugins?: Plugin[];
}
export {};
//# sourceMappingURL=types.d.ts.map