Skip to content

postcss/postcss-deno

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

86 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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