polish(v2): url-subpath config validation warning (#4977)

This commit is contained in:
Sébastien Lorber 2021-06-15 18:18:12 +02:00 committed by GitHub
parent dfe32dac9e
commit 9fe79caadc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 51 additions and 5 deletions

View file

@ -35,7 +35,7 @@ export const logValidationBugReportHint = (): void => {
);
};
function printWarning(warning?: Joi.ValidationError) {
export function printWarning(warning?: Joi.ValidationError) {
if (warning) {
const warningMessages = warning.details
.map(({message}) => message)