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
First of all, thanks for the awesome project! It will probably saves us hours of compilation every month 🎉
I have a monorepo that includes some "helpers" packages, installed by all my other packages. Those helpers don't have any build scripts. At first when I ran ultra-runner it detected that those packages had changed even if I didn't modify anything in them so I never hit the cache.
As soon as I added this empty script in my packages, I was able to hit the cache.
"scripts": {
"build": ""
}
Shouldn't the packages without build script be ignored by dependent packages?
The text was updated successfully, but these errors were encountered:
Hello,
First of all, thanks for the awesome project! It will probably saves us hours of compilation every month 🎉
I have a monorepo that includes some "helpers" packages, installed by all my other packages. Those helpers don't have any build scripts. At first when I ran ultra-runner it detected that those packages had changed even if I didn't modify anything in them so I never hit the cache.
As soon as I added this empty script in my packages, I was able to hit the cache.
Shouldn't the packages without build script be ignored by dependent packages?
The text was updated successfully, but these errors were encountered: