Compare commits

...

3 Commits

@ -76,6 +76,10 @@ Plugin options (all optional):
## Changelog ## Changelog
### v1.1.1 (February 16, 2020)
- __Bug__:__ Removed stray console.log call.
### v1.1.0 (February 15, 2020) ### 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. - __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) { module.exports = function (browserify, options) {
console.log(options);
validateArguments(arguments, [ validateArguments(arguments, [
[ "browserify" ], [ "browserify" ],
[ "options", allowExtraProperties({ [ "options", allowExtraProperties({

@ -1,6 +1,6 @@
{ {
"name": "icssify", "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.", "description": "A Browserify plugin for handling CSS (through PostCSS), with **full and correct support** for ICSS and CSS modules.",
"main": "index.js", "main": "index.js",
"repository": { "repository": {

Loading…
Cancel
Save