/postcss-deno

Postcss for Deno

Primary LanguageJavaScript

PostCSS for Deno

Scripts to transform the source code of PostCSS for Deno compatibility.

sh run.sh

To import Postcss in your Deno project:

import postcss from "https://deno.land/x/postcss/mod.js";
import autoprefixer from "https://deno.land/x/postcss_autoprefixer/mod.js";

const result = await postcss([autoprefixer]).process(css);