This PR removes two unused dependencies, semver and queue, from the package.json file(s). These dependencies were previously included in the project but are no longer being utilized in the codebase.
Changes
Removed semver from the dependencies section of package.json.
Removed queue from the dependencies section of package.json.
Updated the yarn.lock file accordingly to reflect the changes.
Why?
These dependencies are no longer needed, and removing them reduces unnecessary bloat in the project.
This also helps reduce potential security vulnerabilities by minimizing the number of external libraries used.
Testing
Runyarn install to verify no issues arise from removing the dependencies.
Ensure that all relevant tests pass after the changes.
Summary
This PR removes two unused dependencies,
semver
andqueue
, from thepackage.json
file(s). These dependencies were previously included in the project but are no longer being utilized in the codebase.Changes
semver
from the dependencies section ofpackage.json
.queue
from the dependencies section ofpackage.json
.yarn.lock
file accordingly to reflect the changes.Why?
Testing
yarn install
to verify no issues arise from removing the dependencies.