Skip to content

Commit 790fbce

Browse files
committed
normalize path: ensure forward slashes
1 parent 0a50833 commit 790fbce

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/ui/rollup.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ import packageJson from "./package.json";
77
const tailwindPluginCssFile = "plugin/tailwindcss/index.css";
88

99
let entries = await Array.fromAsync(new Glob("src/**/*").scan());
10-
entries = entries.filter((path) => !path.includes(".test.") && !path.includes(tailwindPluginCssFile)).sort();
10+
entries = entries
11+
.filter((path) => !path.includes(".test.") && !path.replace(/\\/g, "/").includes(tailwindPluginCssFile))
12+
.sort();
1113

1214
const external = [
1315
"ast-types",

0 commit comments

Comments
 (0)