Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/vendo/src/cli/theme/extract-theme.ts
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,11 @@ async function collectCss(layout: ContextFile | null, targetDir: string): Promis
await visit(path.join(targetDir, spec.slice(2)), depth + 1);
}
}
files.push({ path: path.relative(targetDir, absolute), content });
// Repo-relative POSIX spelling: these paths surface as extraction
// evidence and the model pass's hints, and are compared as written — a
// platform-separator variant reads as a different file everywhere they
// are matched against conventional entry names.
files.push({ path: path.relative(targetDir, absolute).split(path.sep).join("/"), content });
};

if (layout !== null) {
Expand Down