mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
cf914e412d
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/44799 This is the final part of core autolinking: 1. I split RNGP into an `app-plugin` and a `settings-plugin`. This was necessary as the Gradle modules need to be loaded inside the settings.gradle.kts. 2. I've introduced a Settings Plugin to take care of either invoking the `config` command from CLI or receiving a file in input. 3. I've removed the former `RunAutolinkingConfigTask` as now the command is invoked inside the settings plugin 4. I've added hashing computed based on the lockfiles so we won't be re-executing teh `config` command if the lockfiles are not changed. 5. I've updated RN-Tester to use the core autolinking rather than manual linking for the 2 libraries it's using. Changelog:linking [Internal] [Changed] - RNGP - Autolinking. Add support for linking projects Reviewed By: blakef Differential Revision: D58190363 fbshipit-source-id: 6ab8b36729e77ca715f50a4a00aa0ca4eb5b63b1
38 lines
900 B
JSON
38 lines
900 B
JSON
{
|
|
"name": "@react-native/gradle-plugin",
|
|
"version": "0.75.0-main",
|
|
"description": "Gradle Plugin for React Native",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/facebook/react-native.git",
|
|
"directory": "packages/react-native-gradle-plugin"
|
|
},
|
|
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/react-native-gradle-plugin#readme",
|
|
"keywords": [
|
|
"gradle",
|
|
"plugin",
|
|
"react-native"
|
|
],
|
|
"bugs": "https://github.com/facebook/react-native/issues",
|
|
"engines": {
|
|
"node": ">=18"
|
|
},
|
|
"scripts": {
|
|
"build": "./gradlew build",
|
|
"clean": "./gradlew clean",
|
|
"test": "./gradlew check"
|
|
},
|
|
"files": [
|
|
"settings.gradle.kts",
|
|
"build.gradle.kts",
|
|
"gradle",
|
|
"gradlew",
|
|
"gradlew.bat",
|
|
"README.md",
|
|
"react-native-gradle-plugin",
|
|
"settings-plugin",
|
|
"shared"
|
|
]
|
|
}
|