We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7512911 commit 5efa8c6Copy full SHA for 5efa8c6
src/lib/setupContext.js
@@ -31,8 +31,8 @@ let env = sharedState.env
31
// Earmarks a directory for our touch files.
32
// If the directory already exists we delete any existing touch files,
33
// invalidating any caches associated with them.
34
-const touchDirRoot = process.env.TAILWIND_TOUCH_ROOT || os.homedir() || os.tmpdir()
35
-const touchDir = path.join(touchDirRoot, '.tailwindcss', 'touch')
+const touchDir =
+ process.env.TAILWIND_TOUCH_DIR || path.join(os.homedir() || os.tmpdir(), '.tailwindcss', 'touch')
36
37
if (fs.existsSync(touchDir)) {
38
for (let file of fs.readdirSync(touchDir)) {
0 commit comments