Skip to content

Commit

Permalink
replaced underscore with lodash and bumped up version
Browse files Browse the repository at this point in the history
  • Loading branch information
oddjobsman committed Jan 8, 2014
1 parent 1c3a38d commit 2c899cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
'use strict';

var path = require('path');
var _ = require('underscore');
var _ = require('lodash');
var es = require('event-stream');
var gutil = require('gulp-util');
var sloc = require('sloc');
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gulp-sloc",
"version": "1.0.0",
"version": "1.0.1",
"description": "A port of the grunt-sloc plugin for gulp",
"main": "index.js",
"scripts": {
Expand All @@ -25,8 +25,8 @@
"gulp": "~3.2.2",
"gulp-util": "~2.2.5",
"event-stream": "~3.0.20",
"underscore": "~1.5.2",
"mkdirp": "~0.3.5"
"mkdirp": "~0.3.5",
"lodash": "~2.4.1"
},
"devDependencies": {
"expect.js": "~0.2.0",
Expand Down
2 changes: 1 addition & 1 deletion test/intercept_stdout.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// originally from the gist - https://gist.github.com/benbuckman/2758563#file-intercept-stdout-js
// thanks to https://github.com/benbuckman for this!
var _ = require('underscore'),
var _ = require('lodash'),
util = require('util');

// intercept stdout, passes thru callback
Expand Down
2 changes: 1 addition & 1 deletion test/sloc.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
var path = require('path');
var util = require('util')

var _ = require('underscore');
var _ = require('lodash');
var expect = require('expect.js');
var gutil = require('gulp-util');

Expand Down

0 comments on commit 2c899cd

Please sign in to comment.