mirror of
https://github.com/pnpm/pnpm.git
synced 2026-04-27 18:46:18 -04:00
Rename @pnpm/installing.resolve-dependencies to @pnpm/installing.deps-resolver for consistency with the <domain>.<leaf> naming convention.
17 lines
780 B
TypeScript
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'
|