clean-css-cli
Advanced tools
Comparing version 4.1.10 to 4.1.11
@@ -0,1 +1,6 @@ | ||
[4.1.11 / 2018-03-02](https://github.com/jakubpawlowicz/clean-css-cli/compare/v4.1.10...v4.1.11) | ||
================== | ||
* Fixed issue [#17](https://github.com/jakubpawlowicz/clean-css-cli/issues/17) - empty `--inline` switch. | ||
[4.1.10 / 2017-09-19](https://github.com/jakubpawlowicz/clean-css-cli/compare/v4.1.9...v4.1.10) | ||
@@ -2,0 +7,0 @@ ================== |
@@ -147,3 +147,3 @@ var fs = require('fs'); | ||
format: commands.format, | ||
inline: commands.inline || 'local', | ||
inline: typeof commands.inline == 'string' ? commands.inline : 'local', | ||
inlineTimeout: commands.inlineTimeout * 1000, | ||
@@ -150,0 +150,0 @@ level: commands.O0 || commands.O1 || commands.O2 ? |
{ | ||
"name": "clean-css-cli", | ||
"version": "4.1.10", | ||
"version": "4.1.11", | ||
"description": "A command-line interface to clean-css CSS optimization library", | ||
@@ -5,0 +5,0 @@ "scripts": { |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
39513