I have a project which consists of one runable project and multiple local packages. These packages are modules and a core framework. I am using json serialization and other packages which depend on build_runner
. The problem I am facing is that if I add a class which needs build_runner
to do it's work, I always have to navigate through the folders within the Terminal, and run the build_runner
manually.
Is there a way to tell the build_runner
to run on all local packages or at least ob the defined ones?
I have found an other SO Thread with quiet the same problem here, which suggests to use build_config package, but I am not sure, if this task is possible with this package