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
2 changes: 1 addition & 1 deletion course-04/exercises/lesson-3/solution/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"source-map-support": "^0.5.11",
"source-map-support": "^0.5.21",

Choose a reason for hiding this comment

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

critical

This dependency upgrade is missing the corresponding update to package-lock.json. This can lead to inconsistent dependency versions across environments and cause issues with builds that use npm ci.

Please run npm install and commit the updated package-lock.json.

Additionally, source-map-support is typically a development dependency. Consider moving it to devDependencies by running:

npm uninstall source-map-support
npm install --save-dev source-map-support@^0.5.21

This will update both package.json and package-lock.json correctly.

"uuid": "^3.3.2"
},
"devDependencies": {
Expand Down