From 042694c50d0e5ac04e274360a58a1b081fa12f43 Mon Sep 17 00:00:00 2001 From: "Jocelyn Badgley (Twipped)" Date: Fri, 28 Feb 2020 09:15:32 -0800 Subject: [PATCH] Remove the gating on page writing --- gulp/content/page-writer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/content/page-writer.js b/gulp/content/page-writer.js index c443891..748d84d 100644 --- a/gulp/content/page-writer.js +++ b/gulp/content/page-writer.js @@ -52,5 +52,5 @@ module.exports = exports = async function writePageContent (pages, prod) { prod ? JSON.stringify(json) : JSON.stringify(json, null, 2), )), ]); - }, { concurrency: 1 }); + }); };