stylecow-plugins
v1.5.2
Published
All stylecow plugins
Downloads
7
Readme
Stylecow plugins
All stylecow plugins ready to use. More info
Simple usage:
var stylecow = require('stylecow-core');
var plugins = require('stylecow-plugins');
//get all available plugins:
console.log(plugins.getAll());
//Use all available plugins:
var tasks = (new stylecow.Tasks()).use(plugins());
//Use only some plugins:
var tasks = (new stylecow.Tasks()).use(plugins(['prefixes', 'import', 'nested-rules']));