From f02867132b070f2d5b19be285af232ebe5e203aa Mon Sep 17 00:00:00 2001 From: Diego Artiles Date: Sun, 10 Nov 2024 18:46:01 -0300 Subject: [PATCH] chore(Root): add dependencies for turbo tasks and create turbo.json file for supabase --- packages/supabase/turbo.json | 18 ++++++++++++++++++ turbo.json | 8 +------- 2 files changed, 19 insertions(+), 7 deletions(-) create mode 100644 packages/supabase/turbo.json diff --git a/packages/supabase/turbo.json b/packages/supabase/turbo.json new file mode 100644 index 0000000..d6ea87e --- /dev/null +++ b/packages/supabase/turbo.json @@ -0,0 +1,18 @@ +{ + "extends": [ + "//" + ], + "tasks": { + "build": { + "dependsOn": [ + "@makify/supabase#gen:types:local" + ] + }, + "gen:types:local": { + "inputs": [ + "src/supabase/**/*.sql", + "src/supabase/**/*.toml" + ] + } + } +} \ No newline at end of file diff --git a/turbo.json b/turbo.json index 687ad1e..c86c19d 100644 --- a/turbo.json +++ b/turbo.json @@ -31,12 +31,6 @@ ], "cache": false, "persistent": true - }, - "@makify/supabase#build": { - "dependsOn": [ - "@makify/supabase#gen:types:local" - ] - }, - "@makify/supabase#gen:types:local": {} + } } } \ No newline at end of file