From 967a6715ed7afb48cc19f3799014fd3c7e9bd6f4 Mon Sep 17 00:00:00 2001 From: Siddharth Date: Mon, 30 Oct 2023 11:59:12 +0530 Subject: [PATCH 1/2] fix: added tracing in BUCK --- apps/consent/BUCK | 3 ++- apps/dashboard/BUCK | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/consent/BUCK b/apps/consent/BUCK index d43b8cbf04..644ba346be 100644 --- a/apps/consent/BUCK +++ b/apps/consent/BUCK @@ -43,11 +43,12 @@ filegroup( "public/**", "services/**", "components/**", - "env.ts", "tailwind.config.ts", "postcss.config.js", "next.config.js", "tsconfig.json", + "*.ts", # env.ts / instrumentation.ts + "instrumentation.node.ts" ]), ) diff --git a/apps/dashboard/BUCK b/apps/dashboard/BUCK index 94049bbaa2..ba511ebc0e 100644 --- a/apps/dashboard/BUCK +++ b/apps/dashboard/BUCK @@ -38,6 +38,7 @@ filegroup( "next.config.js", "tsconfig.json", "*.ts", # env.ts / middleware.ts + "instrumentation.node.ts" ]), ) From 6c1b777c94eb6edd75f95be29264b5a9c85ac393 Mon Sep 17 00:00:00 2001 From: Siddharth Date: Mon, 30 Oct 2023 12:01:39 +0530 Subject: [PATCH 2/2] chore: comment added --- apps/dashboard/BUCK | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/dashboard/BUCK b/apps/dashboard/BUCK index ba511ebc0e..61f0d9d8c9 100644 --- a/apps/dashboard/BUCK +++ b/apps/dashboard/BUCK @@ -37,7 +37,7 @@ filegroup( "postcss.config.js", "next.config.js", "tsconfig.json", - "*.ts", # env.ts / middleware.ts + "*.ts", # env.ts / middleware.ts / instrumentation.ts "instrumentation.node.ts" ]), )