mirror of
https://github.com/facebook/docusaurus.git
synced 2025-05-10 07:37:19 +02:00
chore: regenerate yarn.lock (#6341)
Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
This commit is contained in:
parent
f1fd346925
commit
4004f5b68b
6 changed files with 2014 additions and 2331 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue