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
30 changes: 15 additions & 15 deletions test-projects/rn-purchasely-test/package-lock.json

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

3 changes: 3 additions & 0 deletions test-projects/rn-purchasely-test/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,8 @@
},
"engines": {
"node": ">=18"
},
"overrides": {
"lodash": ">=4.17.23"

Choose a reason for hiding this comment

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

medium

Using >= for the lodash version in overrides could be risky. If a new major version of lodash (e.g., 5.0.0) is released, npm might install it, which could introduce breaking changes. It's safer to use a caret ^ to restrict updates to minor and patch versions within the current major version. This ensures you get security patches without accidentally pulling in breaking changes.

Suggested change
"lodash": ">=4.17.23"
"lodash": "^4.17.23"

}
}
Loading