You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The main handler for the `list_projects` tool was becoming complex, with the main loop handling file parsing, version discovery, and multiple error paths.
This change extracts the logic for processing a single `angular.json` file into a new `processConfigFile` helper function. This refactoring improves the codes structure by separating the orchestration logic in the main handler from the implementation details of processing a file.
This leads to a more modular, readable, and maintainable codebase with no change to the tools external behavior or output.
0 commit comments