optimize() — tailwindcss Function Reference
Architecture documentation for the optimize() function in optimize.ts from the tailwindcss codebase.
Entity Profile
Dependency Diagram
graph TD ca298ed8_b5fc_603c_b217_9d1765544d10["optimize()"] 6cb5fd15_bef8_490d_e93c_d7acd86abf26["compileCss()"] 6cb5fd15_bef8_490d_e93c_d7acd86abf26 -->|calls| ca298ed8_b5fc_603c_b217_9d1765544d10 92803c39_c941_b81a_faed_4d1bb8805726["run()"] 92803c39_c941_b81a_faed_4d1bb8805726 -->|calls| ca298ed8_b5fc_603c_b217_9d1765544d10 ea66dbcb_b7c1_4a25_1f66_4e479030f442["optimizeCss()"] ea66dbcb_b7c1_4a25_1f66_4e479030f442 -->|calls| ca298ed8_b5fc_603c_b217_9d1765544d10 03cdd11e_2ae7_a373_7130_c6663e810fd9["render()"] 03cdd11e_2ae7_a373_7130_c6663e810fd9 -->|calls| ca298ed8_b5fc_603c_b217_9d1765544d10 c7537595_3a30_2c21_335f_215a30e825af["dim()"] ca298ed8_b5fc_603c_b217_9d1765544d10 -->|calls| c7537595_3a30_2c21_335f_215a30e825af e86fe1ac_1d1c_4830_a22c_6d1a7a0d5109["yellow()"] ca298ed8_b5fc_603c_b217_9d1765544d10 -->|calls| e86fe1ac_1d1c_4830_a22c_6d1a7a0d5109 style ca298ed8_b5fc_603c_b217_9d1765544d10 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