What's the difference between a Turbo app and a Turbo package? #9420
-
SummaryI understand that the difference between an app and a package is that an app is a deployable unit (something we can wrap in a Docker container and deploy), while a package is just a library - a dependency shared between apps and other packages. Up until now, I thought that placing one under an But I found two places in the documentation that indicate Turbo might apply some special treatment depending on whether it's an app or a regular package:
Does this mean that Turbo makes some distinction between apps and packages, or is it just the documentation that's misleading and the Additional informationNo response ExampleNo response |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
You're correct that this is only a convention. Turborepo carries no distinction on these directories.
|
Beta Was this translation helpful? Give feedback.
You're correct that this is only a convention. Turborepo carries no distinction on these directories.
turbo gen
does leverage those conventions. However, it's more likely that we should find a way forturbo gen
to not have this behavior.