@bonvoy/plugin-git 0.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,25 @@
1
+ import { BonvoyPlugin } from "@bonvoy/core";
2
+
3
+ //#region src/git.d.ts
4
+ interface GitPluginConfig {
5
+ commitMessage?: string;
6
+ tagFormat?: string;
7
+ push?: boolean;
8
+ }
9
+ declare class GitPlugin implements BonvoyPlugin {
10
+ name: string;
11
+ private config;
12
+ constructor(config?: GitPluginConfig);
13
+ apply(bonvoy: {
14
+ hooks: {
15
+ beforePublish: any;
16
+ afterPublish: any;
17
+ };
18
+ }): void;
19
+ private commitChanges;
20
+ private createTags;
21
+ private pushChanges;
22
+ }
23
+ //#endregion
24
+ export { type GitPluginConfig, GitPlugin as default };
25
+ //# sourceMappingURL=index.d.mts.map