From 13c9d78389de04a729139dc332718f3e75c4bd7d Mon Sep 17 00:00:00 2001 From: Jacek Date: Wed, 20 Nov 2024 09:58:25 -0600 Subject: [PATCH] fix(astro): Add components to turborepo cache --- packages/astro/turbo.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 packages/astro/turbo.json diff --git a/packages/astro/turbo.json b/packages/astro/turbo.json new file mode 100644 index 0000000000..8fc08521e9 --- /dev/null +++ b/packages/astro/turbo.json @@ -0,0 +1,10 @@ +{ + "extends": ["//"], + "tasks": { + "build": { + "dependsOn": ["^build"], + "outputLogs": "new-only", + "outputs": ["components/**", "dist/**"] + } + } +}