49 lines
1.3 KiB
Ruby
49 lines
1.3 KiB
Ruby
# 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.
|
|
|
|
require_relative './helpers.rb'
|
|
|
|
# keeping the run_codegen! method for testing purposes
|
|
def run_codegen!(
|
|
app_path,
|
|
config_file_dir,
|
|
new_arch_enabled: false,
|
|
disable_codegen: false,
|
|
react_native_path: "../node_modules/react-native",
|
|
fabric_enabled: false,
|
|
hermes_enabled: true,
|
|
codegen_output_dir: 'build/generated/ios',
|
|
config_key: 'codegenConfig',
|
|
package_json_file: '~/app/package.json',
|
|
folly_version: Helpers::Constants.folly_config()[:version],
|
|
codegen_utils: CodegenUtils.new()
|
|
)
|
|
|
|
if ENV["RCT_SKIP_CODEGEN"] == "1"
|
|
return
|
|
end
|
|
|
|
codegen_utils.use_react_native_codegen_discovery!(
|
|
disable_codegen,
|
|
app_path,
|
|
:react_native_path => react_native_path,
|
|
:fabric_enabled => fabric_enabled,
|
|
:hermes_enabled => hermes_enabled,
|
|
:config_file_dir => config_file_dir,
|
|
:codegen_output_dir => codegen_output_dir,
|
|
:config_key => config_key,
|
|
:folly_version => folly_version
|
|
)
|
|
end
|
|
|
|
def basePath(react_native_path, relative_installation_root)
|
|
expanded_path = File.expand_path(react_native_path)
|
|
if expanded_path == react_native_path
|
|
react_native_path
|
|
else
|
|
File.join(relative_installation_root.to_s, react_native_path)
|
|
end
|
|
end
|