Added 16.3 changelog to version links

This commit is contained in:
Brian Vaughn
2018-04-15 08:00:04 -07:00
parent fbbddeea29
commit 88bf29d3f3
3 changed files with 10 additions and 6 deletions

View File

@@ -20,7 +20,7 @@ exports.onPostBuild = async ({store}) => {
// versions.yml structure is [{path: string, url: string, ...}, ...]
createRedirects(
versions.map(version => ({
versions.filter(version => version.path && version.url).map(version => ({
fromPath: version.path,
toPath: version.url,
})),