-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✨ Add a button to reset the PROS conductor file (#224)
* pros c reset button Works * fix prettier warning automated CI run of prettier is bugged * run prettier on new file please pass ci check * Allow conductor reset regardless of vscode context Co-authored-by: BennyBot <[email protected]> * Add package.json entry for resetConductor --------- Co-authored-by: BennyBot <[email protected]>
- Loading branch information
1 parent
c55104d
commit e9c433b
Showing
5 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import * as vscode from "vscode"; | ||
import { BaseCommand, BaseCommandOptions } from "./base-command"; | ||
|
||
export const resetConductor = async () => { | ||
const resetConductorCommandOptions: BaseCommandOptions = { | ||
command: "pros", | ||
args: ["c", "reset"], //--force not needed: Ben's base-commands class auto-handles warning + confirmation. | ||
message: "Resetting Conductor", | ||
requiresProsProject: false, | ||
successMessage: | ||
"Conductor Reset Successfully. Any templates and/or depots previously cached will need to be re-fetched.", | ||
}; | ||
const resetConductorCommand: BaseCommand = new BaseCommand( | ||
resetConductorCommandOptions | ||
); | ||
try { | ||
await resetConductorCommand.runCommand(); | ||
} catch (err: any) { | ||
await vscode.window.showErrorMessage(err.message); | ||
} | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters