fix(css): do not generate CSS file from _popover.scss

This commit is contained in:
Eric Liu 2022-03-13 07:21:55 -07:00
commit b1c8e1f183

View file

@ -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) {