@pnpm/types
Advanced tools
Comparing version 10.1.1 to 11.0.0
import { type ProjectManifest } from './package'; | ||
export interface Project { | ||
dir: string; | ||
dirRealPath: string; | ||
rootDir: ProjectRootDir; | ||
rootDirRealPath: ProjectRootDirRealPath; | ||
manifest: ProjectManifest; | ||
writeProjectManifest: (manifest: ProjectManifest, force?: boolean | undefined) => Promise<void>; | ||
} | ||
export type ProjectsGraph = Record<string, { | ||
dependencies: string[]; | ||
export type ProjectsGraph = Record<ProjectRootDir, { | ||
dependencies: ProjectRootDir[]; | ||
package: Project; | ||
}>; | ||
export type ProjectRootDir = string & { | ||
__brand: 'ProjectRootDir'; | ||
}; | ||
export type ProjectRootDirRealPath = string & { | ||
__brand: 'ProjectRootDirRealPath'; | ||
}; |
{ | ||
"name": "@pnpm/types", | ||
"version": "10.1.1", | ||
"version": "11.0.0", | ||
"description": "Basic types used by pnpm", | ||
@@ -27,3 +27,3 @@ "main": "lib/index.js", | ||
"devDependencies": { | ||
"@pnpm/types": "10.1.1" | ||
"@pnpm/types": "11.0.0" | ||
}, | ||
@@ -30,0 +30,0 @@ "exports": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12273
285