-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #6 from TappNetwork/upgrade_to_uppy_v2
Upgrade to Uppy v2 to pre-sign URLs in batches
- Loading branch information
Showing
5 changed files
with
80 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Upgrade Guide | ||
|
||
## Upgrading from 0.3.5 to 0.4.0 | ||
|
||
### To upgrade Uppy from 1.x to 2.0 | ||
|
||
Update the following dependencies on your `package.json`: | ||
|
||
```json | ||
"dependencies": { | ||
... | ||
"@uppy/aws-s3-multipart": "^2.0.2", | ||
"@uppy/core": "^2.0.2", | ||
"@uppy/drag-drop": "^2.0.1", | ||
"@uppy/status-bar": "^2.0.1" | ||
} | ||
``` | ||
|
||
Install the dependencies and compile assets: | ||
|
||
```bash | ||
npm install | ||
npm run dev | ||
``` | ||
|
||
Clear caches: | ||
|
||
```bash | ||
php artisan optimize | ||
php artisan view:clear | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters