Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
157 changes: 151 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"expo-constants": "~17.0.7",
"expo-font": "~13.0.4",
"expo-haptics": "~14.0.1",
"expo-linking": "~7.0.5",
"expo-linking": "~7.1.7",

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

critical

There is an inconsistency between package.json and package-lock.json for the expo-linking dependency. package.json specifies ~7.1.7, while package-lock.json specifies ^7.1.7. This can lead to issues with dependency resolution and unpredictable builds.

To ensure consistency and follow best practices for allowing non-breaking updates, it's recommended to use the caret (^) operator in package.json to match the package-lock.json.

Suggested change
"expo-linking": "~7.1.7",
"expo-linking": "^7.1.7",

"expo-router": "~4.0.17",
"expo-splash-screen": "~0.29.22",
"expo-status-bar": "~2.0.1",
Expand Down