Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Use lodash directly instead of deprecated grunt.util._
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Jan 29, 2014
1 parent 75122db commit a85eeb2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@
},
"dependencies": {
"coffee-script": "~1.7.0",
"chalk": "~0.4.0"
"chalk": "~0.4.0",
"lodash": "~2.4.1"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.6.4",
Expand Down
3 changes: 1 addition & 2 deletions tasks/coffee.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,9 @@
module.exports = function(grunt) {
var path = require('path');
var chalk = require('chalk');
var _ = grunt.util._;
var _ = require('lodash');

grunt.registerMultiTask('coffee', 'Compile CoffeeScript files into JavaScript', function() {

var options = this.options({
bare: false,
join: false,
Expand Down

0 comments on commit a85eeb2

Please sign in to comment.