https://github.com/ikasoba/esbuild-postcss-plugin
https://github.com/ikasoba/esbuild-postcss-plugin
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ikasoba/esbuild-postcss-plugin
- Owner: ikasoba
- Created: 2023-07-03T01:26:18.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-07-03T01:33:09.000Z (almost 2 years ago)
- Last Synced: 2025-03-07T11:09:49.137Z (4 months ago)
- Language: TypeScript
- Size: 14.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
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()],
}),
],
});
```