We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3905f11 commit fe5cf0dCopy full SHA for fe5cf0d
UPGRADE.md
@@ -0,0 +1,31 @@
1
+# Upgrade Guide
2
+
3
+## Upgrading from 0.3.5 to 0.4.0
4
5
+### To upgrade Uppy from 1.x to 2.0
6
7
+Update the following dependencies on your `package.json`:
8
9
+```json
10
+"dependencies": {
11
+ ...
12
+ "@uppy/aws-s3-multipart": "^2.0.2",
13
+ "@uppy/core": "^2.0.2",
14
+ "@uppy/drag-drop": "^2.0.1",
15
+ "@uppy/status-bar": "^2.0.1"
16
+}
17
+```
18
19
+Install the dependencies and compile assets:
20
21
+```bash
22
+npm install
23
+npm run dev
24
25
26
+Clear caches:
27
28
29
+php artisan optimize
30
+php artisan view:clear
31
0 commit comments