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

Commit

Permalink
Replaced lib/lodash imports with lodash-es.
Browse files Browse the repository at this point in the history
  • Loading branch information
ma2ciek committed Aug 7, 2018
1 parent 5cf03e0 commit da8a5f4
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 @@ -22,7 +22,8 @@
],
"dependencies": {
"@ckeditor/ckeditor5-engine": "^10.2.0",
"@ckeditor/ckeditor5-utils": "^10.2.0"
"@ckeditor/ckeditor5-utils": "^10.2.0",
"lodash-es": "^4.17.10"
},
"devDependencies": {
"@ckeditor/ckeditor5-autoformat": "^10.0.2",
Expand Down
2 changes: 1 addition & 1 deletion src/editor/utils/attachtoform.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* For licensing, see LICENSE.md.
*/

import isFunction from '@ckeditor/ckeditor5-utils/src/lib/lodash/isFunction';
import { isFunction } from 'lodash-es';
import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror';

/**
Expand Down

0 comments on commit da8a5f4

Please sign in to comment.