less 4.4.1 → 4.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/less.js +9 -3
- package/dist/less.min.js +2 -2
- package/dist/less.min.js.map +1 -1
- package/lib/less/parser/parser.js +6 -0
- package/lib/less/parser/parser.js.map +1 -1
- package/lib/less/tree/nested-at-rule.js +1 -1
- package/lib/less/tree/nested-at-rule.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.json +20 -20
|
@@ -1799,6 +1799,9 @@ var Parser = function Parser(context, imports, fileInfo, currentIndex) {
|
|
|
1799
1799
|
if (!parserInput.$char(',')) {
|
|
1800
1800
|
break;
|
|
1801
1801
|
}
|
|
1802
|
+
else if (!features[features.length - 1].noSpacing) {
|
|
1803
|
+
features[features.length - 1].noSpacing = false;
|
|
1804
|
+
}
|
|
1802
1805
|
}
|
|
1803
1806
|
else {
|
|
1804
1807
|
e = entities.variable() || entities.mixinLookup();
|
|
@@ -1807,6 +1810,9 @@ var Parser = function Parser(context, imports, fileInfo, currentIndex) {
|
|
|
1807
1810
|
if (!parserInput.$char(',')) {
|
|
1808
1811
|
break;
|
|
1809
1812
|
}
|
|
1813
|
+
else if (!features[features.length - 1].noSpacing) {
|
|
1814
|
+
features[features.length - 1].noSpacing = false;
|
|
1815
|
+
}
|
|
1810
1816
|
}
|
|
1811
1817
|
}
|
|
1812
1818
|
} while (e);
|