pleeease-filters
Advanced tools
Comparing version 2.0.0 to 3.0.0
@@ -0,1 +1,5 @@ | ||
# 3.0.0 - 2016-04-01 | ||
- Export as a PostCSS plugin. Now returns a [LazyResult instance](https://github.com/postcss/postcss/blob/master/docs/api.md#lazyresult-class) instead of processed css. | ||
# 2.0.0 - 2015-09-14 | ||
@@ -2,0 +6,0 @@ |
11
index.js
@@ -646,9 +646,4 @@ var postcss = require('postcss'); | ||
var filter = function (options) { | ||
return new Filter(options); | ||
}; | ||
filter.process = function (css, options) { | ||
return new Filter(options).process(css); | ||
}; | ||
module.exports = filter; | ||
module.exports = postcss.plugin('pleeease-filters', function(options) { | ||
return new Filter(options).postcss; | ||
}); |
{ | ||
"name": "pleeease-filters", | ||
"version": "2.0.0", | ||
"version": "3.0.0", | ||
"description": "Convert CSS shorthand filters to SVG ones", | ||
@@ -5,0 +5,0 @@ "author": { |
19803
529