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

Commit

Permalink
Replace underscore with lodash.
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffano committed Aug 25, 2013
1 parent 8a62b36 commit e59236a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion lib/cli.js
@@ -1,4 +1,4 @@
var _ = require('underscore'),
var _ = require('lodash'),
cli = require('bagofcli'),
Couchpenter = require('./couchpenter');

Expand Down
2 changes: 1 addition & 1 deletion lib/couchpenter.js
@@ -1,4 +1,4 @@
var _ = require('underscore'),
var _ = require('lodash'),
async = require('async'),
cli = require('bagofcli'),
cron = require('cron'),
Expand Down
2 changes: 1 addition & 1 deletion lib/db.js
@@ -1,4 +1,4 @@
var _ = require('underscore'),
var _ = require('lodash'),
async = require('async'),
clone = require('clone'),
nano = require('nano'),
Expand Down
4 changes: 2 additions & 2 deletions package.json
Expand Up @@ -36,8 +36,8 @@
"clone": "~0.1.10",
"cron": "~1.0.1",
"fs.extra": "~1.2.1",
"nano": "~4.1.1",
"underscore": "~1.5.1"
"lodash": "~1.3.1",
"nano": "~4.1.1"
},
"devDependencies": {
"buster": "~0.6.12"
Expand Down
2 changes: 1 addition & 1 deletion test/db.js
@@ -1,4 +1,4 @@
var _ = require ('underscore'),
var _ = require ('lodash'),
buster = require('buster'),
Db = require('../lib/db'),
req = require('bagofrequest');
Expand Down

0 comments on commit e59236a

Please sign in to comment.