feat(commands): add release and changelog commands
This commit is contained in:
10
src/types.ts
10
src/types.ts
@@ -1,3 +1,5 @@
|
||||
import { DefaultLogFields, ListLogLine } from "simple-git";
|
||||
|
||||
export interface Config {
|
||||
types?: Array<Type>;
|
||||
scopes?: Array<string>;
|
||||
@@ -8,3 +10,11 @@ export interface Type {
|
||||
value: string;
|
||||
hint: string;
|
||||
}
|
||||
|
||||
export interface CommitStack {
|
||||
version: string;
|
||||
breaking: Array<DefaultLogFields & ListLogLine>;
|
||||
features: Array<DefaultLogFields & ListLogLine>;
|
||||
fixes: Array<DefaultLogFields & ListLogLine>;
|
||||
miscellaneous: Array<DefaultLogFields & ListLogLine>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user