repo2post - v0.1.1
    Preparing search index...

    Interface ShapedDiff

    The shaped diff: what made it in, and what didn't (and why).

    interface ShapedDiff {
        files: FileDiff[];
        includedLines: number;
        omittedForBudget: string[];
        skipped: { path: string; reason: SkipReason }[];
    }
    Index

    Properties

    files: FileDiff[]
    includedLines: number

    Total diff lines actually included across all files.

    omittedForBudget: string[]

    Files dropped because the total budget was already spent.

    skipped: { path: string; reason: SkipReason }[]

    Files skipped by the sensitive/generated/binary filter, with the reason.