chore: regenerate yarn.lock (#6341)

Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
This commit is contained in:
Sébastien Lorber 2022-01-14 15:52:12 +01:00 committed by GitHub
parent f1fd346925
commit 4004f5b68b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
6 changed files with 2014 additions and 2331 deletions

View file

@ -63,7 +63,7 @@ export function normalizePluginOptions<T extends {id?: string}>(
}
}
return value;
return value!; // TODO remove ! this in TS 4.6, see https://twitter.com/sebastienlorber/status/1481950042277793793
}
export function normalizeThemeConfig<T>(
@ -90,7 +90,7 @@ export function normalizeThemeConfig<T>(
throw error;
}
}
return value;
return value!; // TODO remove ! this in TS 4.6, see https://twitter.com/sebastienlorber/status/1481950042277793793
}
export function validateFrontMatter<T>(
@ -120,5 +120,5 @@ ${errorDetails.map(({message}) => message)}
throw error;
}
return value;
return value!; // TODO remove ! this in TS 4.6, see https://twitter.com/sebastienlorber/status/1481950042277793793
}