1.0.0 • Published 10 years ago

sheetify-calc v1.0.0

Weekly downloads
4
License
MIT
Repository
github
Last release
10 years ago

sheetify-calc

NPM version build status Test coverage Downloads

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.

Installation

npm install sheetify-calc

Usage

As a sheetify transform:

var calc = require('sheetify-calc');
var sheetify = require('sheetify');

sheetify('path/to/my/index.css')
  .transform(calc())
  .bundle();

License

MIT