• validate the external dependencies of a workspace

    Parameters

    • params: {
          includeRoot?: boolean;
          skipWorkspaceDeps?: boolean;
          workspaceRoot: string | URL;
      }
      • OptionalincludeRoot?: boolean

        whether to also validate the root package.json

        true
        
      • OptionalskipWorkspaceDeps?: boolean

        whether to skip validating dependencies of other workspace packages

        true
        
      • workspaceRoot: string | URL

        path to the workspace root

    Returns Promise<WorkspaceDepsError[]>