diff --git a/tools/repo-toolbox/src/cli/ToolboxCommandLine.ts b/tools/repo-toolbox/src/cli/ToolboxCommandLine.ts index 7f027435..7e6e16a9 100644 --- a/tools/repo-toolbox/src/cli/ToolboxCommandLine.ts +++ b/tools/repo-toolbox/src/cli/ToolboxCommandLine.ts @@ -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'; export class ToolboxCommandLine extends CommandLineParser { public readonly terminal: ITerminal; @@ -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)); } -} +} \ No newline at end of file diff --git a/tools/repo-toolbox/src/cli/actions/CreateGitHubReleasesAction.ts b/tools/repo-toolbox/src/cli/actions/CreateGitHubReleasesAction.ts index 717a62f8..1b1f28cb 100644 --- a/tools/repo-toolbox/src/cli/actions/CreateGitHubReleasesAction.ts +++ b/tools/repo-toolbox/src/cli/actions/CreateGitHubReleasesAction.ts @@ -155,4 +155,4 @@ export class CreateGitHubReleasesAction extends GitHubTokenActionBase { { concurrency: 5 } ); } -} +} \ No newline at end of file diff --git a/tools/repo-toolbox/src/cli/actions/TagBuildAction.ts b/tools/repo-toolbox/src/cli/actions/TagBuildAction.ts index 52f1f9b8..f0280638 100644 --- a/tools/repo-toolbox/src/cli/actions/TagBuildAction.ts +++ b/tools/repo-toolbox/src/cli/actions/TagBuildAction.ts @@ -41,4 +41,4 @@ export class TagBuildAction extends CommandLineAction { terminal.writeLine(`##vso[build.addbuildtag]${bumpTag}`); terminal.writeLine(`Tagged build: ${bumpTag}`); } -} +} \ No newline at end of file