summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Michael Rienstra <mrienstra@gmail.com> 2022-09-22 04:16:02 -0700
committerGravatar GitHub <noreply@github.com> 2022-09-22 08:16:02 -0300
commitb0efb83252a3d68a95b94176ba9bd8cb489ff72d (patch)
treee4d29a2eff5ed651710daa8d098039b09627f534
parent2c2bbc515811628551cdf7e48ee16f2ef37dcc70 (diff)
downloadastro-b0efb83252a3d68a95b94176ba9bd8cb489ff72d.tar.gz
astro-b0efb83252a3d68a95b94176ba9bd8cb489ff72d.tar.zst
astro-b0efb83252a3d68a95b94176ba9bd8cb489ff72d.zip
docs: integrations: yarn & pnpm (#4836)
-rw-r--r--packages/integrations/cloudflare/README.md7
-rw-r--r--packages/integrations/deno/README.md7
-rw-r--r--packages/integrations/netlify/README.md7
-rw-r--r--packages/integrations/node/README.md7
-rw-r--r--packages/integrations/vercel/README.md7
5 files changed, 30 insertions, 5 deletions
diff --git a/packages/integrations/cloudflare/README.md b/packages/integrations/cloudflare/README.md
index 8351a8c74..0f5609d5c 100644
--- a/packages/integrations/cloudflare/README.md
+++ b/packages/integrations/cloudflare/README.md
@@ -6,8 +6,13 @@ An SSR adapter for use with Cloudflare Pages Functions targets. Write your code
Add the Cloudflare adapter to enable SSR in your Astro project with the following `astro add` command. This will install the adapter and make the appropriate changes to your `astro.config.mjs` file in one step.
-```bash
+```sh
+# Using NPM
npx astro add cloudflare
+# Using Yarn
+yarn astro add cloudflare
+# Using PNPM
+pnpm astro add cloudflare
```
If you prefer to install the adapter manually instead, complete the following two steps:
diff --git a/packages/integrations/deno/README.md b/packages/integrations/deno/README.md
index e949643a0..9fe9c64a3 100644
--- a/packages/integrations/deno/README.md
+++ b/packages/integrations/deno/README.md
@@ -25,8 +25,13 @@ If you wish to [use server-side rendering (SSR)](https://docs.astro.build/en/gui
Add the Deno adapter to enable SSR in your Astro project with the following `astro add` command. This will install the adapter and make the appropriate changes to your `astro.config.mjs` file in one step.
-```bash
+```sh
+# Using NPM
npx astro add deno
+# Using Yarn
+yarn astro add deno
+# Using PNPM
+pnpm astro add deno
```
If you prefer to install the adapter manually instead, complete the following two steps:
diff --git a/packages/integrations/netlify/README.md b/packages/integrations/netlify/README.md
index 24cc5c60c..4d7707a5c 100644
--- a/packages/integrations/netlify/README.md
+++ b/packages/integrations/netlify/README.md
@@ -27,8 +27,13 @@ If you wish to [use server-side rendering (SSR)](https://docs.astro.build/en/gui
Add the Netlify adapter to enable SSR in your Astro project with the following `astro add` command. This will install the adapter and make the appropriate changes to your `astro.config.mjs` file in one step.
-```bash
+```sh
+# Using NPM
npx astro add netlify
+# Using Yarn
+yarn astro add netlify
+# Using PNPM
+pnpm astro add netlify
```
If you prefer to install the adapter manually instead, complete the following two steps:
diff --git a/packages/integrations/node/README.md b/packages/integrations/node/README.md
index 3ab5f0b17..2a9ec9bbd 100644
--- a/packages/integrations/node/README.md
+++ b/packages/integrations/node/README.md
@@ -23,8 +23,13 @@ If you wish to [use server-side rendering (SSR)](https://docs.astro.build/en/gui
Add the Node adapter to enable SSR in your Astro project with the following `astro add` command. This will install the adapter and make the appropriate changes to your `astro.config.mjs` file in one step.
-```bash
+```sh
+# Using NPM
npx astro add node
+# Using Yarn
+yarn astro add node
+# Using PNPM
+pnpm astro add node
```
If you prefer to install the adapter manually instead, complete the following two steps:
diff --git a/packages/integrations/vercel/README.md b/packages/integrations/vercel/README.md
index e9f696e9b..ac18c66ee 100644
--- a/packages/integrations/vercel/README.md
+++ b/packages/integrations/vercel/README.md
@@ -24,8 +24,13 @@ If you wish to [use server-side rendering (SSR)](https://docs.astro.build/en/gui
Add the Vercel adapter to enable SSR in your Astro project with the following `astro add` command. This will install the adapter and make the appropriate changes to your `astro.config.mjs` file in one step.
-```bash
+```sh
+# Using NPM
npx astro add vercel
+# Using Yarn
+yarn astro add vercel
+# Using PNPM
+pnpm astro add vercel
```
If you prefer to install the adapter manually instead, complete the following two steps: