Skip to content

Commit

Permalink
Explicit lodash dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
timdp committed Dec 23, 2015
1 parent a76324d commit 75fd96b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@
"bottleneck": "^1.8.1",
"debug": "^2.2.0",
"defaults": "^1.0.2",
"lodash": "^3.10.1",
"lodash.find": "^3.2.1",
"lodash.isempty": "^3.0.4",
"winston": "^2.1.1"
},
"devDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/cloudwatch-client.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const debug = _debug('winston-aws-cloudwatch:CloudWatchClient')
import AWS from 'aws-sdk'
import Promise from 'bluebird'
import defaults from 'defaults'
import {find} from 'lodash'
import find from 'lodash.find'
import CloudWatchEventFormatter from './cloudwatch-event-formatter'

export default class CloudWatchClient {
Expand Down
2 changes: 1 addition & 1 deletion src/lib/cloudwatch-event-formatter.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
'use strict'

import {isEmpty} from 'lodash'
import isEmpty from 'lodash.isempty'

export default class CloudWatchEventFormatter {
static formatLogItem (item) {
Expand Down

0 comments on commit 75fd96b

Please sign in to comment.