Updating dist.

This commit is contained in:
Federico Builes
2022-09-20 15:16:25 +02:00
parent 61f19e6447
commit 890361387d
2 changed files with 6 additions and 7 deletions
Generated Vendored
+5 -6
View File
@@ -14924,22 +14924,21 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod }; return (mod && mod.__esModule) ? mod : { "default": mod };
}; };
Object.defineProperty(exports, "__esModule", ({ value: true })); Object.defineProperty(exports, "__esModule", ({ value: true }));
exports.readConfigFile = exports.readInlineConfig = exports.readConfig = exports.CONFIG_FILEPATH = void 0; exports.readConfigFile = exports.readInlineConfig = exports.readConfig = void 0;
const fs = __importStar(__nccwpck_require__(7147)); const fs = __importStar(__nccwpck_require__(7147));
const path_1 = __importDefault(__nccwpck_require__(1017)); const path_1 = __importDefault(__nccwpck_require__(1017));
const yaml_1 = __importDefault(__nccwpck_require__(4083)); const yaml_1 = __importDefault(__nccwpck_require__(4083));
const core = __importStar(__nccwpck_require__(2186)); const core = __importStar(__nccwpck_require__(2186));
const z = __importStar(__nccwpck_require__(3301)); const z = __importStar(__nccwpck_require__(3301));
const schemas_1 = __nccwpck_require__(1129); const schemas_1 = __nccwpck_require__(1129);
exports.CONFIG_FILEPATH = './.github/dependency-review-config.yml';
function getOptionalInput(name) { function getOptionalInput(name) {
const value = core.getInput(name); const value = core.getInput(name);
return value.length > 0 ? value : undefined; return value.length > 0 ? value : undefined;
} }
function readConfig() { function readConfig() {
const hasExternalConfig = getOptionalInput('config-file'); const externalConfig = getOptionalInput('config-file');
if (hasExternalConfig !== undefined) { if (externalConfig !== undefined) {
return readConfigFile(exports.CONFIG_FILEPATH); return readConfigFile(externalConfig);
} }
else { else {
return readInlineConfig(); return readInlineConfig();
@@ -14967,7 +14966,7 @@ function readInlineConfig() {
}; };
} }
exports.readInlineConfig = readInlineConfig; exports.readInlineConfig = readInlineConfig;
function readConfigFile(filePath = exports.CONFIG_FILEPATH) { function readConfigFile(filePath) {
let data; let data;
try { try {
data = fs.readFileSync(path_1.default.resolve(filePath), 'utf-8'); data = fs.readFileSync(path_1.default.resolve(filePath), 'utf-8');
Generated Vendored
+1 -1
View File
File diff suppressed because one or more lines are too long