-
Is your feature request related to a problem? Please describe. Describe the solution you'd like Describe alternatives you've considered |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Have you tried Or would you more like the ability to run an arbitrary script, but in the utilising the build cache and topology of your dependencies? Anytime you run In that sense, |
Beta Was this translation helpful? Give feedback.
-
Thanks, that suits my need. I will close this issue. |
Beta Was this translation helpful? Give feedback.
Have you tried
yarn build -c scriptName
? WherescriptName
is a script present in all your workspaces?Or would you more like the ability to run an arbitrary script, but in the utilising the build cache and topology of your dependencies?
Anytime you run
yarn build
where it's justbuild
ortest
or a-c action
a cache is kept for each workspace and package, so we know if we need to re run it.In that sense,
yarn build
is not really designed for ad hoc scripts, but those that are key to your dev/deploy loop.