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 1.2.0 to 1.3.0

17

package.json
{
"name": "grunt-contrib-less",
"description": "Compile LESS files to CSS",
"version": "1.2.0",
"version": "1.3.0",
"author": {

@@ -19,14 +19,13 @@ "name": "Grunt Team",

"dependencies": {
"async": "^0.9.0",
"async": "^1.5.2",
"chalk": "^1.0.0",
"less": "~2.6.0",
"lodash": "^3.2.0"
"lodash": "^4.8.2"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-internal": "^0.4.12",
"grunt-contrib-jshint": "^0.11.0",
"grunt-contrib-nodeunit": "^0.4.1",
"grunt": "^1.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-internal": "^1.1.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"less-plugin-clean-css": "^1.5.0"

@@ -33,0 +32,0 @@ },

@@ -1,2 +0,2 @@

# grunt-contrib-less v1.2.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-less.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-less) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/e3aa4d07xe4w4u05/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-less/branch/master)
# grunt-contrib-less v1.3.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-less.svg?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-less) [![Build Status: Windows](https://ci.appveyor.com/api/projects/status/e3aa4d07xe4w4u05/branch/master?svg=true)](https://ci.appveyor.com/project/gruntjs/grunt-contrib-less/branch/master)

@@ -54,3 +54,3 @@ > Compile LESS files to CSS

Allows passing plugins
Allows passing plugins.

@@ -176,6 +176,6 @@ #### ieCompat

options: {
paths: ["assets/css"]
paths: ['assets/css']
},
files: {
"path/to/result.css": "path/to/source.less"
'path/to/result.css': 'path/to/source.less'
}

@@ -185,3 +185,3 @@ },

options: {
paths: ["assets/css"],
paths: ['assets/css'],
plugins: [

@@ -197,3 +197,3 @@ new (require('less-plugin-autoprefix'))({browsers: ["last 2 versions"]}),

files: {
"path/to/result.css": "path/to/source.less"
'path/to/result.css': 'path/to/source.less'
}

@@ -207,32 +207,33 @@ }

* 2016-02-01   v1.2.0   Update to less ~2.6.0 removed peerDependency from package.json
* 2015-11-09   v1.1.0   Update to less ~2.5.0
* 2014-12-23   v1.0.0   Update to less 2.1.0
* 2014-10-23   v0.12.0   Added cleancssOptions as a option. When possible, includes filename for failed writes. Ensure banner only outputs on the first file in a series.
* 2014-07-29   v0.11.4   Fix 'banner', 'urlArgs' LESS options Fixes npm 2 peerDependencies issues
* 2016-04-07   v1.3.0   Update lodash and async dependecies.
* 2016-02-01   v1.2.0   Update to less ~2.6.0. Removed peerDependency from package.json.
* 2015-11-09   v1.1.0   Update to less ~2.5.0.
* 2014-12-23   v1.0.0   Update to less 2.1.0.
* 2014-10-23   v0.12.0   Added `cleancssOptions` as an option. When possible, includes filename for failed writes. Ensure banner only outputs on the first file in a series.
* 2014-07-29   v0.11.4   Fix `banner` and `urlArgs` LESS options. Fixes npm 2 peerDependencies issues.
* 2014-06-20   v0.11.3   Update to Less ~1.7.2.
* 2014-06-01   v0.11.2   Lock to less 1.7.0.
* 2014-05-26   v0.11.1   Fix `modifyVars` to work when less file ends with a comment.
* 2014-03-19   v0.11.0   Custom functions can return types defined by less paths option now accepts a function Replaced deprecated grunt.util methods Removes deprecated grunt.lib.contrib
* 2014-03-01   v0.10.0   sourceMapBasepath accepts a function. Update copyright to 2014. Update .gitattributes. Update less.js to v1.7.0. Prevent CRLF in the repo. Adds modify-vars option. Changed to async stack call. Fixes data-uri test. Normalize line endings on tests.
* 2014-01-07   v0.9.0   Bump to less 1.6
* 2013-12-06   v0.8.3   Support sourceMapURL
* 2013-11-14   v0.8.2   Support outputSourceFiles
* 2013-10-24   v0.8.1   Support sourceMapFilename, sourceMapBasepath and sourceMapRootpath
* 2013-10-22   v0.8.0   Upgrade to LESS 1.5 Support strictUnits option Support sourceMap option Add customFunctions option for defining custom functions within LESS Output the source file name on error yuicompress option now cleancss (Less changed underlying dependency)
* 2013-08-08   v0.7.0   Downgrade no source files warning to only in verbose mode
* 2013-08-08   v0.6.5   Support strictMath option Support rootpath parse option
* 2013-07-09   v0.6.4   Support relativeUrls option
* 2013-07-06   v0.6.3   Add report option for minification and gzip results
* 2013-07-03   v0.6.2   support syncImport
* 2013-06-12   v0.6.1   Support ieCompat
* 2013-06-09   v0.6.0   Bump less to 1.4.0
* 2014-03-19   v0.11.0   Custom functions can return types defined by less. `paths` option now accepts a function. Replaced deprecated `grunt.util` methods. Removes deprecated `grunt.lib.contrib`.
* 2014-03-01   v0.10.0   `sourceMapBasepath` accepts a function. Update copyright to 2014. Update .gitattributes. Update less.js to v1.7.0. Prevent CRLF in the repo. Adds modify-vars option. Changed to async stack call. Fixes data-uri test. Normalize line endings on tests.
* 2014-01-07   v0.9.0   Bump to less 1.6.
* 2013-12-06   v0.8.3   Support `sourceMapURL`.
* 2013-11-14   v0.8.2   Support `outputSourceFiles`.
* 2013-10-24   v0.8.1   Support `sourceMapFilename`, `sourceMapBasepath` and `sourceMapRootpath`.
* 2013-10-22   v0.8.0   Upgrade to LESS 1.5. Support `strictUnits` option. Support `sourceMap` option. Add `customFunctions` option for defining custom functions within LESS. Output the source file name on error. `yuicompress` option now cleancss (Less changed underlying dependency)
* 2013-08-08   v0.7.0   Downgrade no source files warning to only in verbose mode.
* 2013-08-08   v0.6.5   Support `strictMath` option. Support `rootpath` parse option.
* 2013-07-09   v0.6.4   Support `relativeUrls` option.
* 2013-07-06   v0.6.3   Add `report` option for minification and gzip results.
* 2013-07-03   v0.6.2   support `syncImport`.
* 2013-06-12   v0.6.1   Support `ieCompat`.
* 2013-06-09   v0.6.0   Bump less to 1.4.0.
* 2013-05-23   v0.5.2   Improve error handling.
* 2013-04-25   v0.5.1   Gracefully handle configuration without sources.
* 2013-02-15   v0.5.0   First official release for Grunt 0.4.0.
* 2013-01-23   v0.5.0rc7   Updating grunt/gruntplugin dependencies to rc7. Changing in-development grunt/gruntplugin dependency versions from tilde version ranges to specific versions. Remove experimental wildcard destination support. Switching to this.files api.
* 2012-10-18   v0.3.2   Add support for dumpLineNumbers.
* 2013-01-23   v0.5.0rc7   Updating grunt/gruntplugin dependencies to rc7. Changing in-development grunt/gruntplugin dependency versions from tilde version ranges to specific versions. Remove experimental wildcard destination support. Switching to `this.files` API.
* 2012-10-18   v0.3.2   Add support for `dumpLineNumbers`.
* 2012-10-12   v0.3.1   Rename grunt-contrib-lib dep to grunt-lib-contrib.
* 2012-09-24   v0.3.0   Global options depreciated Revert normalize linefeeds.
* 2012-09-16   v0.2.2   Support all less options Normalize linefeeds Default path to dirname of src file.
* 2012-09-24   v0.3.0   Global options depreciated. Revert normalize linefeeds.
* 2012-09-16   v0.2.2   Support all less options. Normalize linefeeds. Default path to dirname of src file.
* 2012-09-10   v0.2.0   Refactored from grunt-contrib into individual repo.

@@ -244,2 +245,2 @@

*This file was generated on Mon Feb 01 2016 10:55:38.*
*This file was generated on Thu Apr 07 2016 15:26:05.*

@@ -171,3 +171,3 @@ /*

var parseVariableOptions = function(options) {
var pairs = _.pairs(options);
var pairs = _.toPairs(options);
var output = '';

@@ -174,0 +174,0 @@ pairs.forEach(function(pair) {

Sorry, the diff of this file is not supported yet

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