From 9a8cb96d8ea375441beef6b045b01c220e1f5277 Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Wed, 12 Nov 2025 20:00:30 -0800 Subject: [PATCH] comment --- src/install/lockfile/Tree.zig | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/install/lockfile/Tree.zig b/src/install/lockfile/Tree.zig index 577727defd..39904d2f79 100644 --- a/src/install/lockfile/Tree.zig +++ b/src/install/lockfile/Tree.zig @@ -264,6 +264,12 @@ pub fn Builder(comptime method: BuilderMethod) type { /// beyond this tree if they're in a subtree hoist_root_id: Tree.Id, + /// Relative path of the current tree. Each component is a package + /// name or part of the package name (if the name is scoped) leading + /// to the tree. Example values: + /// "" (the root subpath is empty) + /// "react/loose-envify" (react -> loose-envify) + /// "@types/bun/bun-types/@types/node" (@types/bun -> bun-types -> @types/node) subpath: Subpath(method), };