@strapi/provider-upload-local 4.0.0-beta.18 → 4.0.0-beta.21
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/README.md +1 -1
- package/package.json +20 -20
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@ This provider has only one parameter: `sizeLimit`.
|
|
|
17
17
|
}
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
The `sizeLimit` parameter must be a number. Be aware that the unit is in bytes, and the default is 1000000. When setting this value high, you should make sure to also configure the body parser middleware `maxFileSize` so the file can be sent and processed. Read more [here](https://strapi.io/
|
|
20
|
+
The `sizeLimit` parameter must be a number. Be aware that the unit is in bytes, and the default is 1000000. When setting this value high, you should make sure to also configure the body parser middleware `maxFileSize` so the file can be sent and processed. Read more [here](https://docs.strapi.io/developer-docs/latest/plugins/upload.html#configuration)
|
|
21
21
|
|
|
22
22
|
## Resources
|
|
23
23
|
|
package/package.json
CHANGED
|
@@ -1,48 +1,48 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@strapi/provider-upload-local",
|
|
3
|
-
"version": "4.0.0-beta.
|
|
3
|
+
"version": "4.0.0-beta.21",
|
|
4
4
|
"description": "Local provider for strapi upload",
|
|
5
|
-
"homepage": "https://strapi.io",
|
|
6
5
|
"keywords": [
|
|
7
6
|
"upload",
|
|
8
7
|
"strapi"
|
|
9
8
|
],
|
|
10
|
-
"
|
|
11
|
-
|
|
9
|
+
"homepage": "https://strapi.io",
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/strapi/strapi/issues"
|
|
12
12
|
},
|
|
13
|
-
"
|
|
14
|
-
|
|
15
|
-
"
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git://github.com/strapi/strapi.git"
|
|
16
16
|
},
|
|
17
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
17
18
|
"author": {
|
|
19
|
+
"name": "Strapi Solutions SAS",
|
|
18
20
|
"email": "hi@strapi.io",
|
|
19
|
-
"name": "Strapi team",
|
|
20
21
|
"url": "https://strapi.io"
|
|
21
22
|
},
|
|
22
23
|
"maintainers": [
|
|
23
24
|
{
|
|
24
|
-
"name": "Strapi
|
|
25
|
+
"name": "Strapi Solutions SAS",
|
|
25
26
|
"email": "hi@strapi.io",
|
|
26
27
|
"url": "https://strapi.io"
|
|
27
28
|
}
|
|
28
29
|
],
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
"
|
|
30
|
+
"main": "./lib",
|
|
31
|
+
"directories": {
|
|
32
|
+
"lib": "./lib"
|
|
32
33
|
},
|
|
33
|
-
"
|
|
34
|
-
"
|
|
34
|
+
"scripts": {
|
|
35
|
+
"test": "echo \"no tests yet\""
|
|
35
36
|
},
|
|
36
|
-
"
|
|
37
|
-
"
|
|
37
|
+
"dependencies": {
|
|
38
|
+
"@strapi/utils": "4.0.0-beta.21"
|
|
38
39
|
},
|
|
39
40
|
"engines": {
|
|
40
41
|
"node": ">=12.x.x <=16.x.x",
|
|
41
42
|
"npm": ">=6.0.0"
|
|
42
43
|
},
|
|
43
|
-
"
|
|
44
|
-
|
|
45
|
-
"test": "echo \"no tests yet\""
|
|
44
|
+
"strapi": {
|
|
45
|
+
"isProvider": true
|
|
46
46
|
},
|
|
47
|
-
"gitHead": "
|
|
47
|
+
"gitHead": "dd25a85f8ea5d7b2445e0ba8fe4448087be20839"
|
|
48
48
|
}
|