Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/postcss/postcss-deno
- Owner: postcss
- Created: 2020-09-29T22:55:45.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-10-13T18:26:57.000Z (about 2 years ago)
- Last Synced: 2024-04-14T02:32:52.936Z (9 months ago)
- Topics: deno, postcss
- Language: JavaScript
- Homepage: https://deno.land/x/postcss
- Size: 197 KB
- Stars: 56
- Watchers: 5
- Forks: 5
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-deno - postcss - A tool for transforming styles with JS plugins. (Modules / Frontend development)
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);
```