In my project, I have separated my code into several packages. So every time when there is a code change, I have to go through each package and run flutter pub get
and flutter pub run build_runner
commands. (I know flutter caches packages in my local environment. but this is a problem when it comes to CI/CD)
My question is, Is there a way to override the above commands? so that command can fetch packages for the top level and packages folder.
my project (pubspec.yaml)
-- packages
---- package 1 (pubspec.yaml)
---- pakcage 2 (pubspec.yaml)
---- pakcage 3 (pubspec.yaml)