Feature: Add command to get packages from all projects#5175
Feature: Add command to get packages from all projects#5175DanTup merged 3 commits intoDart-Code:masterfrom
Conversation
DanTup
left a comment
There was a problem hiding this comment.
Thanks! I've pushed some minor tweaks and some tests and will merge once the bots are done.
btw, the extension should detect when this is required when you open the project, and it should watch Pubspec for changes to run again. I don't think having this command is a problem, but if it seems like you need to use this command frequently, there may be something not working correctly (unless you have deliberately turned off those other features). |
|
Thx and Perfect. I work in monorepo project of a big project. Sometimes I need run pub get in all because I add a folder with many submodules in my workspace or bacause I change flutter version and sometimes in git pull not working on opening project. For this, I resolved create manual command. 😃 |
|
Gotcha, this makes perfect sense then, thanks! This change will be included in the next release (releases are usually at the start of the month), and may show up in a pre-release version before then (todays pre-release was unfortunately before I merged this so it's not included in that). |
This Pull Request adds a new command to the DartCode extension for Visual Studio Code, enabling users to
run pub getfor all Dart projects within the workspace. This feature streamlines the process of fetching dependencies for multiple projects, enhancing productivity and efficiency.Changes