A sheetify transform to add support for
W3C-style CSS calc
syntax. Uses rework-calc
to perform the transformation.
When multiple units are mixed together in the same expression, the calc()
statement is left as is, to fallback to the CSS3 calc feature.
N.B. This is not a polyfill. This transform aims to provide a future-proof way of using a limited subset of the features provided by native CSS custom media queries.
npm install sheetify-calc
As a sheetify transform:
var calc = require('sheetify-calc');
var sheetify = require('sheetify');
sheetify('path/to/my/index.css')
.transform(calc())
.bundle();