Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-contrib-less

Package Overview
Dependencies
Maintainers
6
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-contrib-less - npm Package Compare versions

Comparing version 0.11.3 to 0.11.4

12

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc