@ckeditor/ckeditor5-utils 35.3.1 → 35.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +5 -5
- package/src/version.js +1 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ckeditor/ckeditor5-utils",
|
|
3
|
-
"version": "35.3.
|
|
3
|
+
"version": "35.3.2",
|
|
4
4
|
"description": "Miscellaneous utilities used by CKEditor 5.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ckeditor",
|
|
@@ -14,10 +14,10 @@
|
|
|
14
14
|
"lodash-es": "^4.17.15"
|
|
15
15
|
},
|
|
16
16
|
"devDependencies": {
|
|
17
|
-
"@ckeditor/ckeditor5-build-classic": "^35.3.
|
|
18
|
-
"@ckeditor/ckeditor5-editor-classic": "^35.3.
|
|
19
|
-
"@ckeditor/ckeditor5-core": "^35.3.
|
|
20
|
-
"@ckeditor/ckeditor5-engine": "^35.3.
|
|
17
|
+
"@ckeditor/ckeditor5-build-classic": "^35.3.2",
|
|
18
|
+
"@ckeditor/ckeditor5-editor-classic": "^35.3.2",
|
|
19
|
+
"@ckeditor/ckeditor5-core": "^35.3.2",
|
|
20
|
+
"@ckeditor/ckeditor5-engine": "^35.3.2",
|
|
21
21
|
"@types/lodash-es": "^4.17.6",
|
|
22
22
|
"typescript": "^4.8.4"
|
|
23
23
|
},
|
package/src/version.js
CHANGED
|
@@ -7,7 +7,7 @@
|
|
|
7
7
|
*/
|
|
8
8
|
/* globals window, global */
|
|
9
9
|
import CKEditorError from './ckeditorerror';
|
|
10
|
-
const version = '35.3.
|
|
10
|
+
const version = '35.3.2';
|
|
11
11
|
export default version;
|
|
12
12
|
/* istanbul ignore next */
|
|
13
13
|
const windowOrGlobal = typeof window === 'object' ? window : global;
|