From 957a0d896bc8b43ed470a8563c1787ebc4c68636 Mon Sep 17 00:00:00 2001 From: "David L. Qiu" Date: Sat, 4 Mar 2023 01:48:11 +0000 Subject: [PATCH 1/2] add package root to workspaces --- package.json | 1 + 1 file changed, 1 insertion(+) diff --git a/package.json b/package.json index 4910a73bb..081557b23 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "0.0.1", "private": true, "workspaces": [ + ".", "packages/*" ], "scripts": { From 5624fc1be50e3ca54f49cc09d9646a1c7964e1a4 Mon Sep 17 00:00:00 2001 From: "David L. Qiu" Date: Sat, 4 Mar 2023 16:11:48 +0000 Subject: [PATCH 2/2] configure Nx to not include root scripts as Nx targets --- package.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/package.json b/package.json index 081557b23..fad96ee55 100644 --- a/package.json +++ b/package.json @@ -20,5 +20,8 @@ "devDependencies": { "lerna": "^6.4.1", "@jupyterlab/builder": "^3.1.0" + }, + "nx": { + "includedScripts": [] } }