From 87d7e6df8ac29350f5085c2b4d1b97f7e9d8364c Mon Sep 17 00:00:00 2001 From: Radon Rosborough Date: Fri, 1 Jan 2021 12:06:20 -0800 Subject: [PATCH] Further optimization --- tools/plan-publish.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/plan-publish.js b/tools/plan-publish.js index a3b02de..ff872cd 100644 --- a/tools/plan-publish.js +++ b/tools/plan-publish.js @@ -249,7 +249,7 @@ async function main() { _.every( tableData, (otherDatum) => - otherDatum.pruned || !otherDatum.deps.includes(datum.id) + otherDatum.couldPrune || !otherDatum.deps.includes(datum.id) ) ) { datum.pruned = true;