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
In working on #166 it became apparent to me that there's a number of cases where you'd want to run a command on all of the Flutter or non-Flutter packages. I can also imagine a number of other dependency-related tasks like #117. The following would be a breaking change but would allow room to grow:
mono_repo pub: argument pass-through to pub executable, run on all non-flutter packages
mono_repo flutter: argument pass-through to flutter executable, run on all flutter packages
mono_repo dependency (abbreviation dep?)
get: do pub get or flutter packages get across all packages as needed
The change would be breaking for anyone currently using mono_repo pub [get|upgrade] to work with Flutter dependencies. It might make sense paired with #145 in a major version bump.
The text was updated successfully, but these errors were encountered:
In working on #166 it became apparent to me that there's a number of cases where you'd want to run a command on all of the Flutter or non-Flutter packages. I can also imagine a number of other dependency-related tasks like #117. The following would be a breaking change but would allow room to grow:
mono_repo pub
: argument pass-through topub
executable, run on all non-flutter packagesmono_repo flutter
: argument pass-through toflutter
executable, run on all flutter packagesmono_repo dependency
(abbreviationdep
?)get
: dopub get
orflutter packages get
across all packages as neededupgrade
: same for upgradeoverride [add|remove]
: add or remove sibling overrides (Allows population of dependency_overrides #117)The change would be breaking for anyone currently using
mono_repo pub [get|upgrade]
to work with Flutter dependencies. It might make sense paired with #145 in a major version bump.The text was updated successfully, but these errors were encountered: