postcss-browser8
v8.3.6
Published
Tool for transforming styles with JS plugins
Downloads
3
Maintainers
Readme
PostCSS
Bundle the postcss to the esmodule and translate node to the browser
use
yarn add -D postcss-browser
import postcss from "../../dist/postcss"
const lazyResult = postcss().process(".title {color: red}")
lazyResult.then(res => {
console.log(res)
})