(dependency)
| 55 | * @param {Dependency} dependency |
| 56 | */ |
| 57 | const shouldIgnoreDependencyForProtocol = (dependency) => |
| 58 | ignoredDependencies.includes(dependency.ident) || |
| 59 | ignoredWorkspaces.includes(dependency.workspace.ident); |
| 60 | |
| 61 | /** |
| 62 | * Enforces consistent dependency versions across all workspaces in the project. |