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 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
package/Gruntfile.js CHANGED
@@ -227,7 +227,8 @@ module.exports = function (grunt) {
227
227
  options: {
228
228
  exclude: ['promise'],
229
229
  browserifyOptions: {
230
- standalone: 'less'
230
+ standalone: 'less',
231
+ noParse: ['clone']
231
232
  }
232
233
  },
233
234
  dest: 'tmp/less.js'