From 3d57de5c9bf600e40175fd572f153926be61e27b Mon Sep 17 00:00:00 2001 From: Chris Olszewski Date: Fri, 2 Feb 2024 11:31:44 -0800 Subject: [PATCH] fix: avoid expensive globwalk in examples --- examples/turbo.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/examples/turbo.json b/examples/turbo.json index 743e696bec9c7..ff19f8b6ee4c0 100644 --- a/examples/turbo.json +++ b/examples/turbo.json @@ -3,6 +3,10 @@ "pipeline": { // This needs to exist because upstream packages depend on it and // it's not defined at the root level. - "topo": {} + "topo": {}, + // We override inputs to avoid a costly globwalk + "lint:prettier": { + "inputs": [] + } } }