From e604e835112027473bb547f757b21f0415977098 Mon Sep 17 00:00:00 2001 From: Valentin de la Cruz Barquero <6054336+vdelacruzb@users.noreply.github.com> Date: Wed, 11 Dec 2024 16:25:16 +0100 Subject: [PATCH] chore(bq): add skip dependency tag in bigquery build_modules (#538) --- clouds/bigquery/common/build_modules.js | 1 + 1 file changed, 1 insertion(+) diff --git a/clouds/bigquery/common/build_modules.js b/clouds/bigquery/common/build_modules.js index e691541c1..e98af1770 100755 --- a/clouds/bigquery/common/build_modules.js +++ b/clouds/bigquery/common/build_modules.js @@ -163,6 +163,7 @@ function apply_replacements (text) { text = text.replace(pattern, process.env[replacement]); } } + text = text.replace(/@@SKIP_DEP@@/g, ''); return text; }