Skip to content
Open
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
19 changes: 10 additions & 9 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 @@ -28,7 +28,7 @@
"expo-router": "~4.0.17",
"expo-splash-screen": "~0.30.10",
"expo-status-bar": "~2.0.1",
"expo-symbols": "~0.2.2",
"expo-symbols": "~0.4.5",

Choose a reason for hiding this comment

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

medium

There's an inconsistency in the version specifier for expo-symbols between package.json (~0.4.5) and package-lock.json (^0.4.5). This seems to be an accidental introduction, as other parts of this PR align the specifiers in package-lock.json to use ~ as defined in package.json.

To resolve this, you could either change the specifier here to ^0.4.5 to match the lockfile (which is a common best practice for libraries following semantic versioning), or regenerate package-lock.json to match the ~ specifier. I'm suggesting the former for better dependency flexibility.

Suggested change
"expo-symbols": "~0.4.5",
"expo-symbols": "^0.4.5",

"expo-system-ui": "~4.0.8",
"expo-web-browser": "~14.2.0",
"react": "18.3.1",
Expand Down