Skip to content
Merged
Prev Previous commit
Next Next commit
use let
  • Loading branch information
RobinMalfait committed Aug 7, 2024
commit 1bb3c8e023e4e276eb11a702c36b44f661a989c7
2 changes: 1 addition & 1 deletion packages/@tailwindcss-cli/src/commands/build/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ async function createWatchers(dirs: string[], handle: (files: string[]) => void)
if (event.type === 'delete') return

// Ignore directory changes. We only care about file changes
const stats = await fs.lstat(event.path)
let stats = await fs.lstat(event.path)
if (stats.isDirectory()) {
return
}
Expand Down