From a95fe4523cdc026b1147464fde9d1784e2764016 Mon Sep 17 00:00:00 2001 From: Chauncey McAskill Date: Wed, 3 Nov 2021 16:50:08 -0400 Subject: [PATCH] Update postcss.js Remove extraneous `null` assignment on optional exports. --- build/utils/postcss.js | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/build/utils/postcss.js b/build/utils/postcss.js index 75866c6..60c776d 100644 --- a/build/utils/postcss.js +++ b/build/utils/postcss.js @@ -12,8 +12,7 @@ try { autoprefixer = await import('autoprefixer'); autoprefixer = autoprefixer.default; } catch (err) { - postcss = null; - autoprefixer = null; + // do nothing } export default postcss;