Skip to content
This repository has been archived by the owner on Jun 26, 2020. It is now read-only.

Commit

Permalink
Merge pull request #20 from ckeditor/t/ckeditor5-utils/251
Browse files Browse the repository at this point in the history
Internal: Replaced `ckeditor5-uitls/src/lib/lodash` imports with `lodash-es`.
  • Loading branch information
scofalik authored Aug 8, 2018
2 parents d81b203 + 9aa5157 commit 5a62203
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
"@ckeditor/ckeditor5-engine": "^10.2.0",
"@ckeditor/ckeditor5-theme-lark": "^11.0.0",
"@ckeditor/ckeditor5-ui": "^11.0.0",
"@ckeditor/ckeditor5-utils": "^10.2.0"
"@ckeditor/ckeditor5-utils": "^10.2.0",
"lodash-es": "^4.17.10"
},
"devDependencies": {
"@ckeditor/ckeditor5-basic-styles": "^10.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/decouplededitor.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import DecoupledEditorUIView from './decouplededitoruiview';
import getDataFromElement from '@ckeditor/ckeditor5-utils/src/dom/getdatafromelement';
import setDataInElement from '@ckeditor/ckeditor5-utils/src/dom/setdatainelement';
import mix from '@ckeditor/ckeditor5-utils/src/mix';
import isElement from '@ckeditor/ckeditor5-utils/src/lib/lodash/isElement';
import { isElement } from 'lodash-es';

/**
* The {@glink builds/guides/overview#decoupled-editor decoupled editor} implementation.
Expand Down

0 comments on commit 5a62203

Please sign in to comment.