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

This commit is contained in:
metonym 2022-03-13 07:24:47 -07:00 committed by GitHub
commit a9e26445ac
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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