mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-14 18:01:06 +00:00
fix(css): do not generate CSS file from _popover.scss (#1168)
This commit is contained in:
parent
87c35b1c40
commit
a9e26445ac
1 changed files with 1 additions and 1 deletions
|
@ -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) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue