How to do a monorepo setup without tooling, e.g. Nx or Turbo? #197
Unanswered
robotkutya
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Hi @robotkutya, To achieve an integrated monorepo with shared code between two Vite applications while avoiding complex tooling, you can use Yarn Workspaces with a minimal setup. Even though you mentioned avoiding workspaces, a simple Yarn Workspaces configuration allows you to share code without having to build separate packages, and you can manage all dependencies at the root level. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Dear community,
Thanks for this amazing resource!
I would like to ask if anyone has a good resource for how to set up an integrated style monorepo without any tooling.
In my specific usecase, there would be 2 Vite applications, and a shared "workspace" or "package" that would allow sharing code between the applications. I would like to avoid using workspaces and having to build packages. I would prefer to have a single source of truth for dependencies on the root level.
Beta Was this translation helpful? Give feedback.
All reactions