You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
1.2 KiB
29 lines
1.2 KiB
2 years ago
|
"use strict";
|
||
|
Object.defineProperty(exports, "__esModule", { value: true });
|
||
|
const IssueMatch_1 = require("./IssueMatch");
|
||
|
const IssuePredicate_1 = require("./IssuePredicate");
|
||
|
function createIssuePredicateFromOption(context, option) {
|
||
|
if (Array.isArray(option)) {
|
||
|
return IssuePredicate_1.composeIssuePredicates(option.map((option) => typeof option === 'function' ? option : IssueMatch_1.createIssuePredicateFromIssueMatch(context, option)));
|
||
|
}
|
||
|
return typeof option === 'function'
|
||
|
? option
|
||
|
: IssueMatch_1.createIssuePredicateFromIssueMatch(context, option);
|
||
|
}
|
||
|
function createIssueConfiguration(compiler, options) {
|
||
|
const context = compiler.options.context || process.cwd();
|
||
|
if (!options) {
|
||
|
options = {};
|
||
|
}
|
||
|
const include = options.include
|
||
|
? createIssuePredicateFromOption(context, options.include)
|
||
|
: IssuePredicate_1.createTrivialIssuePredicate(true);
|
||
|
const exclude = options.exclude
|
||
|
? createIssuePredicateFromOption(context, options.exclude)
|
||
|
: IssuePredicate_1.createTrivialIssuePredicate(false);
|
||
|
return {
|
||
|
predicate: (issue) => include(issue) && !exclude(issue),
|
||
|
};
|
||
|
}
|
||
|
exports.createIssueConfiguration = createIssueConfiguration;
|