Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions pages/blog/posts/2020-10-10-webpack-5-release.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
---
layout: post
date: 2020-10-10T00:00:00Z
authors:
- sokra
- chenxsan
authors: sokra, chenxsan
category: Release
image: /assets/blog/cover-1.svg
description: Webpack 5.0.0 is officially released! This major version brings huge architectural improvements, persistent caching, deterministic chunk IDs, and Module Federation.
Expand Down
2 changes: 1 addition & 1 deletion scripts/data/blog.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const readPosts = async () => {
return {
slug,
title: titleFromBody(content) ?? slug,
authors: data.authors.split(',').map(s => s.trim()),
authors: data.authors?.split(',').map(s => s.trim()),
date: new Date(data.date).toISOString(),
category: data.category ?? null,
image: data.image ?? null,
Expand Down