mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
feat: enhance iterate routine with progressive git operations and post-validation workflow
This commit is contained in:
parent
9666a56a0e
commit
172f8d747c
1 changed files with 4 additions and 4 deletions
|
|
@ -33,7 +33,7 @@ export async function handlePackageManagerMessages(
|
|||
if (packageManagerManager.isFetching) {
|
||||
console.log("Package Manager: Fetch already in progress, skipping")
|
||||
provider.postMessageToWebview({
|
||||
type: "packageManagerButtonClicked",
|
||||
type: "state",
|
||||
text: "Fetch already in progress",
|
||||
})
|
||||
packageManagerManager.isFetching = false
|
||||
|
|
@ -97,7 +97,7 @@ export async function handlePackageManagerMessages(
|
|||
const errorMessage = `Failed to load package manager sources:\n${result.errors.join("\n")}`
|
||||
vscode.window.showErrorMessage(errorMessage)
|
||||
provider.postMessageToWebview({
|
||||
type: "packageManagerButtonClicked",
|
||||
type: "state",
|
||||
text: errorMessage,
|
||||
})
|
||||
packageManagerManager.isFetching = false
|
||||
|
|
@ -121,7 +121,7 @@ export async function handlePackageManagerMessages(
|
|||
console.error("Error in package manager initialization:", initError)
|
||||
vscode.window.showErrorMessage(errorMessage)
|
||||
provider.postMessageToWebview({
|
||||
type: "packageManagerButtonClicked",
|
||||
type: "state",
|
||||
text: errorMessage,
|
||||
})
|
||||
// The state will already be updated with empty items by PackageManagerManager
|
||||
|
|
@ -133,7 +133,7 @@ export async function handlePackageManagerMessages(
|
|||
console.error("Failed to fetch package manager items:", error)
|
||||
vscode.window.showErrorMessage(errorMessage)
|
||||
provider.postMessageToWebview({
|
||||
type: "packageManagerButtonClicked",
|
||||
type: "state",
|
||||
text: errorMessage,
|
||||
})
|
||||
packageManagerManager.isFetching = false
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue