Files
pnpm/installing/deps-installer/src/index.ts
Zoltan Kochan 8acf2708c9 refactor: rename deps-resolver and env-installer packages (#11013)
Rename @pnpm/installing.resolve-dependencies to @pnpm/installing.deps-resolver
for consistency with the <domain>.<leaf> naming convention.
2026-03-18 21:52:01 +01:00

17 lines
780 B
TypeScript

export * from './api.js'
export { UnexpectedStoreError } from './install/checkCompatibility/UnexpectedStoreError.js'
export { UnexpectedVirtualStoreDirError } from './install/checkCompatibility/UnexpectedVirtualStoreDirError.js'
export type { InstallOptions } from './install/extendInstallOptions.js'
export { type ProjectOptions } from '@pnpm/installing.context'
export type { UpdateMatchingFunction } from '@pnpm/installing.deps-resolver'
export type { HoistingLimits } from '@pnpm/installing.deps-restorer'
export type { WorkspacePackages } from '@pnpm/resolving.resolver-base'
export type {
BadPeerDependencyIssue,
MissingPeerDependencyIssue,
MissingPeerIssuesByPeerName,
PackageManifest,
PeerDependencyIssues,
PeerDependencyIssuesByProjects,
} from '@pnpm/types'