Member Junction
    Preparing search index...

    Result of the dependency phase.

    DependencyPhase.Run

    interface DependencyResult {
        BuildPartial: boolean;
        BuildSuccess: boolean;
        InstallSuccess: boolean;
        Warnings: string[];
    }
    Index

    Properties

    BuildPartial: boolean

    Whether the build was partial — codegen-managed packages failed but all other packages succeeded. CodeGen will fix these.

    BuildSuccess: boolean

    Whether npm run build completed fully (false if partial).

    InstallSuccess: boolean

    Whether npm install completed successfully.

    Warnings: string[]

    Non-fatal warnings collected during install and build (e.g., npm audit advisories).