From 076afb7e15404cca271d3b5239c0f05039657584 Mon Sep 17 00:00:00 2001 From: Alan Agius Date: Tue, 11 Jun 2024 08:58:23 +0000 Subject: [PATCH] build: remove `--silent` from `yarn` command `--silent` is not a valid option for Yarn 4. This causes the build-schema script to fail. --- scripts/build-schema.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-schema.mts b/scripts/build-schema.mts index 5c0a892275..08ea764967 100644 --- a/scripts/build-schema.mts +++ b/scripts/build-schema.mts @@ -13,7 +13,7 @@ import { fileURLToPath } from 'node:url'; const __dirname = dirname(fileURLToPath(import.meta.url)); const baseDir = resolve(`${__dirname}/..`); -const bazelCmd = process.env.BAZEL ?? `yarn --silent bazel`; +const bazelCmd = process.env.BAZEL ?? `yarn bazel`; const distRoot = join(baseDir, '/dist-schema/'); function _clean() {