Skip to content
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ const PACKAGES_TO_REMOVE = [
'prettier',
'react-test-renderer',
'typescript',
'react-native-safe-area-context',
Copy link

Choose a reason for hiding this comment

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

Bug: Safe Area Context Removal Issue

Adding react-native-safe-area-context to PACKAGES_TO_REMOVE might not fully remove it from the example app. PACKAGES_TO_REMOVE only targets devDependencies, but react-native-safe-area-context is typically a regular dependency. This means the package could persist, potentially preventing the intended fix for a build crash.

Fix in Cursor Fix in Web

];

const PACKAGES_TO_ADD_WEB = {
Expand Down
Loading