-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
meta: Fix up peer deps, and keywords in package.json files #32
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,12 @@ | |
"description": "Official Codecov Rollup plugin", | ||
"author": "Codecov", | ||
"license": "MIT", | ||
"keywords": [ | ||
"Codecov", | ||
"Rollup", | ||
"bundler", | ||
"plugin" | ||
], | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
|
@@ -50,6 +56,9 @@ | |
"typescript": "^5.3.2", | ||
"unbuild": "^2.0.0" | ||
}, | ||
"peerDependencies": { | ||
"rollup": "^3.0 || ^4.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The use of semantic versioning (^3.0 || ^4.0) for the 'rollup' peer dependency is good. |
||
}, | ||
"volta": { | ||
"extends": "../../package.json" | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,12 @@ | |
"description": "Official Codecov Vite plugin", | ||
"author": "Codecov", | ||
"license": "MIT", | ||
"keywords": [ | ||
"Codecov", | ||
"Vite", | ||
"bundler", | ||
"plugin" | ||
], | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
|
@@ -50,6 +56,9 @@ | |
"unbuild": "^2.0.0", | ||
"vite": "5.0.3" | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that the dependency 'vite' has backward compatibility with versions 4.0 and 5.0 as specified. |
||
"peerDependencies": { | ||
"vite": "^4.0 || ^5.0" | ||
}, | ||
"volta": { | ||
"extends": "../../package.json" | ||
}, | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,12 @@ | |
"description": "Official Codecov Webpack plugin", | ||
"author": "Codecov", | ||
"license": "MIT", | ||
"keywords": [ | ||
"Codecov", | ||
"Webpack", | ||
"bundler", | ||
"plugin" | ||
], | ||
"type": "module", | ||
"exports": { | ||
".": { | ||
|
@@ -51,6 +57,9 @@ | |
"typescript": "^5.3.2", | ||
"unbuild": "^2.0.0" | ||
}, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ensure that the peer dependency 'webpack' has backward compatibility with its version 5.0. |
||
"peerDependencies": { | ||
"webpack": "^5.0" | ||
}, | ||
"volta": { | ||
"extends": "../../package.json" | ||
}, | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good use of keywords for improving package discoverability.