Member Junction
    Preparing search index...

    Result of the manifest generation

    interface GenerateManifestResult {
        AddedDependencies: Record<string, string>;
        classes: RegisteredClassInfo[];
        errors: string[];
        LazyConfigChanged?: boolean;
        ManifestChanged: boolean;
        outputPath: string;
        packages: string[];
        success: boolean;
        totalDepsWalked: number;
    }
    Index

    Properties

    AddedDependencies: Record<string, string>

    Dependencies that were added to the app's package.json by the syncDependencies step. Keys are package names, values are version strings. Empty when syncDependencies is disabled or no packages were missing.

    All classes found

    errors: string[]

    Any errors encountered

    LazyConfigChanged?: boolean

    Whether the lazy config file content changed and was written to disk

    ManifestChanged: boolean

    Whether the manifest file content changed and was written to disk

    outputPath: string

    Path to the generated manifest file

    packages: string[]

    Unique packages that will be imported

    success: boolean

    Whether generation was successful

    totalDepsWalked: number

    Total packages in the dependency tree