From b938e7621a44ef5b4747aa6cb5db5348d16cccdd Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Thu, 15 Aug 2024 14:51:34 -0400 Subject: [PATCH] build: remove outdated `--non-interactive` yarn option from doc site install The `--non-interactive` option is not supported on newer version of yarn and should not be used moving forward to ensure support with yarn version upgrades. --- scripts/docs-deploy/docs-deps-install.mts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/docs-deploy/docs-deps-install.mts b/scripts/docs-deploy/docs-deps-install.mts index ba6984fc1545..cbfc7d9fa838 100644 --- a/scripts/docs-deploy/docs-deps-install.mts +++ b/scripts/docs-deploy/docs-deps-install.mts @@ -10,7 +10,7 @@ export async function installDepsForDocsSite( repoDirPath: string, options: InstallOptions = {frozenLockfile: true}, ) { - const additionalArgs = ['--non-interactive']; + const additionalArgs = []; if (options.frozenLockfile) { additionalArgs.push('--frozen-lockfile');