-
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
功能:添加 gkd-mrlc (#301 ) #301
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 |
---|---|---|
|
@@ -6713,6 +6713,9 @@ | |
"giturl": { | ||
"version": "*" | ||
}, | ||
"gkd-mrlc": { | ||
"version": "*" | ||
}, | ||
"gkd-subscription": { | ||
"version": "*" | ||
}, | ||
|
@@ -7145,6 +7148,9 @@ | |
"gunzip-maybe": { | ||
"version": "*" | ||
}, | ||
"gkd-mrlc": { | ||
Check failure on line 7151 in package.json GitHub Actions / Node.js / Test (ubuntu-latest, 20)
Check failure on line 7151 in package.json GitHub Actions / Node.js / Test (ubuntu-latest, 20)
Check failure on line 7151 in package.json GitHub Actions / Node.js / Test (ubuntu-latest, 20)
|
||
"version": "*" | ||
}, | ||
Comment on lines
+7151
to
+7153
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. Package ordering needs adjustment The newly added package "gkd-mrlc" is not in the correct alphabetical order. To maintain consistency and improve readability in this large package list, it should be moved to its proper alphabetical position. Please move the "gkd-mrlc" entry to its correct alphabetical position, which should be before "glob". Here's the suggested change: "glob": {
"version": "*"
},
+ "gkd-mrlc": {
+ "version": "*"
+ },
"glob-to-regexp": {
"version": "*"
},
- "gkd-mrlc": {
- "version": "*"
- },
"global": {
"version": "*"
}, This adjustment will ensure that the package list remains properly ordered, making it easier to maintain and search through in the future.
🧰 Tools🪛 GitHub Check: Node.js / Test (ubuntu-latest, 20)
|
||
"gzip-size": { | ||
"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.
Remove duplicate entry and correct alphabetical order
The package "gkd-mrlc" has been added twice in the dependencies list. Additionally, it's not in the correct alphabetical order in both locations. To fix this:
Here's the suggested change:
This change will resolve both the duplication issue and ensure proper alphabetical ordering of the dependencies.
Also applies to: 7151-7153