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 #76 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 826950a + 88ad293 commit 8b36d66
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/classiceditor.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import ClassicEditorUIView from './classiceditoruiview';
import ElementReplacer from '@ckeditor/ckeditor5-utils/src/elementreplacer';
import getDataFromElement from '@ckeditor/ckeditor5-utils/src/dom/getdatafromelement';
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#classic-editor classic editor} implementation.
Expand Down

0 comments on commit 8b36d66

Please sign in to comment.