Skip to content

Commit

Permalink
fix config generation without community cli (facebook#45224)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebook#45224

The rn-tester android build assumes the react-native-community/cli is available.  This is no longer the case.

Changelog: [Internal]

Reviewed By: arushikesarwani94

Differential Revision: D59170923
  • Loading branch information
blakef authored and facebook-github-bot committed Jun 28, 2024
1 parent ed5f558 commit 9ccb8f3
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/rn-tester/android/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ react {
codegenDir = file("$rootDir/node_modules/@react-native/codegen")
// The cli.js file which is the React Native CLI entrypoint. Default is
// ../node_modules/react-native/cli.js
cliFile = file("$reactNativeDirPath/cli.js")
cliFile = file("../../../react-native/scripts/bundle.js")

/* Variants */
// The list of variants to that are debuggable. For those we're going to
Expand Down
11 changes: 11 additions & 0 deletions packages/rn-tester/config.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/bash
# 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.

set -e

script_dir=$(dirname "$(readlink -f "$0")")

node -p "JSON.stringify(require(\"$script_dir/react-native.config.js\"), null, 2)"
4 changes: 3 additions & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ plugins {

configure<com.facebook.react.ReactSettingsExtension> {
autolinkLibrariesFromCommand(
workingDirectory = file("packages/rn-tester/"), lockFiles = files("yarn.lock"))
command = listOf("/bin/sh", "./config.sh"),
workingDirectory = file("packages/rn-tester/"),
lockFiles = files("yarn.lock"))
}

0 comments on commit 9ccb8f3

Please sign in to comment.