Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix @anthropic-ai/sdk Version Mismatch in package-lock.json (0.16.1 →…
… 0.18.0) (mckaywrigley#1602) This Pull Request addresses a deployment issue caused by a version mismatch for the `@anthropic-ai/sdk` package between `package.json` and `package-lock.json`. In a previous commit, the version of `@anthropic-ai/sdk` was updated to `0.18.0` in `package.json`, but the corresponding update was not reflected in `package-lock.json`. This discrepancy led to a synchronization issue during the deployment process, as `npm ci` requires both files to be in sync to ensure a consistent installation environment. #### Changes Made: - Updated `package-lock.json` to match the version of `@anthropic-ai/sdk` specified in `package.json` (0.18.0). #### Impact: - Resolves the deployment issue related to the version mismatch. - Ensures consistent dependency resolution for `@anthropic-ai/sdk` across development and deployment environments. #### Testing: - Local testing was conducted to verify that the application functions correctly with the updated `@anthropic-ai/sdk` version. - Further testing in the deployment environment is recommended to confirm the resolution of the issue. This PR aims to ensure that our dependency versions are aligned, thus mitigating potential issues related to inconsistent dependency resolution. Your review and feedback on these changes are greatly appreciated.
- Loading branch information