Skip to content

Commit

Permalink
rename contrib-lib dep to lib-contrib
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Kellen committed Oct 12, 2012
1 parent b6f01e4 commit fd277c5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
@@ -1,3 +1,7 @@
v0.3.1:
date: 2012-10-12
changes:
- Rename grunt-contrib-lib dep to grunt-lib-contrib.
v0.3.0:
date: 2012-09-24
changes:
Expand Down
4 changes: 2 additions & 2 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "grunt-contrib-less",
"description": "Compile LESS files to CSS.",
"version": "0.3.0",
"version": "0.3.1",
"homepage": "https://github.com/gruntjs/grunt-contrib-less",
"author": {
"name": "Grunt Team",
Expand Down Expand Up @@ -29,7 +29,7 @@
},
"dependencies": {
"less": "~1.3.0",
"grunt-contrib-lib": "~0.3.0"
"grunt-lib-contrib": "~0.3.0"
},
"devDependencies": {
"grunt": "~0.3.15",
Expand Down
2 changes: 1 addition & 1 deletion tasks/less.js
Expand Up @@ -22,7 +22,7 @@ module.exports = function(grunt) {
};

grunt.registerMultiTask('less', 'Compile LESS files to CSS', function() {
var helpers = require('grunt-contrib-lib').init(grunt);
var helpers = require('grunt-lib-contrib').init(grunt);

var options = helpers.options(this, {
basePath: false,
Expand Down

0 comments on commit fd277c5

Please sign in to comment.