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

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

postcss-import plugin for Deno
https://github.com/postcss/postcss-deno-import

Last synced: 3 months ago
JSON representation

postcss-import plugin for Deno

Awesome Lists containing this project

README

          

# postcss-import for Deno

Scripts to transform the source code of the postcss-import plugin 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 postcssImport from "https://deno.land/x/postcss-import/mod.js";

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