gracefullyRemove() — tailwindcss Function Reference
Architecture documentation for the gracefullyRemove() function in utils.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 5f2e45b0_6b66_f001_594a_4edbad71896d["gracefullyRemove()"] 95c8f29e_91f6_456b_d507_743b887b8c33["test()"] 95c8f29e_91f6_456b_d507_743b887b8c33 -->|calls| 5f2e45b0_6b66_f001_594a_4edbad71896d style 5f2e45b0_6b66_f001_594a_4edbad71896d fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
integrations/utils.ts lines 609–616
async function gracefullyRemove(dir: string) {
// Skip removing the directory in CI because it can stall on Windows
if (!process.env.CI) {
await fs.rm(dir, { recursive: true, force: true }).catch((error) => {
console.log(`Failed to remove ${dir}`, error)
})
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does gracefullyRemove() do?
gracefullyRemove() is a function in the tailwindcss codebase.
What calls gracefullyRemove()?
gracefullyRemove() is called by 1 function(s): test.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free