From b1c8e1f18334c08435c6d73c763f5c35f0723a8c Mon Sep 17 00:00:00 2001 From: Eric Liu Date: Sun, 13 Mar 2022 07:21:55 -0700 Subject: [PATCH] fix(css): do not generate CSS file from _popover.scss --- 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) {