class postcss.Root
extends Container
Re-export
import { postcss } from "https://deno.land/x/bundler@0.6.5/deps.ts";
const { Root } = postcss;
Represents a CSS file and contains all its parsed nodes.
const root = postcss.parse('a{color:black} b{z-index:2}')
root.type //=> 'root'
root.nodes.length //=> 2
Constructors
new
Root(defaults?: RootProps)Methods
toResult(options?: ProcessOptions): Result
Returns a Result
instance representing the root’s CSS.
const root1 = postcss.parse(css1, { from: 'a.css' })
const root2 = postcss.parse(css2, { from: 'b.css' })
root1.append(root2)
const result = root1.toResult({ to: 'all.css', map: true })