refactor(pm): move install, add and remove to commands mod#252
Merged
fengmk2 merged 1 commit intoOct 25, 2025
Merged
Conversation
Member
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
This was referenced Oct 24, 2025
fengmk2
marked this pull request as ready for review
October 24, 2025 01:36
fengmk2
force-pushed
the
pm-update-command
branch
from
October 24, 2025 01:40
05bc310 to
ea54801
Compare
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
2 times, most recently
from
October 24, 2025 01:45
e100496 to
11e26f4
Compare
fengmk2
force-pushed
the
pm-update-command
branch
from
October 24, 2025 01:45
ea54801 to
2f0f815
Compare
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 24, 2025 02:50
11e26f4 to
69339c8
Compare
fengmk2
force-pushed
the
pm-update-command
branch
2 times, most recently
from
October 24, 2025 03:43
cc33d8b to
7ae9ad1
Compare
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 24, 2025 03:43
69339c8 to
8ed9573
Compare
fengmk2
force-pushed
the
pm-update-command
branch
from
October 24, 2025 03:58
7ae9ad1 to
23f88aa
Compare
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 24, 2025 03:58
8ed9573 to
2a46afa
Compare
fengmk2
force-pushed
the
pm-update-command
branch
from
October 24, 2025 04:32
23f88aa to
e3f48f4
Compare
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 24, 2025 04:32
2a46afa to
f727103
Compare
fengmk2
force-pushed
the
pm-update-command
branch
from
October 24, 2025 05:50
e3f48f4 to
f0fd63d
Compare
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 24, 2025 05:50
f727103 to
4119c3d
Compare
graphite-app
Bot
changed the base branch from
pm-update-command
to
graphite-base/252
October 24, 2025 09:15
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 24, 2025 15:16
4119c3d to
4cec2b4
Compare
fengmk2
force-pushed
the
graphite-base/252
branch
from
October 24, 2025 15:16
f0fd63d to
7abd51f
Compare
wan9chi
approved these changes
Oct 25, 2025
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 25, 2025 04:34
4cec2b4 to
9b40d7f
Compare
fengmk2
force-pushed
the
graphite-base/252
branch
from
October 25, 2025 04:34
7abd51f to
c4088c9
Compare
fengmk2
force-pushed
the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
from
October 25, 2025 04:35
9b40d7f to
d2604ee
Compare
Member
Author
fengmk2
deleted the
10-24-refactor_pm_move_install_add_and_remove_to_commands_mod
branch
October 25, 2025 04:46
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.

TL;DR
Reorganized package manager command modules into a more structured directory layout.
What changed?
add.rs,install.rs, andremove.rsinto thecommandsdirectorycommands/mod.rsfile to expose these moduleslib.rsto reflect the new module structureHow to test?
Why make this change?
This change improves the code organization by grouping all command-related modules under a single
commandsdirectory. This creates a more logical structure where related functionality is grouped together, making the codebase easier to navigate and maintain.