Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ikasoba/esbuild-postcss-plugin
https://github.com/ikasoba/esbuild-postcss-plugin
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/ikasoba/esbuild-postcss-plugin
- Owner: ikasoba
- Created: 2023-07-03T01:26:18.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-07-03T01:33:09.000Z (over 1 year ago)
- Last Synced: 2024-11-24T08:53:42.573Z (about 1 month 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()],
}),
],
});
```