You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Ensure that multiple packages requiring the same dependency define the same version, so that every package requires eg. `react@16.4.2`, instead of a combination of `react@16.4.2`, `react@0.15.9`, and `react@16.0.0`.
24
+
Ensure that multiple packages requiring the same dependency define the same version, so that every package requires eg. `react@17.0.2`, instead of a combination of `react@17.0.2`, `react@16.8.3`, and `react@16.14.0`.
25
25
26
26
#### Examples
27
27
28
28
```bash
29
-
# Find every issue in "dependencies" or "devDependencies"
29
+
# Find all issues in "dependencies" or "devDependencies"
30
30
syncpack lint --dependency-types prod,dev
31
+
# Only lint issues in "react" specifically
32
+
syncpack lint --dependencies react
31
33
# Look for issues in dependencies containing "react" in the name
0 commit comments