From 3e04bc654feeedd4e88bf00c1c6aa2bdc1e33edb Mon Sep 17 00:00:00 2001 From: Topher Fangio Date: Wed, 31 Jan 2024 22:32:19 -0600 Subject: [PATCH] Fix old paths in README The README still pointed to the original path for installation / usage instead of the fork. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 8c1c2ba..7d4be3e 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Then use `ActiveStorageUpload` as an Uppy plugin in your Javascript pack. ```js import Uppy from '@uppy/core' -import ActiveStorageUpload from '@excid3/uppy-activestorage-upload' +import ActiveStorageUpload from 'anark/uppy-activestorage-upload' let uppy = new Uppy(options) uppy.use(ActiveStorageUpload, { @@ -26,9 +26,9 @@ uppy.use(ActiveStorageUpload, { ## Installation ```bash -yarn add @excid3/uppy-activestorage-upload +yarn add anark/uppy-activestorage-upload # or -npm install @excid3/uppy-activestorage-upload --save +npm install anark/uppy-activestorage-upload --save ``` We recommend installing from yarn and then using a module bundler such as [esbuild](https://esbuild.github.io/).