UNPKG

@pnpm/workspace.state

Version:

Track the list of actual paths of workspace packages in a cache

11 lines (10 loc) 422 B
import { type WorkspaceStateSettings, type ProjectsList } from './types'; export interface UpdateWorkspaceStateOptions { allProjects: ProjectsList; settings: WorkspaceStateSettings; workspaceDir: string; pnpmfileExists: boolean; filteredInstall: boolean; configDependencies?: Record<string, string>; } export declare function updateWorkspaceState(opts: UpdateWorkspaceStateOptions): Promise<void>;