You'll notice
Useful2 Signal0
Startup is slightly faster because the schema validation library loads only when first used.
What's wrong with this entry?
Anonymous. No account, no email.
What
The JSON-schema validator no longer pulls in Ajv when it is constructed, moving that load cost off the startup path.
Details
- The validator destructures
{ Ajv: t }from a lazy require inside the function body. - Ajv is now loaded on first schema validation instead of at module construction.
Evidence
let { Ajv: t } = dQn(),
Strings lifted out of the shipped bundle, so the claim above can be checked against them.