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
54 changes: 38 additions & 16 deletions package-lock.json

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

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"cross-fetch": "^4.1.0",
"dotenv": "^16.4.7",
"express": "^4.21.1",
"form-data": "^4.0.0",
"form-data": "4.0.4",
Copy link

Copilot AI Dec 11, 2025

Choose a reason for hiding this comment

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

The form-data dependency has been pinned to an exact version (4.0.4) by removing the caret (^) operator. While this ensures consistent builds, it may prevent receiving patch updates that could include bug fixes or security patches. Consider whether this strict pinning is necessary, or if using "^4.0.4" would be more appropriate to allow automatic patch-level updates while maintaining compatibility.

Suggested change
"form-data": "4.0.4",
"form-data": "^4.0.4",

Copilot uses AI. Check for mistakes.
"graphql": "^16.9.0",
"ini": "^3.0.1",
"lodash": "^4.17.21",
Expand Down Expand Up @@ -106,6 +106,10 @@
"test:jest:coverage": "jest --coverage",
"prepare": "husky"
},
"overrides": {
"axios": "~1.10.0",
"form-data": "4.0.4"
Comment on lines +110 to +111
Copy link

Copilot AI Dec 11, 2025

Choose a reason for hiding this comment

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

Axios is not listed as a direct dependency of this package, but is being overridden here. The override affects only transitive dependencies from @contentstack packages. If axios 1.10.0 doesn't exist (see previous comment), this override will cause installation failures. Additionally, overriding transitive dependencies can lead to maintenance challenges and should only be done when addressing specific security vulnerabilities or critical bugs. Consider documenting why this override is necessary, or removing it if it's not essential.

Suggested change
"axios": "~1.10.0",
"form-data": "4.0.4"
"axios": "~1.10.0"

Copilot uses AI. Check for mistakes.
},
"engines": {
"node": ">=14.0.0"
},
Expand Down