From a9e26445aca78e28a05ceafb83794f4ecdd42b87 Mon Sep 17 00:00:00 2001 From: metonym Date: Sun, 13 Mar 2022 07:24:47 -0700 Subject: [PATCH] fix(css): do not generate CSS file from _popover.scss (#1168) --- scripts/build-css.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-css.js b/scripts/build-css.js index ff9a9fdf..a7c9609c 100644 --- a/scripts/build-css.js +++ b/scripts/build-css.js @@ -15,7 +15,7 @@ const path = require("path"); const scss = fs .readdirSync("css") - .filter((file) => file.endsWith(".scss")) + .filter((file) => file.endsWith(".scss") && !/^\_popover/.test(file)) .map((file) => path.parse(file)); for (const { name, base } of scss) {