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
203 changes: 109 additions & 94 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 @@ -12,7 +12,7 @@
"format": "prettier '**/*' --write --ignore-unknown"
},
"dependencies": {
"next": "latest",
"next": "12.3.7",

Choose a reason for hiding this comment

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

medium

While pinning to a specific version 12.3.7 is a great improvement over using latest for ensuring build reproducibility, consider using a caret ^ prefix (e.g., ^12.3.7). This allows npm to automatically fetch non-breaking minor and patch updates, which often include important security fixes and bug fixes, without requiring manual version bumps. This is a common best practice for dependency management.

Suggested change
"next": "12.3.7",
"next": "^12.3.7",

"react": "17.0.2",
"react-dom": "17.0.2"
},
Expand Down
Loading