Codegen CLI
调用 Gradle 或手动调用脚本可能很难记住,而且需要很多仪式。
¥Calling Gradle or manually calling a script might be hard to remember and it requires a lot of ceremony.
为了简化,我们创建了一个 CLI 工具来帮助你运行这些任务:Codegen cli。此命令为你的项目运行 react-native-codegen。以下选项可用:
¥To simplify it, we created a CLI tool that can help you running those tasks: the Codegen cli. This command runs react-native-codegen for your project. The following options are available:
npx @react-native-community/cli codegen --help
Usage: rnc-cli codegen [options]
Options:
--verbose Increase logging verbosity
--path <path> Path to the React Native project root. (default: "/Users/MyUsername/projects/my-app")
--platform <string> Target platform. Supported values: "android", "ios", "all". (default: "all")
--outputPath <path> Path where generated artifacts will be output to.
-h, --help display help for command
示例
¥Examples
-
从当前工作目录读取
package.json
,根据其 codegenConfig 生成代码。¥Read
package.json
from the current working directory, generate code based on its codegenConfig.
npx @react-native-codegen/cli codegen
-
从当前工作目录读取
package.json
,在 codegenConfig 中定义的位置生成 iOS 代码。¥Read
package.json
from the current working directory, generate iOS code in the location defined in the codegenConfig.
npx @react-native-codegen/cli codegen --platform ios
-
从
third-party/some-library
读取package.json
,在third-party/some-library/android/generated
中生成 Android 代码。¥Read
package.json
fromthird-party/some-library
, generate Android code inthird-party/some-library/android/generated
.
npx @react-native-codegen/cli codegen \
--path third-party/some-library \
--platform android \
--outputPath third-party/some-library/android/generated
将生成的代码包含到库中
¥Including Generated Code into Libraries
Codegen CLI 是库开发者的绝佳工具。它可用于查看生成的代码以查看你需要实现哪些接口。或者如果你想将其发送到你的库中,你可以生成代码。
¥The Codegen CLI is a great tool for library developers. It can be used to peek at the generated code to see which interfaces you need to implement. Or you can generate the code if you want to ship it in your library.
此设置有几个好处:
¥This setup has several benefits:
-
无需依赖应用为你运行 Codegen,生成的代码始终存在。
¥No need to rely on the app to run Codegen for you, the generated code is always there.
-
实现文件始终与生成的接口一致。
¥The implementation files are always consistent with the generated interfaces.
-
无需包含两组文件来支持 Android 上的两种架构。你只能保留新架构,并且保证向后兼容。
¥No need to include two sets of files to support both architectures on Android. You can only keep the New Architecture one, and it is guaranteed to be backwards compatible.
-
无需担心应用使用的 Codegen 版本与库开发期间使用的版本不匹配。
¥No need to worry about Codegen version mismatch between what is used by the app, and what was used during library development.
-
由于所有原生代码都在那里,因此可以将库的原生部分作为预构建发送。
¥Since all native code is there, it is possible to ship the native part of the library as a prebuild.
要启用此设置:
¥To enable this setup:
-
将
includesGeneratedCode
属性添加到package.json
文件中库的codegenConfig
字段中。将其值设置为true
。¥Add the
includesGeneratedCode
property into your library'scodegenConfig
field in thepackage.json
file. Set its value totrue
. -
使用 codegen CLI 在本地运行 Codegen。
¥Run Codegen locally with the codegen CLI.
-
更新你的
package.json
以包含生成的代码。¥Update your
package.json
to include the generated code. -
更新你的
podspec
以包含生成的代码。¥Update your
podspec
to include the generated code. -
更新你的
build.Gradle
文件以包含生成的代码。¥Update your
build.Gradle
file to include the generated code. -
在
react-native.config.js
中更新cmakeListsPath
,以便 Gradle 不会在构建目录中查找 CMakeLists 文件,而是在 outputDir 中查找。¥Update
cmakeListsPath
inreact-native.config.js
so that Gradle doesn't look for CMakeLists file in the build directory but instead in your outputDir.