-
-
Notifications
You must be signed in to change notification settings - Fork 18
Skip hosted-database check in self-hosted mode #1726
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
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 | ||||||
|---|---|---|---|---|---|---|---|---|
|
|
@@ -22,7 +22,13 @@ | |||||||
| "pnpm": { | ||||||||
| "overrides": { | ||||||||
| "cipher-base": "1.0.7", | ||||||||
| "tar-fs": "1.16.6" | ||||||||
| "tar-fs": "1.16.6", | ||||||||
| "ajv@>=7.0.0-alpha.0 <8.18.0": ">=8.18.0", | ||||||||
| "picomatch@>=4.0.0 <4.0.4": ">=4.0.4", | ||||||||
| "path-to-regexp@>=8.0.0 <8.4.0": ">=8.4.0", | ||||||||
| "lodash@>=4.0.0 <=4.17.23": ">=4.18.0", | ||||||||
| "lodash@<=4.17.23": ">=4.18.0", | ||||||||
|
Comment on lines
+29
to
+30
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. Redundant lodash override — second range subsumes the first.
Proposed cleanup- "lodash@>=4.0.0 <=4.17.23": ">=4.18.0",
"lodash@<=4.17.23": ">=4.18.0",Also worth double-checking that forcing 📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||
| "@nestjs/core@<=11.1.17": ">=11.1.18" | ||||||||
|
||||||||
| "@nestjs/core@<=11.1.17": ">=11.1.18" | |
| "@nestjs/core@<=11.1.17": "11.1.18" |
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.
The lodash override is duplicated:
lodash@<=4.17.23already covers thelodash@>=4.0.0 <=4.17.23selector, so one of these entries is redundant and makes the override list harder to maintain. Remove the duplicate selector to keep overrides minimal and unambiguous.