-
Notifications
You must be signed in to change notification settings - Fork 26
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
🐛 Bug Report: Issue with Expo #43
Comments
As a temp solution putting this into package.json removes the doctor issues:
|
This solution did not work |
Did you pair it with your versions of react-native and expo-file-system? Btw its maybe better to add ^ for react-native also:
|
yes,sure |
Hey, It did not fix the issue, can you please help ? |
Same problem here reported by expo doctor:
npm ls metro show that:
What is the correct way to handle that ? |
@mi5ha thanks for raising this issue. The team has noted the issue down and will release a fix soon 🙏 |
Closing as this should be fixed with latest release 0.7.2 |
@ChiragAgg5k Thank you it is fixed! But I am afraid the issue will resurface again when versions of react-native and expo-file-system are updated. Btw what is the reason for having both dependencies and peerDependencies? Why just not have only peerDependencies? |
@mi5ha there is a great article that i think you should read to learn the distinction between them - https://medium.com/@DevChris01/npm-dependencies-vs-devdependencies-vs-peerdependencies-82760bd630d TLDR - peerDependencies are required by users who use the react-native-appwrite package. if ur project does not have them, it will give a error dependencies are what the package itself requires. this is why for peerDependencies there is an asterisk "*", means u can use any version of the dependency in your project. But for the appwrite package, we keep it restrictive so a breaking change in future doesnt automatically break the appwrite package. |
@ChiragAgg5k Thanx for the article, its a good introduction into the subject! 😀 But we still have an issue with this package.json setup. First, having same dependency in 2 places is not recommended. "dependencies" has bigger priority so What to put in react-native version is tricky because major version is still 0, but I would still put ^ there, or > maybe. You say you are doing this because you want to protect from breaking changes in future. Which never happened until now right? 😀 But you are having real issue in the present, that will keep reappearing with each minor update of both react-native and expo-file-system. This last fix you made will fail in couple of weeks tops, thats what I am worried about 😊 That you will have ongoing maintenance burden with this. What do you say about just giving min versions?
|
awesome work with all the suggestions @mi5ha 💪 infact would you like to create a PR for this change? you can make the changes here - https://github.com/appwrite/sdk-generator/blob/master/templates/react-native/package.json.twig |
@ChiragAgg5k Here is the PR |
👟 Reproduction steps
When installing react-native-appwrite in current Expo project (v52.0.28), there is a conflict with several package versions (metro, metro-resolver, metro-config)
To see an issue run:
The reason this happens is because the way package.json is defined.
It sets both "dependencies" and "peerDependencies". Because "dependencies" are more restrictive this versioning issue happens.
Probably "dependencies" should be removed and just "peerDependencies" kept? That would solve versions issue I think.
👍 Expected behavior
Versions issues should not be reported.
👎 Actual Behavior
Expo doctor shows these issues:
🎲 Appwrite version
Version 0.7.x
💻 Operating system
MacOS
🧱 Your Environment
No response
👀 Have you spent some time to check if this issue has been raised before?
🏢 Have you read the Code of Conduct?
The text was updated successfully, but these errors were encountered: