-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file to Renamed react-native-gradle-plugin to @react-native/gradle-pl… #34835
Conversation
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for sendign this @rahul3002
I noticed you used the wrong string react-native/gradle-plugin.
It should be instead @react-native/gradle-plugin
Please update all the occurencies
.circleci/verdaccio.yml
Outdated
'react-native/gradle-plugin.': | ||
access: $all | ||
publish: $all |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can remove this block entirely
.gitignore
Outdated
@@ -24,7 +24,7 @@ project.xcworkspace | |||
|
|||
# Gradle | |||
/build/ | |||
/packages/react-native-gradle-plugin/build/ | |||
/packages/react-native/gradle-plugin./build/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/packages/react-native/gradle-plugin./build/ | |
/packages/react-native/gradle-plugin/build/ |
CHANGELOG.md
Outdated
@@ -10,7 +10,7 @@ | |||
### Changed | |||
|
|||
- Accept TypeScript type `T | null | undefined` as a maybe type of T in turbo module. ([9ecd203eec](https://github.com/facebook/react-native/commit/9ecd203eec97e7d21d10311d950c9f8f30c7a4b1) by [@ZihanChen-MSFT](https://github.com/ZihanChen-MSFT)) | |||
- Bump react-native-gradle-plugin to 0.70.3 ([e33633644c](https://github.com/facebook/react-native/commit/e33633644c70ea39af6e450fcf31d9458051fd5f) by [@dmytrorykun](https://github.com/dmytrorykun)) | |||
- Bump react-native/gradle-plugin. to 0.70.3 ([e33633644c](https://github.com/facebook/react-native/commit/e33633644c70ea39af6e450fcf31d9458051fd5f) by [@dmytrorykun](https://github.com/dmytrorykun)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's not edit the CHANGELOG
build.gradle.kts
Outdated
@@ -34,7 +34,7 @@ allprojects { | |||
|
|||
tasks.register("cleanAll", Delete::class.java) { | |||
description = "Remove all the build files and intermediate build outputs" | |||
dependsOn(gradle.includedBuild("react-native-gradle-plugin").task(":clean")) | |||
dependsOn(gradle.includedBuild("react-native/gradle-plugin.").task(":clean")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should not edit this line as the path is not changing
build.gradle.kts
Outdated
@@ -53,7 +53,7 @@ tasks.register("cleanAll", Delete::class.java) { | |||
|
|||
tasks.register("buildAll") { | |||
description = "Build and test all the React Native relevant projects." | |||
dependsOn(gradle.includedBuild("react-native-gradle-plugin").task(":build")) | |||
dependsOn(gradle.includedBuild("react-native/gradle-plugin.").task(":build")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should not edit this line as the path is not changing
build.gradle.kts
Outdated
@@ -67,7 +67,7 @@ tasks.register("buildAll") { | |||
|
|||
tasks.register("downloadAll") { | |||
description = "Download all the depedencies needed locally so they can be cached on CI." | |||
dependsOn(gradle.includedBuild("react-native-gradle-plugin").task(":dependencies")) | |||
dependsOn(gradle.includedBuild("react-native/gradle-plugin.").task(":dependencies")) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You should not edit this line as the path is not changing
package.json
Outdated
@@ -128,7 +128,7 @@ | |||
"pretty-format": "^26.5.2", | |||
"promise": "^8.2.0", | |||
"react-devtools-core": "^4.26.0", | |||
"react-native-gradle-plugin": "^0.71.4", | |||
"react-native/gradle-plugin.": "^0.71.4", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"react-native/gradle-plugin.": "^0.71.4", | |
"react-native/gradle-plugin": "^0.71.4", |
@@ -1,4 +1,4 @@ | |||
# react-native-gradle-plugin | |||
# react-native/gradle-plugin. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# react-native/gradle-plugin. | |
# @react-native/gradle-plugin |
@@ -7,10 +7,10 @@ A Gradle Plugin used to support development of React Native applications for And | |||
## Installation | |||
|
|||
``` | |||
yarn add react-native-gradle-plugin | |||
yarn add react-native/gradle-plugin. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yarn add react-native/gradle-plugin. | |
yarn add @react-native/gradle-plugin |
@@ -1,12 +1,12 @@ | |||
{ | |||
"name": "react-native-gradle-plugin", | |||
"name": "react-native/gradle-plugin.", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
"name": "react-native/gradle-plugin.", | |
"name": "@react-native/gradle-plugin", |
This needs to be fixed all over your PR
Hey @rahul3002, Thanks for working on this. I am now planning to continue your work and need to introduce some changes, before we can merge this. Can you share if you had any plans onto working on this later or can I just take it? |
Oops, looks like it automatically closed after my push and right now I am unable to push to I am also unable to reopen PR now :( |
Base commit: 6a45f2c |
Base commit: 6a45f2c |
PR build artifact for 4c5eb8d is ready. |
PR build artifact for 4c5eb8d is ready. |
…ugin
Summary
Changelog
[CATEGORY] [TYPE] - Message
Test Plan