optimize() — tailwindcss Function Reference
Architecture documentation for the optimize() function in optimize.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD 476b4032_f4b1_ac67_0f5a_372cd6083a1f["optimize()"] d0882994_2233_2deb_6955_0f7ea9f59be4["compileCss()"] d0882994_2233_2deb_6955_0f7ea9f59be4 -->|calls| 476b4032_f4b1_ac67_0f5a_372cd6083a1f e7d6c080_24e7_d7c5_0e33_ad4096c4a82d["run()"] e7d6c080_24e7_d7c5_0e33_ad4096c4a82d -->|calls| 476b4032_f4b1_ac67_0f5a_372cd6083a1f 8d7a74f8_b077_3303_2f5e_4a3fa304b43d["optimizeCss()"] 8d7a74f8_b077_3303_2f5e_4a3fa304b43d -->|calls| 476b4032_f4b1_ac67_0f5a_372cd6083a1f 811a05d1_74b6_db8d_9c62_35b3ec21cf16["render()"] 811a05d1_74b6_db8d_9c62_35b3ec21cf16 -->|calls| 476b4032_f4b1_ac67_0f5a_372cd6083a1f 826284e1_7f83_0cbb_2b0b_bce46a4cd7a6["dim()"] 476b4032_f4b1_ac67_0f5a_372cd6083a1f -->|calls| 826284e1_7f83_0cbb_2b0b_bce46a4cd7a6 1ea34df9_dc0b_986c_d3c7_4145030e2290["yellow()"] 476b4032_f4b1_ac67_0f5a_372cd6083a1f -->|calls| 1ea34df9_dc0b_986c_d3c7_4145030e2290 style 476b4032_f4b1_ac67_0f5a_372cd6083a1f fill:#6366f1,stroke:#818cf8,color:#fff
Relationship Graph
Source Code
packages/@tailwindcss-node/src/optimize.ts lines 29–143
export function optimize(
input: string,
{ file = 'input.css', minify = false, map }: OptimizeOptions = {},
): TransformResult {
function optimize(code: Buffer | Uint8Array, map: string | undefined) {
return transform({
filename: file,
code,
minify,
sourceMap: typeof map !== 'undefined',
inputSourceMap: map,
drafts: {
customMedia: true,
},
nonStandard: {
deepSelectorCombinator: true,
},
include: Features.Nesting | Features.MediaQueries,
exclude: Features.LogicalProperties | Features.DirSelector | Features.LightDark,
targets: {
safari: (16 << 16) | (4 << 8),
ios_saf: (16 << 16) | (4 << 8),
firefox: 128 << 16,
chrome: 111 << 16,
},
errorRecovery: true,
})
}
// Running Lightning CSS twice to ensure that adjacent rules are merged after
// nesting is applied. This creates a more optimized output.
let result = optimize(Buffer.from(input), map)
map = result.map?.toString()
result.warnings = result.warnings.filter((warning) => {
// Ignore warnings about unknown pseudo-classes as they are likely caused
// by the use of `:deep()`, `:slotted()`, and `:global()` which are not
// standard CSS but are commonly used in frameworks like Vue.
if (/'(deep|slotted|global)' is not recognized as a valid pseudo-/.test(warning.message)) {
return false
}
return true
})
// Because of `errorRecovery: true`, there could be warnings, so let's let the
// user know about them.
if (process.env.NODE_ENV !== 'test' && result.warnings.length > 0) {
let lines = input.split('\n')
let output = [
`Found ${result.warnings.length} ${result.warnings.length === 1 ? 'warning' : 'warnings'} while optimizing generated CSS:`,
]
for (let [idx, warning] of result.warnings.entries()) {
output.push('')
if (result.warnings.length > 1) {
output.push(`Issue #${idx + 1}:`)
}
let context = 2
let start = Math.max(0, warning.loc.line - context - 1)
let end = Math.min(lines.length, warning.loc.line + context)
let snippet = lines.slice(start, end).map((line, idx) => {
if (start + idx + 1 === warning.loc.line) {
return `${dim(`\u2502`)} ${line}`
} else {
return dim(`\u2502 ${line}`)
}
})
snippet.splice(
warning.loc.line - start,
0,
`${dim('\u2506')}${' '.repeat(warning.loc.column - 1)} ${yellow(`${dim('^--')} ${warning.message}`)}`,
`${dim('\u2506')}`,
)
output.push(...snippet)
}
output.push('')
console.warn(output.join('\n'))
}
result = optimize(result.code, map)
map = result.map?.toString()
let code = result.code.toString()
// Work around an issue where the media query range syntax transpilation
// generates code that is invalid with `@media` queries level 3.
let magic = new MagicString(code)
magic.replaceAll('@media not (', '@media not all and (')
// We have to use a source-map-preserving method of replacing the content
// which requires the use of Magic String + remapping(…) to make sure
// the resulting map is correct
if (map !== undefined && magic.hasChanged()) {
let magicMap = magic.generateMap({ source: 'original', hires: 'boundary' }).toString()
let remapped = remapping([magicMap, map], () => null)
map = remapped.toString()
}
code = magic.toString()
return {
code,
map,
}
}
Domain
Subdomains
Called By
Source
Frequently Asked Questions
What does optimize() do?
optimize() is a function in the tailwindcss codebase.
What does optimize() call?
optimize() calls 2 function(s): dim, yellow.
What calls optimize()?
optimize() is called by 4 function(s): compileCss, optimizeCss, render, run.
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free