From 0783973f3dd173092577b520f033f66ed63363a5 Mon Sep 17 00:00:00 2001 From: Andrii Hrynenko Date: Fri, 5 Jul 2024 20:31:41 +0300 Subject: [PATCH] fix: repo-docs (#8675) ### Description Corrected a missing comma between items in a JSON array, which caused an error when copying and pasting a code fragment into a JSON file --- .../crafting-your-repository/structuring-a-repository.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx b/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx index 86cbcc65a0ae5..187b258ae3e9f 100644 --- a/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx +++ b/docs/repo-docs/crafting-your-repository/structuring-a-repository.mdx @@ -120,7 +120,7 @@ First, your package manager needs to describe the locations of your packages. We ```json title="./package.json" { "workspaces": [ - "apps/*" + "apps/*", "packages/*" ] } @@ -132,7 +132,7 @@ First, your package manager needs to describe the locations of your packages. We ```json title="./package.json" { "workspaces": [ - "apps/*" + "apps/*", "packages/*" ] }