We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 43ddaf5 commit d4d7378Copy full SHA for d4d7378
README.md
@@ -6,13 +6,13 @@ Compresses the css output from less using [clean-css](https://github.com/jakubpa
6
7
## lessc usage
8
9
-```
+```bash
10
npm install -g less-plugin-clean-css
11
```
12
13
and then on the command line,
14
15
16
lessc file.less --clean-css="--s1 --advanced --compatibility=ie8"
17
18
lib/clean-css-processor.js
@@ -43,7 +43,7 @@ module.exports = function() {
43
44
if (sourceMap) {
45
if (sourcesContent) {
46
- for (var source = 0; source < sources.length; source++) {
+ for (let source = 0; source < sources.length; source++) {
47
output.sourceMap.setSourceContent(sources[source], sourcesContent[source]);
48
}
49
0 commit comments