mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
c2d827f160
Summary: Splits the codegen script into functions, and makes use of $YARN_BINARY for portability (defaults to `yarn` if not provided). Changelog: [Internal] Reviewed By: RSNara Differential Revision: D22148360 fbshipit-source-id: 9e86b3e0f7f77bf3a635bf6be204170333dd5e65
57 lines
1.9 KiB
Bash
Executable File
57 lines
1.9 KiB
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 JavaScript spec definitions for native
|
|
# modules, then uses react-native-codegen to generate native code.
|
|
# The script will copy the generated code to the final location by
|
|
# default. Optionally, call the script with a path to the desired
|
|
# output location.
|
|
#
|
|
# Usage:
|
|
# ./scripts/generate-native-modules-specs.sh [output-dir]
|
|
#
|
|
# Example:
|
|
# ./scripts/generate-native-modules-specs.sh ./codegen-out
|
|
|
|
# shellcheck disable=SC2038
|
|
|
|
set -e
|
|
|
|
THIS_DIR=$(cd -P "$(dirname "$(readlink "${BASH_SOURCE[0]}" || echo "${BASH_SOURCE[0]}")")" && pwd)
|
|
RN_DIR=$(cd "$THIS_DIR/.." && pwd)
|
|
CODEGEN_DIR=$(cd "$RN_DIR/packages/react-native-codegen" && pwd)
|
|
OUTPUT_DIR="${1:-$RN_DIR/Libraries/FBReactNativeSpec/FBReactNativeSpec}"
|
|
SCHEMA_FILE="$RN_DIR/schema-native-modules.json"
|
|
YARN_BINARY="${YARN_BINARY:-yarn}"
|
|
|
|
describe () {
|
|
printf "\\n\\n>>>>> %s\\n\\n\\n" "$1"
|
|
}
|
|
|
|
step_build_codegen () {
|
|
describe "Building react-native-codegen package"
|
|
pushd "$CODEGEN_DIR" >/dev/null || exit
|
|
"$YARN_BINARY"
|
|
"$YARN_BINARY" build
|
|
popd >/dev/null || exit
|
|
}
|
|
|
|
step_gen_schema () {
|
|
describe "Generating schema from flow types"
|
|
SRCS_DIR=$(cd "$RN_DIR/Libraries" && pwd)
|
|
grep --exclude NativeSampleTurboModule.js --exclude NativeUIManager.js --include=Native\*.js -rnwl "$SRCS_DIR" -e 'export interface Spec extends TurboModule' -e "export default \(TurboModuleRegistry.get(Enforcing)?<Spec>\('.*\): Spec\);/" \
|
|
| xargs "$YARN_BINARY" node "$CODEGEN_DIR/lib/cli/combine/combine-js-to-schema-cli.js" "$SCHEMA_FILE"
|
|
}
|
|
|
|
step_gen_specs () {
|
|
describe "Generating native code from schema"
|
|
"$YARN_BINARY" --silent node scripts/generate-native-modules-specs-cli.js "$SCHEMA_FILE" "$OUTPUT_DIR"
|
|
}
|
|
|
|
step_build_codegen
|
|
step_gen_schema
|
|
step_gen_specs
|