UNPKG

semantic-release-config

Version:

Bundles together an ambitious semantic-release shared configuration used across many project types

13 lines (12 loc) 404 B
export declare type CommitTypes = 'build' | 'ci' | 'docs' | 'feat' | 'fix' | 'perf' | 'refactor' | 'revert' | 'style' | 'test' | 'wip' | 'chore'; export declare const COMMIT_ASSETS: string[]; export declare const DEFAULT_RELEASE_RULES: ({ release: any; type: CommitTypes; } | { message: string; release: string; })[]; export declare const DEFAULT_ASSETS_FILES: { path: string[]; }[];