Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit 673d701

Browse files
committed
fix(build-in.ts): removed mkdirSync arg recursive
1 parent 851612d commit 673d701

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/_internal/utils/build-in.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const buildIn = async (styleSheet: string, global?: string): Promise<void
4545
const message = global === '--global' ? ' ✅ Generating global static css \n' : ' ✅ Generating module static css \n';
4646

4747
if (!existsSync(stylesDir)) {
48-
mkdirSync(stylesDir, { recursive: true });
48+
mkdirSync(stylesDir);
4949
}
5050

5151
if (isServer) {

0 commit comments

Comments
 (0)