refactor: js output
This commit is contained in:
parent
1aa28c2a34
commit
c6704c3a04
96 changed files with 3816 additions and 147 deletions
17
src/commands/PushCommand.d.ts
vendored
Normal file
17
src/commands/PushCommand.d.ts
vendored
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
import type { Argv, ArgumentsCamelCase } from "yargs";
|
||||
import { CLICommand } from "../cli/CLICommand.js";
|
||||
export declare class PushCommand extends CLICommand {
|
||||
readonly name = "push [ref]";
|
||||
readonly help = "Push commits to Bugzilla";
|
||||
readonly description = "Push git commits as Bugzilla comments, transitions as status updates";
|
||||
addArguments(yargs: Argv): Argv;
|
||||
execute(args: ArgumentsCamelCase): Promise<number>;
|
||||
private pushFromIssueBranch;
|
||||
private pushFromDevelop;
|
||||
private findOrCreateBug;
|
||||
private resolveAllBugs;
|
||||
private fetchCommentMeta;
|
||||
private postComment;
|
||||
private tagAsPushed;
|
||||
private formatComment;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue