From ca99266aeaff370585d8f034277bc026b1758763 Mon Sep 17 00:00:00 2001 From: Valentin Maerten Date: Tue, 23 Dec 2025 20:35:57 +0100 Subject: [PATCH] feat(schema): add cache-dir property to taskrc schema (#2603) --- website/src/public/schema-taskrc.json | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/website/src/public/schema-taskrc.json b/website/src/public/schema-taskrc.json index 92fed01c..3ca006e2 100644 --- a/website/src/public/schema-taskrc.json +++ b/website/src/public/schema-taskrc.json @@ -43,6 +43,10 @@ "description": "Expiry duration for cached remote Taskfiles (e.g., '1h', '24h')", "pattern": "^[0-9]+(ns|us|µs|ms|s|m|h)$" }, + "cache-dir": { + "type": "string", + "description": "Directory to cache remote Taskfiles" + }, "trusted-hosts": { "type": "array", "description": "List of trusted hosts for remote Taskfiles (e.g., 'github.com', 'gitlab.com', 'example.com:8080').",