From 697ad04a34f7dafb57d42eb4ce45f63ecdb5415e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9e=20Kooi?= Date: Mon, 30 Mar 2020 16:07:24 +0200 Subject: [PATCH] examples: document `npm run build`, closes #2024 --- examples/aws-companion/readme.md | 1 + examples/aws-presigned-url/readme.md | 1 + examples/custom-provider/readme.md | 1 + examples/digitalocean-spaces/readme.md | 1 + examples/multiple-instances/readme.md | 1 + examples/node-xhr/readme.md | 1 + examples/php-xhr/readme.md | 1 + examples/python-xhr/readme.md | 1 + examples/react-native-expo/readme.md | 1 + examples/redux/readme.md | 1 + examples/transloadit/readme.md | 1 + examples/xhr-bundle/readme.md | 1 + 12 files changed, 12 insertions(+) diff --git a/examples/aws-companion/readme.md b/examples/aws-companion/readme.md index cd649bd39..2774e6755 100644 --- a/examples/aws-companion/readme.md +++ b/examples/aws-companion/readme.md @@ -8,6 +8,7 @@ Files are uploaded to a randomly named directory inside the `whatever/` director To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/aws-presigned-url/readme.md b/examples/aws-presigned-url/readme.md index 0f94c267a..9f1bb741a 100644 --- a/examples/aws-presigned-url/readme.md +++ b/examples/aws-presigned-url/readme.md @@ -7,6 +7,7 @@ This example uses a server-side PHP endpoint to sign uploads to S3. To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the npm dependencies for this example. diff --git a/examples/custom-provider/readme.md b/examples/custom-provider/readme.md index 1a02c8923..2f519cb0f 100644 --- a/examples/custom-provider/readme.md +++ b/examples/custom-provider/readme.md @@ -8,6 +8,7 @@ This serves as an illustration on how integrating custom providers would work To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/digitalocean-spaces/readme.md b/examples/digitalocean-spaces/readme.md index 7247bf10d..45ef4e6fd 100644 --- a/examples/digitalocean-spaces/readme.md +++ b/examples/digitalocean-spaces/readme.md @@ -7,6 +7,7 @@ This example uses Uppy to upload files to a DigitolOcean Space. DigitalOcean Spa To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/multiple-instances/readme.md b/examples/multiple-instances/readme.md index 71769acb3..068b7fc40 100644 --- a/examples/multiple-instances/readme.md +++ b/examples/multiple-instances/readme.md @@ -8,6 +8,7 @@ It has two instances on the same page, side-by-side, but with different `id`s so To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/node-xhr/readme.md b/examples/node-xhr/readme.md index a61858835..11af7da98 100644 --- a/examples/node-xhr/readme.md +++ b/examples/node-xhr/readme.md @@ -7,6 +7,7 @@ This example uses Node server and `@uppy/xhr-upload` to upload files to the loca To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/php-xhr/readme.md b/examples/php-xhr/readme.md index 313e49d53..8b5db988d 100644 --- a/examples/php-xhr/readme.md +++ b/examples/php-xhr/readme.md @@ -7,6 +7,7 @@ This example uses PHP server and `@uppy/xhr-upload` to upload files to the local To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/python-xhr/readme.md b/examples/python-xhr/readme.md index 3e48d6b34..b4962ac58 100644 --- a/examples/python-xhr/readme.md +++ b/examples/python-xhr/readme.md @@ -7,6 +7,7 @@ This example uses a Python Flask server and `@uppy/xhr-upload` to upload files t To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the npm dependencies for this example. diff --git a/examples/react-native-expo/readme.md b/examples/react-native-expo/readme.md index aa6b55da0..07a8e83a3 100644 --- a/examples/react-native-expo/readme.md +++ b/examples/react-native-expo/readme.md @@ -9,6 +9,7 @@ To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/redux/readme.md b/examples/redux/readme.md index 5090239fa..b47c7ca72 100644 --- a/examples/redux/readme.md +++ b/examples/redux/readme.md @@ -11,6 +11,7 @@ This example supports the [Redux Devtools extension](https://github.com/zalmoxis To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/transloadit/readme.md b/examples/transloadit/readme.md index 421a58fe9..99cb7ea39 100644 --- a/examples/transloadit/readme.md +++ b/examples/transloadit/readme.md @@ -7,6 +7,7 @@ This example shows all the different Robodog APIs in action on a single page. To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example. diff --git a/examples/xhr-bundle/readme.md b/examples/xhr-bundle/readme.md index 685250dce..6e665b37d 100644 --- a/examples/xhr-bundle/readme.md +++ b/examples/xhr-bundle/readme.md @@ -9,6 +9,7 @@ This example uses Uppy with XHRUpload plugin in `bundle` mode. Bundle mode uploa To run this example, make sure you've correctly installed the **repository root**: ```bash npm install +npm run build ``` That will also install the dependencies for this example.