8.3.6 • Published 3 years ago

postcss-browser8 v8.3.6

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

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)
})