lion/packages-node/providence-analytics/src/program/analyzers/index.js
2021-03-25 16:00:03 +01:00

14 lines
443 B
JavaScript

// A base class for writing Analyzers
const { Analyzer } = require('./helpers/Analyzer.js');
// Expose analyzers that are requested to be run in external contexts
const FindExportsAnalyzer = require('./find-exports.js');
const FindImportsAnalyzer = require('./find-imports.js');
const MatchImportsAnalyzer = require('./match-paths.js');
module.exports = {
Analyzer,
FindExportsAnalyzer,
FindImportsAnalyzer,
MatchImportsAnalyzer,
};