Skip to content

Commit

Permalink
lodash 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rjrodger committed Jan 25, 2016
1 parent 39e69a1 commit 121b84c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
"gate-executor": "0.3.2",
"gex": "0.2.2",
"jsonic": "0.2.2",
"lodash": "3.10.1",
"lodash": "4.0.0",
"lru-cache": "4.0.0",
"minimist": "1.2.0",
"nid": "0.3.2",
Expand Down
4 changes: 2 additions & 2 deletions seneca.js
Original file line number Diff line number Diff line change
Expand Up @@ -469,8 +469,8 @@ function make_seneca (initial_options) {
var deps = args.deps || args.moredeps

_.every(deps, function (depname) {
if (!_.contains(private$.plugin_order.byname, depname) &&
!_.contains(private$.plugin_order.byname, 'seneca-' + depname)) {
if (!_.includes(private$.plugin_order.byname, depname) &&
!_.includes(private$.plugin_order.byname, 'seneca-' + depname)) {
self.die(internals.error('plugin_required', { name: args.pluginname, dependency: depname }))
return false
}
Expand Down
1 change: 0 additions & 1 deletion test/transport.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -841,7 +841,6 @@ describe('transport', function () {
.error(done)
.use(bt)

// TODO: fix the options hack in balance-client
.client({type: 'balance', pin: 'foo:1'})

.client({port: 44440, pin: 'foo:1'})
Expand Down

0 comments on commit 121b84c

Please sign in to comment.