cssnext transform for sheetify. Use tomorrow's CSS syntax, today.
$ npm install sheetify-cssnext
const sheetify = require('sheetify')
const path = require('path')
const opts = {
use: [ [ 'sheetify-cssnext', { sourcemap: false } ] ],
basedir: __dirname
}
sheetify(path.join(__dirname, 'index.css'), opts)
.pipe(process.stdout)