2.0.3 • Published 6 years ago

@vkontakte/graph-cache-less v2.0.3

Weekly downloads
5
License
MIT
Repository
-
Last release
6 years ago

graph-cache-less

This is a LESS parser for graph-cache library.

Installation

npm install --save graph-cache-less

Usage

const createGraphCache = require('graph-cache');
const lessParser = require('graph-cache-less');

function parser(lessOpts, sign, file, filename) {
  return lessParser(sign, file, filename, lessOpts);
}

const gcache = createGraphCache(parser.bind(null, lessOpts), sign, {});

lessOpts — options that will be passed directly to LESS compiler.

Testing

This library is tested using Mocha and Chai. You can run test suit with npm test. You can run npm run test-watch to rerun tests on file updates.

Contributing

Issues and PR's are welcomed here.