From 962a6a2e31e936561f2de0214b78dfded242f432 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cristian=20Pallar=C3=A9s?= Date: Thu, 18 Apr 2024 11:23:34 +0200 Subject: [PATCH] chore(console): compile app dependencies when running dev (#5845) Now, running `turbo dev` on the console app package will make sure all of its dependencies are up to date. --- apps/wing-console/console/app/turbo.json | 3 +++ 1 file changed, 3 insertions(+) diff --git a/apps/wing-console/console/app/turbo.json b/apps/wing-console/console/app/turbo.json index 55f42dab615..e26803eb250 100644 --- a/apps/wing-console/console/app/turbo.json +++ b/apps/wing-console/console/app/turbo.json @@ -2,6 +2,9 @@ "$schema": "https://turborepo.org/schema.json", "extends": ["//"], "pipeline": { + "dev": { + "dependsOn": ["^compile"] + }, "compile": { "outputs": ["dist/**"], "env": ["SEGMENT_WRITE_KEY", "VITE_WING_CLOUD_SIGN_IN_URL"]