Skip to content

Commit

Permalink
build: remove outdated --non-interactive yarn option from doc site …
Browse files Browse the repository at this point in the history
…install (angular#29592)

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.
  • Loading branch information
clydin authored Aug 16, 2024
1 parent 4f2bc4d commit 07a665a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/docs-deploy/docs-deps-install.mts
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand Down

0 comments on commit 07a665a

Please sign in to comment.