Compare commits

...

3 Commits

@ -76,6 +76,10 @@ Plugin options (all optional):
## Changelog
### v1.1.1 (February 16, 2020)
- __Bug__:__ Removed stray console.log call.
### v1.1.0 (February 15, 2020)
- __Improvement:__ Now actually explicitly validates the `options` you specify and gives you a helpful error message, instead of a cryptic one.

@ -43,8 +43,6 @@ function setupPipeline(browserify, options) {
}
module.exports = function (browserify, options) {
console.log(options);
validateArguments(arguments, [
[ "browserify" ],
[ "options", allowExtraProperties({

@ -1,6 +1,6 @@
{
"name": "icssify",
"version": "1.1.0",
"version": "1.1.1",
"description": "A Browserify plugin for handling CSS (through PostCSS), with **full and correct support** for ICSS and CSS modules.",
"main": "index.js",
"repository": {

Loading…
Cancel
Save