Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion tools/repo-toolbox/src/cli/ToolboxCommandLine.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ import { TagBuildAction } from './actions/TagBuildAction';
import { FindBumpPipelineRunAction } from './actions/FindBumpPipelineRunAction';
import { CreateGitHubReleasesAction } from './actions/CreateGitHubReleasesAction';
import { VerifyNpmTagAction } from './actions/VerifyNpmTagAction';
import { SpfxUpgradeAction } from './actions/SpfxUpgradeAction';

Comment on lines +13 to 14
export class ToolboxCommandLine extends CommandLineParser {
public readonly terminal: ITerminal;
Expand All @@ -28,5 +29,6 @@ export class ToolboxCommandLine extends CommandLineParser {
this.addAction(new FindBumpPipelineRunAction(terminal));
this.addAction(new CreateGitHubReleasesAction(terminal));
this.addAction(new VerifyNpmTagAction(terminal));
this.addAction(new SpfxUpgradeAction(terminal));
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -155,4 +155,4 @@ export class CreateGitHubReleasesAction extends GitHubTokenActionBase<true> {
{ concurrency: 5 }
);
}
}
}
2 changes: 1 addition & 1 deletion tools/repo-toolbox/src/cli/actions/TagBuildAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ export class TagBuildAction extends CommandLineAction {
terminal.writeLine(`##vso[build.addbuildtag]${bumpTag}`);
terminal.writeLine(`Tagged build: ${bumpTag}`);
}
}
}