mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
ca0d87db6e
Summary: This pull request makes the following changes to the script `scripts/generate-rncore.js`: * Adds a missing argument to the call of `generate-tests.js` * Ran `chmod +x generate-rncore.sh` so the script is executable ## Changelog [Internal] [Fixed] - Updated `generate-rncore.sh` for recent versions of codegen Pull Request resolved: https://github.com/facebook/react-native/pull/26477 Test Plan: `(cd scripts && ./generate-rncore.sh)` works perfectly now. Differential Revision: D17439772 Pulled By: TheSavior fbshipit-source-id: 141efc54aa45aa38dc537f65e425959666f33b3a
15 lines
717 B
Bash
Executable File
15 lines
717 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Facebook, Inc. and its affiliates.
|
|
#
|
|
# This source code is licensed under the MIT license found in the
|
|
# LICENSE file in the root directory of this source tree.
|
|
#
|
|
# This script collects the "core" component schemas used by fabric
|
|
# then uses react-native-codegen to generate the component headers
|
|
# to a location that the podspecs expect.
|
|
|
|
# shellcheck disable=SC2038
|
|
|
|
find "$PWD/../Libraries" -name "*NativeComponent.js" -print | xargs yarn flow-node packages/react-native-codegen/src/cli/combine/combine-js-to-schema-cli.js schema-rncore.json
|
|
yarn flow-node packages/react-native-codegen/buck_tests/generate-tests.js schema-rncore.json rncore ReactCommon/fabric/components/rncore rncore
|