@react-native/gradle-plugin 0.75.0-rc.2 → 0.76.0-nightly-20240627-TEMP
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/gradlew.bat +5 -0
- package/package.json +3 -3
- package/settings.gradle.kts +1 -1
package/README.md
CHANGED
|
@@ -20,4 +20,4 @@ yarn add @react-native/gradle-plugin
|
|
|
20
20
|
To run the tests in this package, run the following commands from the React Native root folder:
|
|
21
21
|
|
|
22
22
|
1. `yarn` to install the dependencies. You just need to run this once
|
|
23
|
-
2.
|
|
23
|
+
2. `./gradlew -p packages/gradle-plugin test`.
|
package/gradlew.bat
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
1
|
+
@REM Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
2
|
+
@REM
|
|
3
|
+
@REM This source code is licensed under the MIT license found in the
|
|
4
|
+
@REM LICENSE file in the root directory of this source tree.
|
|
5
|
+
|
|
1
6
|
@rem
|
|
2
7
|
@rem Copyright 2015 the original author or authors.
|
|
3
8
|
@rem
|
package/package.json
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native/gradle-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.76.0-nightly-20240627-TEMP",
|
|
4
4
|
"description": "Gradle Plugin for React Native",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
8
8
|
"url": "git+https://github.com/facebook/react-native.git",
|
|
9
|
-
"directory": "packages/
|
|
9
|
+
"directory": "packages/gradle-plugin"
|
|
10
10
|
},
|
|
11
|
-
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/
|
|
11
|
+
"homepage": "https://github.com/facebook/react-native/tree/HEAD/packages/gradle-plugin#readme",
|
|
12
12
|
"keywords": [
|
|
13
13
|
"gradle",
|
|
14
14
|
"plugin",
|
package/settings.gradle.kts
CHANGED