mirror of
https://github.com/facebook/react-native.git
synced 2024-11-22 06:29:46 +00:00
fedbe2d486
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/45572 0.75-rc.5 is currently broken on Windows. This is due to us invoking `npx react-native-community/cli config` without a `cmd /c` prefix. This fixes it by using our function `windowsAwareCommandLine`. The problem is that this required a lot of refactoring since that util was not available for the settings plugin. Fixes #45403 Changelog: [Internal] [Changed] - Fix core autolinking not working on Windows Reviewed By: cipolleschi Differential Revision: D60037587 fbshipit-source-id: eefeda7aafc43b9ce08f0f9225b0847fad2f46b7
26 lines
526 B
Plaintext
26 lines
526 B
Plaintext
/*
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
plugins { id("org.gradle.toolchains.foojay-resolver-convention").version("0.5.0") }
|
|
|
|
include(
|
|
":react-native-gradle-plugin",
|
|
":settings-plugin",
|
|
":shared",
|
|
":shared-testutil",
|
|
)
|
|
|
|
rootProject.name = "gradle-plugin-root"
|