Skip to main content
Module

x/bundler/deps.ts>postcss.Root

A Bundler with the web in mind.
Latest
class postcss.Root
extends Container
Re-export
import { postcss } from "https://deno.land/x/bundler@0.9.0/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)

Properties

parent: Document | undefined
raws: RootRaws
type: "root"

Methods

assign(overrides: object | RootProps): this

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 })