-
Notifications
You must be signed in to change notification settings - Fork 339
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade CKEditor to latest version 41.2 #7326
Upgrade CKEditor to latest version 41.2 #7326
Conversation
@@ -61,6 +61,8 @@ as well as [pnpm 8](https://pnpm.io/) or [bun 1](https://bun.sh/) for custom | |||
admin builds. With the introduction of these new versions, it is necessary | |||
to drop the support for npm 6. | |||
|
|||
The upgrade of CKEditor to the latest version atleast [requires Node 18](https://github.com/ckeditor/ckeditor5-dev/blob/v39.6.3/package.json#L19). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Beside the NPM update we also require now atleast Node 18: https://github.com/ckeditor/ckeditor5-dev/blob/v39.6.3/package.json#L19
/cc @sulu/core-developer
@@ -112,7 +112,7 @@ | |||
], | |||
"clearMocks": true, | |||
"transformIgnorePatterns": [ | |||
"node_modules/(?!(@ckeditor|ckeditor5|array-move|lodash-es)/)" | |||
"node_modules/(?!(@ckeditor|ckeditor5|array-move|lodash-es|vanilla-colorful)/)" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
required by ckeditor as it requires modern import statements we need to babelify it for jest runtime
@@ -180,7 +180,7 @@ | |||
} | |||
], | |||
"react/jsx-pascal-case": "error", | |||
"react/jsx-sort-default-props": [ | |||
"react/sort-default-props": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What's in this PR?
Upgrade CKEditor to latest version.
Why?
To allow use all new features of CKEditor latest version.