chore(deps): set debug resolution and refresh lock

This commit is contained in:
Benjamin Canac
2024-12-13 15:08:07 +01:00
parent 2fc43d66d5
commit babfcdcb02
5 changed files with 1012 additions and 1572 deletions

View File

@@ -125,13 +125,13 @@ async function _validate(opts: { name?: string | string[], silent?: boolean, nes
const nestedValidatePromises = !names && opts.nested
? Array.from(nestedForms.value.values()).map(
({ validate }) => validate().then(() => undefined).catch((error: Error) => {
if (!(error instanceof FormValidationException)) {
throw error
}
return error
})
)
({ validate }) => validate().then(() => undefined).catch((error: Error) => {
if (!(error instanceof FormValidationException)) {
throw error
}
return error
})
)
: []
if (names) {