Updating dist.

This commit is contained in:
Federico Builes
2022-06-14 07:04:33 +02:00
parent ef97470a0f
commit cc3101831d
2 changed files with 9 additions and 15 deletions
Generated Vendored
+8 -14
View File
@@ -13699,30 +13699,24 @@ var __importStar = (this && this.__importStar) || function (mod) {
return result; return result;
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.readConfig = exports.CONFIG_FILEPATH = void 0; exports.readConfig = void 0;
const core = __importStar(__nccwpck_require__(2186)); const core = __importStar(__nccwpck_require__(2186));
const schemas_1 = __nccwpck_require__(1129); const schemas_1 = __nccwpck_require__(1129);
exports.CONFIG_FILEPATH = './.github/dependency-review.yml';
function readConfig() { function readConfig() {
let options = {};
// By default we want to fail on all severities and allow all licenses. // By default we want to fail on all severities and allow all licenses.
let options = { const severity = core.getInput('fail-on-severity') || 'low';
fail_on_severity: 'low', const allowedLicenses = core.getInput('allowed-licenses');
allow_licenses: [], const denyLicenses = core.getInput('deny-licenses');
deny_licenses: [] options.fail_on_severity = severity;
};
let severity = core.getInput('fail-on-severity');
let allowedLicenses = core.getInput('allowed-licenses');
let denyLicenses = core.getInput('deny-licenses');
// TODO test the empty string case
if (severity.length > 0) {
options.fail_on_severity = severity;
}
if (allowedLicenses.length > 0) { if (allowedLicenses.length > 0) {
options.allow_licenses = allowedLicenses.split(',').map(s => s.trim()); options.allow_licenses = allowedLicenses.split(',').map(s => s.trim());
} }
if (denyLicenses.length > 0) { if (denyLicenses.length > 0) {
options.deny_licenses = denyLicenses.split(',').map(s => s.trim()); options.deny_licenses = denyLicenses.split(',').map(s => s.trim());
} }
// we call parse on the ConfigurationOptions object because we want Zod
// to validate part of the input.
return schemas_1.ConfigurationOptionsSchema.parse(options); return schemas_1.ConfigurationOptionsSchema.parse(options);
} }
exports.readConfig = readConfig; exports.readConfig = readConfig;
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long