mirror of
https://github.com/tailwindlabs/tailwindcss.git
synced 2025-12-08 21:36:08 +00:00
22 lines
484 B
JavaScript
22 lines
484 B
JavaScript
import fs from 'fs'
|
|
import path from 'path'
|
|
|
|
import rimraf from 'rimraf'
|
|
|
|
export default function(callback) {
|
|
return new Promise(resolve => {
|
|
const workerId = process.env.JEST_WORKER_ID
|
|
const tmpPath = path.resolve(__dirname, `../__tmp_${workerId}`)
|
|
const currentPath = process.cwd()
|
|
|
|
rimraf.sync(tmpPath)
|
|
fs.mkdirSync(tmpPath)
|
|
process.chdir(tmpPath)
|
|
|
|
callback().then(() => {
|
|
process.chdir(currentPath)
|
|
rimraf(tmpPath, resolve)
|
|
})
|
|
})
|
|
}
|