instructure-react / react-tinymce

React TinyMCE component
181 stars 115 forks source link

Incompatible with newer versions of Lodash (v4.17.2) #52

Open alex-paterson opened 7 years ago

alex-paterson commented 7 years ago

If you're seeing Module not found: Error: Cannot resolve module 'lodash/lang/isEqual', and/or Module not found: Error: Cannot resolve module 'lodash/lang/clone:

See react-tinymce/lib/components/TinyMCE.js near top of file:

var _lodashLangIsEqual = require('lodash/lang/isEqual'); -> var _lodashLangIsEqual = require('lodash/lang').isEqual;

var _lodashLangClone = require('lodash/lang/clone'); -> var _lodashLangClone = require('lodash/lang').clone;

thoregan commented 7 years ago

56 here is the fix

starandtina commented 7 years ago

Hi @alex-paterson Do you fix it?