MCPcopy
hub / github.com/tailwindlabs/tailwindcss / CacheEntry

Interface CacheEntry

packages/@tailwindcss-postcss/src/index.ts:21–29  ·  packages/@tailwindcss-postcss/src/index.ts::CacheEntry

Source from the content-addressed store, hash-verified

19const DEBUG = env.DEBUG
20
21interface CacheEntry {
22 mtimes: Map<string, number>
23 compiler: null | ReturnType<typeof compileAst>
24 scanner: null | Scanner
25 tailwindCssAst: AstNode[]
26 cachedPostCssAst: Root
27 optimizedPostCssAst: Root
28 fullRebuildPaths: string[]
29}
30const cache = new QuickLRU<string, CacheEntry>({ maxSize: 50 })
31
32function getContextFromCache(postcss: Postcss, inputFile: string, opts: PluginOptions): CacheEntry {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected