Sanity Library Reference Docs
    Preparing search index...

    A scaffold the generator refused to write because a file already on disk has the same path in a different case. On a case-insensitive filesystem the write would replace that file, so the developer renames it instead.

    interface CaseCollision {
        effectName: string;
        existingPath: string;
        plannedPath: string;
    }
    Index

    Properties

    effectName: string
    existingPath: string

    The file already on disk, differing from CaseCollision.plannedPath only in case.

    plannedPath: string

    The path the scaffold would have been written to.