Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/ikasoba/esbuild-postcss-plugin


https://github.com/ikasoba/esbuild-postcss-plugin

Last synced: 15 days ago
JSON representation

Awesome Lists containing this project

README

        

```js
import { build } from "esbuild";
import { PostCssPlugin } from "@ikasoba000/esbuild-postcss-plugin";
import autoprefixer from "autoprefixer";

await build({
entryPoints: ["src/index.css"],
outdir: "./dist/",
plugins: [
PostCssPlugin({
plugins: [autoprefixer()],
}),
],
});
```