Conversation
There was a problem hiding this comment.
Pull request overview
This PR updates the package version from 11.6.0 to 11.6.1 and pins the @checkdigit/eslint-plugin peer dependency to a pre-release version for testing purposes.
Key changes:
- Version bump to 11.6.1
@checkdigit/eslint-pluginpeer dependency changed from^7.17.0to7.17.1-PR.140-5816(pre-release version with exact pinning)- Automatic dependency updates in package-lock.json
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| package.json | Bumped version to 11.6.1 and pinned @checkdigit/eslint-plugin to pre-release version 7.17.1-PR.140-5816 |
| package-lock.json | Updated version references and synchronized peer dependency changes with automatic transitive dependency updates |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
package.json
Outdated
| }, | ||
| "peerDependencies": { | ||
| "@checkdigit/eslint-plugin": "^7.17.0", | ||
| "@checkdigit/eslint-plugin": "7.17.1-PR.140-5816", |
There was a problem hiding this comment.
The semver range operator (^) has been removed from the @checkdigit/eslint-plugin peer dependency. This pins consumers to an exact pre-release version, preventing them from using compatible patch or minor updates. For peer dependencies, semver ranges are typically preferred to allow flexibility in version resolution. Consider restoring the range operator (e.g., '^7.17.1-PR.140-5816' or preferably a stable version with '^7.17.0').
| "@checkdigit/eslint-plugin": "7.17.1-PR.140-5816", | |
| "@checkdigit/eslint-plugin": "^7.17.1-PR.140-5816", |
|
Beta Published - Install Command: |
No description provided.