From a24daa3a73b74ab8705ceeeaf0ac90ee545c7b56 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Thu, 30 Mar 2023 14:18:40 -0400 Subject: [PATCH] Try using nxignore to fix infinite loop Signed-off-by: Sebastian Malton --- .nxignore | 4 ++++ nx.json | 11 ----------- 2 files changed, 4 insertions(+), 11 deletions(-) create mode 100644 .nxignore diff --git a/.nxignore b/.nxignore new file mode 100644 index 0000000000..885f2fc229 --- /dev/null +++ b/.nxignore @@ -0,0 +1,4 @@ +packages/**/dist +packages/**/static/build +packages/**/build/webpack +packages/**/binaries diff --git a/nx.json b/nx.json index c1e07886f6..657b77e8db 100644 --- a/nx.json +++ b/nx.json @@ -25,17 +25,6 @@ "dev": { "dependsOn": [ "^dev" - ], - "outputs": [ - "{workspaceRoot}/dist", - "{workspaceRoot}/static/build", - "{workspaceRoot}/binaries", - "{workspaceRoot}/build/webpack" - ], - "inputs": [ - "{workspaceRoot}/src/**/*.ts", - "{workspaceRoot}/src/**/*.tsx", - "{workspaceRoot}/index.ts" ] }, "lint": {