From 5a954f6c424ee2d402e1a64ba2afa4f9268fc530 Mon Sep 17 00:00:00 2001 From: zml Date: Tue, 22 Dec 2020 12:27:34 -0800 Subject: [PATCH] Add a settings.gradle to ensure consistency (#1929) If no settings file is found, Gradle will assume the project could be a subproject and will scan any containing directories for a settings.gradle. This can cause issues if such a file exists, which can happen when using a composite build to set up a local development workspace. --- settings.gradle | 1 + 1 file changed, 1 insertion(+) create mode 100644 settings.gradle diff --git a/settings.gradle b/settings.gradle new file mode 100644 index 0000000000..e3d5f933e4 --- /dev/null +++ b/settings.gradle @@ -0,0 +1 @@ +rootProject.name = "yarn"