feat: intergrate vite_task_plan and vite_task_graph in vite_task::session#64
Merged
branchseer merged 10 commits intomainfrom Dec 18, 2025
Merged
feat: intergrate vite_task_plan and vite_task_graph in vite_task::session#64branchseer merged 10 commits intomainfrom
branchseer merged 10 commits intomainfrom
Conversation
Member
Author
This stack of pull requests is managed by Graphite. Learn more about stacking. |
3eb5866 to
dd8bd2d
Compare
11385ac to
effeb59
Compare
effeb59 to
9c7902a
Compare
9c7902a to
81f3d92
Compare
81f3d92 to
309fb9f
Compare
fengmk2
approved these changes
Dec 18, 2025
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.

feat: integrate vite_task_plan and vite_task_graph
This PR integrates the task planning and execution functionality from
vite_task_planandvite_task_graphinto the mainvite_taskcrate. Key changes include:Sessiontype invite_taskthat manages task graph loading and provides methods to plan and execute tasksclapfor task commandsasync-traitfor better async interface designvite_pathfor stable serialization of absolute pathsvite_task_graphtovite_taskvite_task_bincrate in favor of a binary invite_taskThe PR establishes a cleaner architecture where
vite_taskserves as the main entry point for task planning and execution, whilevite_task_graphandvite_task_planprovide the underlying functionality.