Skip to content

Commit

Permalink
Merge f5f3421 into 4a386de
Browse files Browse the repository at this point in the history
  • Loading branch information
dbryantm committed Oct 15, 2018
2 parents 4a386de + f5f3421 commit 850c08b
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 7 deletions.
28 changes: 27 additions & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 5 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,11 @@
"dependencies": {
"arrify": "^1.0.1",
"bluebird": "^3.5.1",
"lodash": "^4.17.10",
"lodash.intersection": "^4.4.0",
"lodash.isboolean": "^3.0.3",
"lodash.isfunction": "^3.0.9",
"lodash.isinteger": "^4.0.4",
"lodash.isstring": "^4.0.1",
"md5": "^2.2.1",
"uniqueid": "^1.0.0"
}
Expand Down
2 changes: 1 addition & 1 deletion src/ConflictResolution.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const intersection = require('lodash/intersection');
const intersection = require('lodash.intersection');

class ConflictResolution {
constructor({ strategy = 'ps', logger }) {
Expand Down
8 changes: 4 additions & 4 deletions src/Rule.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const isBoolean = require('lodash/isBoolean');
const isFunction = require('lodash/isFunction');
const isInteger = require('lodash/isInteger');
const isString = require('lodash/isString');
const isBoolean = require('lodash.isboolean');
const isFunction = require('lodash.isfunction');
const isInteger = require('lodash.isinteger');
const isString = require('lodash.isstring');
const assert = require('assert');
const arrify = require('arrify');

Expand Down

0 comments on commit 850c08b

Please sign in to comment.