From 78fb0c274fd77e0d95d2d1a9422001a715572651 Mon Sep 17 00:00:00 2001 From: Andrey Sitnik Date: Mon, 2 Feb 2015 21:29:39 +0300 Subject: [PATCH] Use common PostCSS plugins API --- index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/index.js b/index.js index 6c2be2a..4ea267f 100644 --- a/index.js +++ b/index.js @@ -158,3 +158,7 @@ module.exports = function (options) { }); }; }; + +module.exports.postcss = function (cssTree) { + module.exports()(cssTree); +}