-
Notifications
You must be signed in to change notification settings - Fork 15
npm(deps-dev): bump syncpack from 13.0.4 to 14.0.0 in the version-management group #805
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 | ||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,15 +1,7 @@ | ||||||||||||||||||||||
| { | ||||||||||||||||||||||
| "dependencyTypes": [ | ||||||||||||||||||||||
| "dev", | ||||||||||||||||||||||
| "prod", | ||||||||||||||||||||||
| "resolutions", | ||||||||||||||||||||||
| "overrides", | ||||||||||||||||||||||
| "pnpmOverrides" | ||||||||||||||||||||||
| ], | ||||||||||||||||||||||
| "filter": ".", | ||||||||||||||||||||||
| "$schema": "./node_modules/syncpack/schema.json", | ||||||||||||||||||||||
| "indent": " ", | ||||||||||||||||||||||
| "semverGroups": [], | ||||||||||||||||||||||
| "semverRange": "", | ||||||||||||||||||||||
| "sortAz": [ | ||||||||||||||||||||||
| "contributors", | ||||||||||||||||||||||
| "private", | ||||||||||||||||||||||
|
|
@@ -43,7 +35,19 @@ | |||||||||||||||||||||
| ], | ||||||||||||||||||||||
| "source": [ | ||||||||||||||||||||||
| "package.json", | ||||||||||||||||||||||
| "pkgs/*/package.json" | ||||||||||||||||||||||
| "*/*/package.json" | ||||||||||||||||||||||
| ], | ||||||||||||||||||||||
| "versionGroups": [] | ||||||||||||||||||||||
| "versionGroups": [ | ||||||||||||||||||||||
| { | ||||||||||||||||||||||
| "label": "Accept everything except peerDependencies", | ||||||||||||||||||||||
| "dependencyTypes": [ | ||||||||||||||||||||||
| "!dev", | ||||||||||||||||||||||
| "!prod", | ||||||||||||||||||||||
| "!resolutions", | ||||||||||||||||||||||
| "!overrides", | ||||||||||||||||||||||
| "!pnpmOverrides" | ||||||||||||||||||||||
|
Comment on lines
+44
to
+48
|
||||||||||||||||||||||
| "!dev", | |
| "!prod", | |
| "!resolutions", | |
| "!overrides", | |
| "!pnpmOverrides" | |
| "dev", | |
| "prod", | |
| "resolutions", | |
| "overrides", | |
| "pnpmOverrides" |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -38,7 +38,7 @@ | |
| "lint-staged": "^16.2.7", | ||
| "prettier": "^3.8.1", | ||
| "shellcheck": "^4.1.0", | ||
| "syncpack": "^13.0.4", | ||
| "syncpack": "^14.0.0", | ||
| "turbo": "^2.8.10", | ||
|
Comment on lines
40
to
42
|
||
| "typescript": "^5.9.3" | ||
| }, | ||
|
|
||
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 source pattern was changed from "pkgs//package.json" to "//package.json". The old pattern "pkgs/" doesn't match the actual directory structure (which uses "packages/" and "apps/"), so this change appears to be a fix. However, the new pattern "//package.json" will match two levels deep from root, which correctly matches packages//package.json and apps//package.json, but it will also match any other two-level deep package.json files.
Consider being more explicit with the pattern to avoid accidentally including unwanted package.json files:
"source": [
"package.json",
"packages//package.json",
"apps//package.json"
]
This makes the intent clearer and prevents accidental inclusion of other package.json files that might exist at the same depth.