@ckeditor/ckeditor5-upload 38.0.0 → 38.1.0

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ckeditor/ckeditor5-upload",
3
- "version": "38.0.0",
3
+ "version": "38.1.0",
4
4
  "description": "Upload feature for CKEditor 5.",
5
5
  "keywords": [
6
6
  "ckeditor",
@@ -11,14 +11,9 @@
11
11
  ],
12
12
  "main": "src/index.js",
13
13
  "dependencies": {
14
- "@ckeditor/ckeditor5-core": "^38.0.0",
15
- "@ckeditor/ckeditor5-utils": "^38.0.0",
16
- "@ckeditor/ckeditor5-ui": "^38.0.0"
17
- },
18
- "devDependencies": {
19
- "typescript": "^4.8.4",
20
- "webpack": "^5.58.1",
21
- "webpack-cli": "^4.9.0"
14
+ "@ckeditor/ckeditor5-core": "38.1.0",
15
+ "@ckeditor/ckeditor5-utils": "38.1.0",
16
+ "@ckeditor/ckeditor5-ui": "38.1.0"
22
17
  },
23
18
  "engines": {
24
19
  "node": ">=16.0.0",
@@ -41,9 +36,5 @@
41
36
  "ckeditor5-metadata.json",
42
37
  "CHANGELOG.md"
43
38
  ],
44
- "scripts": {
45
- "build": "tsc -p ./tsconfig.json",
46
- "postversion": "npm run build"
47
- },
48
39
  "types": "src/index.d.ts"
49
40
  }
@@ -25,7 +25,7 @@ export default class Base64UploadAdapter extends Plugin {
25
25
  /**
26
26
  * @inheritDoc
27
27
  */
28
- static get pluginName(): 'Base64UploadAdapter';
28
+ static get pluginName(): "Base64UploadAdapter";
29
29
  /**
30
30
  * @inheritDoc
31
31
  */
@@ -40,7 +40,7 @@ export default class SimpleUploadAdapter extends Plugin {
40
40
  /**
41
41
  * @inheritDoc
42
42
  */
43
- static get pluginName(): 'SimpleUploadAdapter';
43
+ static get pluginName(): "SimpleUploadAdapter";
44
44
  /**
45
45
  * @inheritDoc
46
46
  */
@@ -71,7 +71,7 @@ export default class FileRepository extends Plugin {
71
71
  /**
72
72
  * @inheritDoc
73
73
  */
74
- static get pluginName(): 'FileRepository';
74
+ static get pluginName(): "FileRepository";
75
75
  /**
76
76
  * @inheritDoc
77
77
  */