chore: clean Tauri build artifacts in just clean#219
Merged
Conversation
desktop/src-tauri is excluded from the root Cargo workspace, so `cargo clean` at the root doesn't remove its target directory. Add an explicit clean for the Tauri manifest.
tlongwell-block
added a commit
that referenced
this pull request
Apr 3, 2026
Merges 4 commits from main: - feat: add Workflows UI surface (#217) - chore: clean Tauri build artifacts in just clean (#219) - fix: debounce composer pattern detection (#222) - fix(desktop): plug memory leaks causing 37GB+ RAM growth (#223) Conflict resolutions: - approvals.rs: Merged main's refactored approval handlers (validate_approval, execute_grant/deny, by-hash endpoints) with our ApiError conversion - workflows.rs: Converted new list_run_approvals endpoint to ApiError - AppShell.tsx: Merged main's 'workflows' view type with our hook extractions - CreateAgentDialog.tsx / AddChannelBotDialog.tsx: Merged main's eslint cleanup with our useBackendProviderProbe extraction All cargo clippy clean. Desktop pnpm check: 0 errors.
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds
cargo clean --manifest-path desktop/src-tauri/Cargo.tomlto thejust cleanrecipe.Why
desktop/src-tauriis explicitly excluded from the root Cargo workspace, socargo cleanat the root doesn't remove itstarget/directory. Without this, stale Tauri build artifacts survive ajust clean.