@emilbayes/css-pipeline

2.0.0 • Public • Published

@emilbayes/css-pipeline

Build Status

My personal PostCSS based CSS pipeline

Usage

var postcss = require('postcss')
var pipeline = require('@emilbayes/css-pipeline')

postcss(pipeline()).process(cssString).then(oncomplete, onerror)

function oncomplete (result) {
  console.log(result.css)
  process.exit(0)
}
function onerror (err) {
  console.error(err)
  process.exit(1)
}

Or with postcss-cli:

cat index.css | postcss --use @emilbayes/css-pipeline > bundle.css

API

pipeline(opts)

Returns a PostCSS plugin.

  • opts.debug, also available through the DEBUG env var. Defaults to false
  • opts.rtl, also available through the RTL env var. Defaults to false

Install

npm install @emilbayes/css-pipeline

License

ISC

Dependencies (10)

Dev Dependencies (1)

Package Sidebar

Install

npm i @emilbayes/css-pipeline

Weekly Downloads

1

Version

2.0.0

License

none

Unpacked Size

4.96 kB

Total Files

7

Last publish

Collaborators

  • emilbayes