Skip to content

Commit 05d0f27

Browse files
authored
Merge pull request #68 from ryankshaw/master
Change lodash dependency to >=4.0
2 parents edf674e + 438be52 commit 05d0f27

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/components/TinyMCE.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import React from 'react';
22
import { findDOMNode } from 'react-dom';
3-
import isEqual from 'lodash/lang/isEqual';
4-
import clone from 'lodash/lang/clone';
3+
import isEqual from 'lodash/isEqual';
4+
import clone from 'lodash/clone';
55
import uuid from '../helpers/uuid';
66
import ucFirst from '../helpers/ucFirst';
77

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"react-dom": "^15.0.0"
2929
},
3030
"dependencies": {
31-
"lodash": "^3.9.3"
31+
"lodash": ">=4.0.0"
3232
}
3333
}

0 commit comments

Comments
 (0)