Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/postcss/postcss-deno

Postcss for Deno
https://github.com/postcss/postcss-deno

deno postcss

Last synced: 3 months ago
JSON representation

Postcss for Deno

Awesome Lists containing this project

README

        

# PostCSS for Deno

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

```sh
sh run.sh
```

To import Postcss in your Deno project:

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