@pnpm/lockfile.types 1100.1.0 → 1100.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @pnpm/lockfile-types
2
2
 
3
+ ## 1100.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - `pnpm install` now relinks workspace packages when `publishConfig.linkDirectory` changes. Frozen installs report an outdated lockfile until it is regenerated [pnpm/pnpm#14488](https://github.com/pnpm/pnpm/issues/14488).
8
+
3
9
  ## 1100.1.0
4
10
 
5
11
  ### Minor Changes
package/lib/index.d.ts CHANGED
@@ -58,6 +58,8 @@ export interface LockfilePackageInfo {
58
58
  export interface ProjectSnapshotBase {
59
59
  dependenciesMeta?: DependenciesMeta;
60
60
  publishDirectory?: string;
61
+ /** Present only when workspace links must ignore `publishDirectory`. */
62
+ linkDirectory?: false;
61
63
  }
62
64
  export interface ProjectSnapshot extends ProjectSnapshotBase {
63
65
  specifiers: ResolvedDependencies;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pnpm/lockfile.types",
3
- "version": "1100.1.0",
3
+ "version": "1100.1.1",
4
4
  "description": "Types for the pnpm-lock.yaml lockfile",
5
5
  "keywords": [
6
6
  "pnpm",
@@ -34,7 +34,7 @@
34
34
  "@pnpm/types": "1102.1.0"
35
35
  },
36
36
  "devDependencies": {
37
- "@pnpm/lockfile.types": "1100.1.0"
37
+ "@pnpm/lockfile.types": "1100.1.1"
38
38
  },
39
39
  "engines": {
40
40
  "node": ">=22.13"