less 3.8.1 → 3.9.0
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/CHANGELOG.md +19 -0
- package/Gruntfile.js +2 -1
- package/dist/less.js +254 -2136
- package/dist/less.min.js +7 -7
- package/lib/less/functions/list.js +44 -9
- package/lib/less/index.js +1 -1
- package/lib/less/tree/variable-call.js +6 -3
- package/package.json +1 -2
- package/test/browser/less.js +254 -2136
- package/test/css/functions-each.css +34 -0
- package/test/less/functions-each.less +51 -1
- package/test/less-bom/functions-each.less +51 -1
- package/test/css/3rd-party/bootstrap.css +0 -6814
- package/test/less/3rd-party/bootstrap.less +0 -1
- package/test/less-bom/3rd-party/bootstrap.less +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,22 @@
|
|
|
1
|
+
## 3.9.0
|
|
2
|
+
|
|
3
|
+
2018-11-28
|
|
4
|
+
- Added `range([start=1], end, [step=1])` function to generate lists
|
|
5
|
+
- Fixes #3325 #3313 #3328
|
|
6
|
+
|
|
7
|
+
## 3.8.1
|
|
8
|
+
|
|
9
|
+
2018-08-07
|
|
10
|
+
- Fixes for sourcemaps and color functions
|
|
11
|
+
- Support for #RRGGBBAA color format
|
|
12
|
+
- Allows conversion of colors to `rgba()` or `hsla()`
|
|
13
|
+
- Pass-through output of unknown properties in color functions (allows `var(--color)` for example)
|
|
14
|
+
|
|
15
|
+
## 3.8.0
|
|
16
|
+
|
|
17
|
+
2018-07-22
|
|
18
|
+
- New feature: added rewrite urls to replace relative url option. Adds "local" option for modules
|
|
19
|
+
|
|
1
20
|
## 3.7.1
|
|
2
21
|
|
|
3
22
|
2018-07-11
|