From 5c60738f2562f2d9a53a1af2a97a912632fd6666 Mon Sep 17 00:00:00 2001 From: Ali BARIN Date: Sat, 11 Dec 2021 17:02:57 +0100 Subject: [PATCH] chore: make packages explicit in yarn workspaces --- package.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 936a94ee..23cf055d 100644 --- a/package.json +++ b/package.json @@ -7,9 +7,12 @@ "start:backend": "lerna run --stream --scope @*/backend dev", "start:docs": "lerna run --stream --scope @*/docs start" }, - "workspaces": [ - "packages/*" - ], + "workspaces": { + "packages": [ + "packages/backend", + "packages/web" + ] + }, "devDependencies": { "lerna": "^4.0.0" },