getModuleDependencies() — tailwindcss Function Reference
Architecture documentation for the getModuleDependencies() function in get-module-dependencies.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 5df74edb_ca62_37b7_19bd_9e5c4216afe5["getModuleDependencies()"] aee9f739_9a7b_d15f_6c82_a35dce42a8e6["loadModule()"] aee9f739_9a7b_d15f_6c82_a35dce42a8e6 -->|calls| 5df74edb_ca62_37b7_19bd_9e5c4216afe5 e5846ec3_eb33_9f0e_d2da_3af0ac3910e1["traceDependencies()"] 5df74edb_ca62_37b7_19bd_9e5c4216afe5 -->|calls| e5846ec3_eb33_9f0e_d2da_3af0ac3910e1 style 5df74edb_ca62_37b7_19bd_9e5c4216afe5 fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/@tailwindcss-node/src/get-module-dependencies.ts lines 95–106
export async function getModuleDependencies(absoluteFilePath: string) {
let seen = new Set<string>()
await traceDependencies(
seen,
absoluteFilePath,
path.dirname(absoluteFilePath),
path.extname(absoluteFilePath),
)
return Array.from(seen)
}
Domain
Subdomains
Calls
Called By
Source
Frequently Asked Questions
What does getModuleDependencies() do?
getModuleDependencies() is a function in the tailwindcss codebase.
What does getModuleDependencies() call?
getModuleDependencies() calls 1 function(s): traceDependencies.
What calls getModuleDependencies()?
getModuleDependencies() is called by 1 function(s): loadModule.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free