The Wayback Machine - https://web.archive.org/web/20221206093254/https://github.com/postcss/postcss-deno
Skip to content

postcss/postcss-deno

master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 

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