-
Notifications
You must be signed in to change notification settings - Fork 168
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
feat: add aplayer and meting #230
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 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -1811,6 +1811,9 @@ | |||||||||||||
"apk-parser3": { | ||||||||||||||
"version": "*" | ||||||||||||||
}, | ||||||||||||||
"aplayer": { | ||||||||||||||
"version": "*" | ||||||||||||||
}, | ||||||||||||||
"apmp": { | ||||||||||||||
"version": "*" | ||||||||||||||
}, | ||||||||||||||
|
@@ -9530,6 +9533,9 @@ | |||||||||||||
"medium-zoom": { | ||||||||||||||
"version": "*" | ||||||||||||||
}, | ||||||||||||||
"meting": { | ||||||||||||||
"version": "*" | ||||||||||||||
}, | ||||||||||||||
Comment on lines
+9536
to
+9538
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. Avoid using wildcard ( Using - "meting": {
- "version": "*"
+ "meting": {
+ "version": "^1.0.0" Adjust the version range according to the project's compatibility requirements. Committable suggestion
Suggested change
|
||||||||||||||
"mem": { | ||||||||||||||
"version": "*" | ||||||||||||||
}, | ||||||||||||||
|
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.
Avoid using wildcard (
*
) for versioning.Using
*
for versioning can lead to potential compatibility and stability issues. It is recommended to specify a version range to ensure consistency and avoid breaking changes.Adjust the version range according to the project's compatibility requirements.
Committable suggestion