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
This removes the binary executable
from the package and re-introduces the build_runner system.
It allows multiple design systems to be configured
and is more aligned to the "standard" dart build
behaviour. To migrate: Move the design-system.json
file into the lib/ folder and give it another name,
such as app.design-system.json. Then remove your
ref to the binary dart run design_system_generator generate
and just run dart run build_runner build instead.
since the dart build
system is not as dynamic as it should be for
this usecase, using a builder is not
sufficient. Now a CLI executable
is used to find and parse the design system
configuration and then generate the
specific design token files according to
the configuration.