From 6388bfc714e97839fbbe0513bb33cd7398f0e993 Mon Sep 17 00:00:00 2001 From: Faruk AYDIN Date: Tue, 19 Nov 2024 20:37:08 +0300 Subject: [PATCH] docs: Adjust repository structure page to reflect individual packages --- packages/docs/pages/contributing/repository-structure.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/packages/docs/pages/contributing/repository-structure.md b/packages/docs/pages/contributing/repository-structure.md index 47c1532b..f8b613cc 100644 --- a/packages/docs/pages/contributing/repository-structure.md +++ b/packages/docs/pages/contributing/repository-structure.md @@ -1,6 +1,6 @@ # Repository Structure -We use `lerna` with `yarn workspaces` to manage the mono repository. We have the following packages: +We manage a monorepo structure with the following packages: ``` . @@ -15,3 +15,5 @@ We use `lerna` with `yarn workspaces` to manage the mono repository. We have the - `docs` - The docs package contains the documentation website. - `e2e-tests` - The e2e-tests package contains the end-to-end tests for the internal usage. - `web` - The web package contains the frontend application of Automatisch. + +Each package is independently managed, and has its own package.json file to manage dependencies. This allows for better isolation and flexibility.