grunt-contrib-less
Advanced tools
Comparing version 0.11.3 to 0.11.4
{ | ||
"name": "grunt-contrib-less", | ||
"description": "Compile LESS files to CSS.", | ||
"version": "0.11.3", | ||
"version": "0.11.4", | ||
"homepage": "https://github.com/gruntjs/grunt-contrib-less", | ||
@@ -30,7 +30,7 @@ "author": { | ||
"dependencies": { | ||
"less": "~1.7.2", | ||
"chalk": "^0.4.0", | ||
"maxmin": "^0.1.0", | ||
"async": "^0.2.10", | ||
"chalk": "^0.5.1", | ||
"less": "^1.7.2", | ||
"lodash": "^2.4.1", | ||
"async": "^0.2.10" | ||
"maxmin": "^0.1.0" | ||
}, | ||
@@ -46,3 +46,3 @@ "devDependencies": { | ||
"peerDependencies": { | ||
"grunt": "^0.4.0" | ||
"grunt": "~0.4.0" | ||
}, | ||
@@ -49,0 +49,0 @@ "keywords": [ |
@@ -1,2 +0,2 @@ | ||
# grunt-contrib-less v0.11.3 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-less.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-less) <a href="https://ci.appveyor.com/project/gruntjs/grunt-contrib-less"><img src="https://ci.appveyor.com/api/projects/status/e3aa4d07xe4w4u05/branch/master" alt="Build Status: Windows" height="18" /></a> | ||
# grunt-contrib-less v0.11.4 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-less.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-less) <a href="https://ci.appveyor.com/project/gruntjs/grunt-contrib-less"><img src="https://ci.appveyor.com/api/projects/status/e3aa4d07xe4w4u05/branch/master" alt="Build Status: Windows" height="18" /></a> | ||
@@ -8,3 +8,3 @@ > Compile LESS files to CSS. | ||
## Getting Started | ||
This plugin requires Grunt `^0.4.0` | ||
This plugin requires Grunt `~0.4.0` | ||
@@ -188,2 +188,7 @@ If you haven't used [Grunt](http://gruntjs.com/) before, be sure to check out the [Getting Started](http://gruntjs.com/getting-started) guide, as it explains how to create a [Gruntfile](http://gruntjs.com/sample-gruntfile) as well as install and use Grunt plugins. Once you're familiar with that process, you may install this plugin with this command: | ||
#### banner | ||
Type: `String` | ||
Default: none | ||
### Usage Examples | ||
@@ -220,2 +225,3 @@ | ||
* ---------- v0.11.4 Fix 'banner', 'urlArgs' LESS options Fixes npm 2 peerDependencies issues | ||
* 2014-06-20 v0.11.3 Update to Less ~1.7.2. | ||
@@ -252,2 +258,2 @@ * 2014-06-01 v0.11.2 Lock to less 1.7.0. | ||
*This file was generated on Fri Jun 20 2014 13:09:28.* | ||
*This file was generated on Tue Jul 29 2014 14:43:30.* |
@@ -20,4 +20,5 @@ /* | ||
var lessOptions = { | ||
parse: ['paths', 'optimization', 'filename', 'strictImports', 'syncImport', 'dumpLineNumbers', 'relativeUrls', 'rootpath'], | ||
render: ['compress', 'cleancss', 'ieCompat', 'strictMath', 'strictUnits', | ||
parse: ['paths', 'optimization', 'filename', 'strictImports', 'syncImport', 'dumpLineNumbers', 'relativeUrls', | ||
'rootpath'], | ||
render: ['compress', 'cleancss', 'ieCompat', 'strictMath', 'strictUnits', 'urlArgs', | ||
'sourceMap', 'sourceMapFilename', 'sourceMapURL', 'sourceMapBasepath', 'sourceMapRootpath', 'outputSourceFiles'] | ||
@@ -30,3 +31,4 @@ }; | ||
var options = this.options({ | ||
report: 'min' | ||
report: 'min', | ||
banner: '' | ||
}); | ||
@@ -115,2 +117,5 @@ | ||
var parser = new less.Parser(_.pick(options, lessOptions.parse)); | ||
var additionalData = { | ||
banner: options.banner | ||
}; | ||
@@ -157,3 +162,3 @@ // Equivalent to --modify-vars option. | ||
} | ||
}); | ||
}, additionalData); | ||
}; | ||
@@ -160,0 +165,0 @@ |
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
17001
169
256
+ Addedansi-regex@0.2.1(transitive)
+ Addedansi-styles@1.1.0(transitive)
+ Addedchalk@0.5.1(transitive)
+ Addedescape-string-regexp@1.0.5(transitive)
+ Addedhas-ansi@0.1.0(transitive)
+ Addedstrip-ansi@0.3.0(transitive)
+ Addedsupports-color@0.2.0(transitive)
Updatedchalk@^0.5.1
Updatedless@^1.7.2