Backstage
    Preparing search index...
    interface CatalogAnalysisExtensionPoint {
        addScmLocationAnalyzer(analyzer: ScmLocationAnalyzer): void;
        setLocationAnalyzer(
            analyzerOrFactory:
                | LocationAnalyzer
                | (
                    (
                        options: { scmLocationAnalyzers: ScmLocationAnalyzer[] },
                    ) => Promise<{ locationAnalyzer: LocationAnalyzer }>
                ),
        ): void;
    }
    Index

    Methods

    • Replaces the entire location analyzer with a new one.

      Parameters

      Returns void

      By providing a factory function you can access all the SCM analyzers that have been added through addScmLocationAnalyzer. If you provide a LocationAnalyzer directly, the SCM analyzers will be ignored.