import { postcss } from "https://deno.land/x/bundler@0.6.5/deps.ts";
const { Node } = postcss;
Insert new node after current node to current node’s parent.
Just alias for node.parent.insertAfter(node, add)
.
decl.after('color: black')
import { postcss } from "https://deno.land/x/bundler@0.6.5/deps.ts";
const { Node } = postcss;
Insert new node after current node to current node’s parent.
Just alias for node.parent.insertAfter(node, add)
.
decl.after('color: black')