Skip to content

Commit

Permalink
fix(shadcn): Ensure .scss files are considered in init command
Browse files Browse the repository at this point in the history
  • Loading branch information
Wiper-R committed Sep 16, 2024
1 parent 0610830 commit b7d9604
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/shadcn/src/utils/get-project-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ export async function getProjectInfo(cwd: string): Promise<ProjectInfo | null> {
}

export async function getTailwindCssFile(cwd: string) {
const files = await fg.glob("**/*.css", {
const files = await fg.glob(["**/*.css", "**/*.scss"], {
cwd,
deep: 5,
ignore: PROJECT_SHARED_IGNORE,
Expand Down

0 comments on commit b7d9604

Please sign in to comment.