From 285682d615bd0dfc5d2598490da3b5943a3c67d7 Mon Sep 17 00:00:00 2001 From: david qiu Date: Sat, 4 Mar 2023 08:37:55 -0800 Subject: [PATCH] Add root package as Nx project (#8) * add package root to workspaces * configure Nx to not include root scripts as Nx targets --- package.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/package.json b/package.json index 4910a73bb..fad96ee55 100644 --- a/package.json +++ b/package.json @@ -3,6 +3,7 @@ "version": "0.0.1", "private": true, "workspaces": [ + ".", "packages/*" ], "scripts": { @@ -19,5 +20,8 @@ "devDependencies": { "lerna": "^6.4.1", "@jupyterlab/builder": "^3.1.0" + }, + "nx": { + "includedScripts": [] } }