Skip to content

Commit

Permalink
Replace underscore with lodash
Browse files Browse the repository at this point in the history
  • Loading branch information
aleung committed Feb 11, 2019
1 parent 3194896 commit b8ba391
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 3 deletions.
1 change: 1 addition & 0 deletions .yarnrc
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
registry "http://ses-npm.sh.cn.ao.ericsson.se"
save-prefix false
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Change Log of `@jigsaw/node-zookeeper-client`

## unpublished

- Replace `underscore` with `lodash`

## 0.2.3

Same as original `node-zookeeper-client`, publish under `@jigsaw` scope.
Expand Down
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var util = require('util');
var net = require('net');

var async = require('async');
var u = require('underscore');
var u = require('lodash');

var jute = require('./lib/jute');
var ACL = require('./lib/ACL.js');
Expand Down
2 changes: 1 addition & 1 deletion lib/ConnectionStringParser.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@


var assert = require('assert');
var u = require('underscore');
var u = require('lodash');
var Path = require('./Path.js');

// Constants.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
},
"dependencies": {
"async": "~0.2.7",
"underscore": "~1.4.4"
"lodash": "4.17.11"
},
"licenses": [
{
Expand Down

0 comments on commit b8ba391

Please sign in to comment.