fix(core): should export peer dependency issue types

This commit is contained in:
Zoltan Kochan
2021-12-16 14:31:23 +02:00
parent d16620cf9e
commit cb2e4e33a2
2 changed files with 13 additions and 1 deletions

View File

@@ -0,0 +1,5 @@
---
"@pnpm/core": patch
---
Export peer dependency issue types.

View File

@@ -1,4 +1,11 @@
export { PackageManifest } from '@pnpm/types'
export {
BadPeerDependencyIssue,
MissingPeerDependencyIssue,
MissingPeerIssuesByPeerName,
PackageManifest,
PeerDependencyIssues,
PeerDependencyIssuesByProjects,
} from '@pnpm/types'
export * from './api'
export { ProjectOptions, UnexpectedStoreError, UnexpectedVirtualStoreDirError } from '@pnpm/get-context'