We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb69439 commit 40165b7Copy full SHA for 40165b7
jit/lib/setupContext.js
@@ -36,7 +36,9 @@ const touchDir =
36
if (!sharedState.env.TAILWIND_DISABLE_TOUCH) {
37
if (fs.existsSync(touchDir)) {
38
for (let file of fs.readdirSync(touchDir)) {
39
- fs.unlinkSync(path.join(touchDir, file))
+ try {
40
+ fs.unlinkSync(path.join(touchDir, file))
41
+ } catch (_err) {}
42
}
43
} else {
44
fs.mkdirSync(touchDir, { recursive: true })
0 commit comments