data-cap
    Preparing search index...

    Interface GenerateManifestOptions

    Options for generateManifest.

    interface GenerateManifestOptions {
        inventory: CapabilityInventory;
        location: string;
        previousSnapshot: ManifestSnapshot | undefined;
        root: string;
    }
    Index

    The inventory to render the manifest from.

    location: string

    Where the manifest .ts file will be written -- used to compute relative import specifiers, not written to here.

    previousSnapshot: ManifestSnapshot | undefined

    The previously-persisted snapshot, or undefined on a first run.

    root: string

    Discovery root every CapabilityNode.file is relative to (OUT-01) -- needed to lift each capability back to a real absolute path before computing its import specifier from location's own directory.