From cffacbf903fdce93764694228d7053903b79b180 Mon Sep 17 00:00:00 2001 From: Philippe Perrin Date: Mon, 4 Oct 2021 12:03:06 +0200 Subject: [PATCH] Remove unused configuration code --- build.gradle | 7 ------- 1 file changed, 7 deletions(-) diff --git a/build.gradle b/build.gradle index c03c57edbc6..e720c228f4f 100644 --- a/build.gradle +++ b/build.gradle @@ -629,13 +629,6 @@ subprojects { } } -// by default, Yarn will update lock file if it is not up to date with "package.json" -// using option "--immutable" will disable this behavior and "yarn install" will fail if lock file is out of date -// all "yarn install" tasks should be executed with this option for reproducibility of builds -// and to prevent developers from forgetting to update lock file when they update "package.json" -def yarnInstallTasks = allprojects.findResults { it -> it.tasks.findByName('yarn') } -yarnInstallTasks.each { it -> it.args = ['--immutable'] } - // https://github.com/ben-manes/gradle-versions-plugin apply plugin: 'com.github.ben-manes.versions' dependencyUpdates { -- 2.39.5